<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <br>
    <br>
    On 08/10/2011 1:45 PM, Steve Slevinski wrote:
    <blockquote cite="mid:4E90A849.8080904@signpuddle.net" type="cite">
      <meta content="text/html; charset=ISO-8859-1"
        http-equiv="Content-Type">
      Hi Jonathan,<br>
      <br>
      Thanks for the comments.  FYI, I will not be changing the .spml
      files.  These files will be available as a custom export.  It will
      take several seconds to create.<br>
    </blockquote>
    <br>
    OK that's good to know.<br>
    <blockquote cite="mid:4E90A849.8080904@signpuddle.net" type="cite">
      On 10/7/11 12:03 PM, Jonathan wrote:
      <blockquote cite="mid:4E8F30DE.4090309@yahoo.ca" type="cite">
        <meta content="text/html; charset=ISO-8859-1"
          http-equiv="Content-Type">
        Hi Steve,<br>
            I don't remember why you want to use a string in the XML
        file for the signs.  </blockquote>
      Speed, portability, and simplicity.  I just completed my proof of
      concept for fuzzy searching.  From a 3 MB file with over 10
      thousand signs, I can get accurate search results in less than 1
      second.  I am using Regular Expressions to process ASCII
      characters.  Next week, I'll write about fuzzy searching, with the
      appropriate links for the proof of concept.<br>
      <br>
      <blockquote cite="mid:4E8F30DE.4090309@yahoo.ca" type="cite">Wouldn't

        building everything out of XML be easier to work with?  </blockquote>
      Yes and no.  Yes, because XML offers organization and
      portability.  No, because XML has a lot of overhead and gotchas. 
      The libraries take time to process text.  Not all libraries work
      the same or support the same feature set.  I think XML is too
      robust for simple text processing.<br>
      <br>
      <blockquote cite="mid:4E8F30DE.4090309@yahoo.ca" type="cite">Many
        libraries can parse XML back to objects or save to a database to
        do calculations and searches on.  My feeling is that XML and
        what's in it should be primarily for transporting data.  </blockquote>
      Can you show me an example of the type of XML you'd want to use
      for an individual sign?<br>
    </blockquote>
    <br>
    I was thinking of something a little like <br>
    <br>
    <entry id="3" cdt="1172438877" mdt="1218173289" usr="admin"><br>
        <sign align="left" maxx="23" maxy="37"><br>
            <symbol x="1" y="7">���</symbol><br>
            <symbol x="-22" y="7">���</symbol><br>
            <symbol x="-2" y="-38">���</symbol><br>
             <sequence><br>
                <seqsymbol pos="1">���</seqsymbol><br>
                <seqsymbol pos="2">���</seqsymbol><br>
                <seqsymbol pos="3">���</seqsymbol><br>
            </sequence><br>
        </sign><br>
        <term>DELAY</term><br>
        <text>Delay, postpone, move forward in time</text><br>
        <src>So and So</src><br>
    </entry><br>
    <br>
    This way the only thing that has to have special code to parse is
    the 3 character Unicode string.  I would have to look into it a
    little deeper for agreeing on a final XML.  I think it would be
    easier for programmers to use being that there is less parsing to do
    and can use regular XML parsing tools to get at the information.<br>
    <blockquote cite="mid:4E90A849.8080904@signpuddle.net" type="cite">
      <br>
      <blockquote cite="mid:4E8F30DE.4090309@yahoo.ca" type="cite">In my
        personal opinion, information that is one piece in itself
        shouldn't be concatenated with other data and then have to do
        special parsing to get a specific part of it.</blockquote>
      I can understand the logic and agree in part.  For me, sign text
      should be like regular text.  This means spaces separate words. 
      For me, each word is a piece unto itself and should be
      concatenated without spaces or punctuation because it is a unit.<br>
       <br>
      <blockquote cite="mid:4E8F30DE.4090309@yahoo.ca" type="cite"> So I
        don't really like the 6 digits you are proposing below.  </blockquote>
      You can continue to use the premilinary Unicode strings if you
      prefer.  I've found that the ASCII version can be processed 4
      times faster or more.  The ASCII regular expressions as always
      consistent, but the Unicode uses 3 different strings based on the
      encoding form of UTF-8, UTF-16, and UTF-24.<br>
      <br>
      <blockquote cite="mid:4E8F30DE.4090309@yahoo.ca" type="cite">But
        if we are going to have to parse it then at least make it easy
        to distinguish the parts.  It think that if you are going to
        keep the string notation then, maybe the information should be
        enclosed within an identifying symbols. Something like<br>
        <br>
        for the coordinates (41,60), (-18,-18) and  (11,-23)<br>
      </blockquote>
      Commas and parenthesis add punctuation to the string causing many
      unusual side effects and increase the possibility of a broken
      string.<br>
      <br>
      I do agree with your point.  The current coordinate notation is
      sloppy.  I've employed a simple fix.  I add 500 to each value. 
      This means coordinates will always be 7 characters long: 3 for the
      X value, 1 for the separating value, and 3 for the Y value.  <br>
      <br>
      The coordinate (41,60) becomes 541x560.  The coordinate (-18,-18)
      becomes 482x482. I was not planning to update the preliminary
      Unicode version with the new coordinate strings unless someone
      requested it.  So for the .spml files, I'm not planning any
      changes.<br>
    </blockquote>
    Yes I like it much better with the x in the middle.<br>
    <blockquote cite="mid:4E90A849.8080904@signpuddle.net" type="cite">
      <br>
      <blockquote cite="mid:4E8F30DE.4090309@yahoo.ca" type="cite"> What
        about C for coodinate, then the X or Y value + 500 to get the
        the Unicode point value.  One Unicode character for X and one
        for Y?<br>
      </blockquote>
      Additional Unicode characters are not being considered right now
      because there is no consensus on the higher level protocols of
      SignWriting for Unicode.  Instead of the coordinate style of
      SignPuddle, they may choose a conceptual design based on deeper
      structural.<br>
      <br>
      But if the 2nd Unicode proposal did choose to go with coordinates,
      1 or 2 rows of negative values and 1 or 2 rows of positive values
      would be best.  <br>
      <br>
      As per your above preference, there is no reason to concatenate
      the X and Y values into a single character, although a single
      character for each point on a 2-dimensional grid of 256 by 256
      does have a certain novelty.<br>
    </blockquote>
    I didn't mean both the X and the Y saved within one character,
    rather, one character each.<br>
    <blockquote cite="mid:4E90A849.8080904@signpuddle.net" type="cite">
      <br>
      <blockquote cite="mid:4E8F30DE.4090309@yahoo.ca" type="cite"> If
        you do go with what is below, I can make it work for my
        program.  I don't have any issues with the new limited size of
        the axis to -500 to +499<br>
      </blockquote>
      I'm glad you don't mind the size limitation.  This is the biggest
      change and it is mainly a validation issue.<br>
      <br>
      <blockquote cite="mid:4E8F30DE.4090309@yahoo.ca" type="cite"> I am
        interested in your thoughts or comments on the above<br>
      </blockquote>
      Thanks for the comments.<br>
    </blockquote>
    Thanks for yours too!!<br>
    <blockquote cite="mid:4E90A849.8080904@signpuddle.net" type="cite">
      -Steve<br>
      <br>
      <br>
      <br>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">
No virus found in this incoming message.
Checked by AVG - <a class="moz-txt-link-abbreviated" href="http://www.avg.com">www.avg.com</a> 
Version: 9.0.914 / Virus Database: 271.1.1/3943 - Release Date: 10/07/11 00:34:00

</pre>
    </blockquote>
    <br>
    <div class="moz-signature">-- <br>
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      <meta name="ProgId" content="Word.Document">
      <meta name="Generator" content="Microsoft Word 12">
      <meta name="Originator" content="Microsoft Word 12">
      <link rel="File-List" href="JonathanPersonal_files/filelist.xml">
      <!--[if gte mso 9]><xml>
 <o:DocumentProperties>
  <o:Author>Jonathan</o:Author>
  <o:LastAuthor>Jonathan</o:LastAuthor>
  <o:Revision>2</o:Revision>
  <o:Created>2011-02-02T19:18:00Z</o:Created>
  <o:LastSaved>2011-02-02T19:19:00Z</o:LastSaved>
  <o:Pages>1</o:Pages>
  <o:Words>80</o:Words>
  <o:Characters>844</o:Characters>
  <o:Lines>7</o:Lines>
  <o:Paragraphs>1</o:Paragraphs>
  <o:CharactersWithSpaces>923</o:CharactersWithSpaces>
  <o:Version>12.00</o:Version>
 </o:DocumentProperties>
</xml><![endif]-->
      <link rel="themeData" href="JonathanPersonal_files/themedata.thmx">
      <link rel="colorSchemeMapping"
        href="JonathanPersonal_files/colorschememapping.xml">
      <!--[if gte mso 9]><xml>
 <w:WordDocument>
  <w:Zoom>98</w:Zoom>
  <w:TrackMoves/>
  <w:TrackFormatting/>
  <w:ValidateAgainstSchemas/>
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
  <w:DoNotPromoteQF/>
  <w:LidThemeOther>EN-US</w:LidThemeOther>
  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
  <w:Compatibility>
   <w:BreakWrappedTables/>
   <w:SnapToGridInCell/>
   <w:WrapTextWithPunct/>
   <w:UseAsianBreakRules/>
   <w:DontGrowAutofit/>
   <w:SplitPgBreakAndParaMark/>
   <w:DontVertAlignCellWithSp/>
   <w:DontBreakConstrainedForcedTables/>
   <w:DontVertAlignInTxbx/>
   <w:Word11KerningPairs/>
   <w:CachedColBalance/>
  </w:Compatibility>
  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
  <m:mathPr>
   <m:mathFont m:val="Cambria Math"/>
   <m:brkBin m:val="before"/>
   <m:brkBinSub m:val="--"/>
   <m:smallFrac m:val="off"/>
   <m:dispDef/>
   <m:lMargin m:val="0"/>
   <m:rMargin m:val="0"/>
   <m:defJc m:val="centerGroup"/>
   <m:wrapIndent m:val="1440"/>
   <m:intLim m:val="subSup"/>
   <m:naryLim m:val="undOvr"/>
  </m:mathPr></w:WordDocument>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"
  LatentStyleCount="267">
  <w:LsdException Locked="false" Priority="0" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/>
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/>
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 1"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 2"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 3"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 4"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 5"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 6"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 7"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 8"/>
  <w:LsdException Locked="false" Priority="39" Name="toc 9"/>
  <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/>
  <w:LsdException Locked="false" Priority="10" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Title"/>
  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
  <w:LsdException Locked="false" Priority="11" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/>
  <w:LsdException Locked="false" Priority="22" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/>
  <w:LsdException Locked="false" Priority="20" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/>
  <w:LsdException Locked="false" Priority="59" SemiHidden="false"
   UnhideWhenUsed="false" Name="Table Grid"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/>
  <w:LsdException Locked="false" Priority="1" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 1"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/>
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/>
  <w:LsdException Locked="false" Priority="34" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/>
  <w:LsdException Locked="false" Priority="29" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/>
  <w:LsdException Locked="false" Priority="30" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 1"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 2"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 2"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 3"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 3"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 4"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 4"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 5"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 5"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/>
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light List Accent 6"/>
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/>
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/>
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/>
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"
   UnhideWhenUsed="false" Name="Dark List Accent 6"/>
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/>
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/>
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/>
  <w:LsdException Locked="false" Priority="19" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/>
  <w:LsdException Locked="false" Priority="21" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/>
  <w:LsdException Locked="false" Priority="31" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/>
  <w:LsdException Locked="false" Priority="32" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/>
  <w:LsdException Locked="false" Priority="33" SemiHidden="false"
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/>
  <w:LsdException Locked="false" Priority="37" Name="Bibliography"/>
  <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/>
 </w:LatentStyles>
</xml><![endif]-->
      <style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;
        mso-font-charset:1;
        mso-generic-font-family:roman;
        mso-font-format:other;
        mso-font-pitch:variable;
        mso-font-signature:0 0 0 0 0 0;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;
        mso-font-charset:0;
        mso-generic-font-family:roman;
        mso-font-format:other;
        mso-font-pitch:auto;
        mso-font-signature:0 0 0 0 0 0;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {mso-style-unhide:no;
        mso-style-qformat:yes;
        mso-style-parent:"";
        margin:0in;
        margin-bottom:.0001pt;
        mso-pagination:widow-orphan;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;}
p
        {mso-style-noshow:yes;
        mso-style-priority:99;
        mso-margin-top-alt:auto;
        margin-right:0in;
        mso-margin-bottom-alt:auto;
        margin-left:0in;
        mso-pagination:widow-orphan;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;}
pre
        {mso-style-noshow:yes;
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0in;
        margin-bottom:.0001pt;
        mso-pagination:widow-orphan;
        tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
        font-size:10.0pt;
        font-family:"Courier New";
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-noshow:yes;
        mso-style-priority:99;
        mso-style-unhide:no;
        mso-style-locked:yes;
        mso-style-link:"HTML Preformatted";
        font-family:"Consolas","serif";
        mso-ascii-font-family:Consolas;
        mso-fareast-font-family:"Times New Roman";
        mso-fareast-theme-font:minor-fareast;
        mso-hansi-font-family:Consolas;}
.MsoChpDefault
        {mso-style-type:export-only;
        mso-default-props:yes;
        font-size:10.0pt;
        mso-ansi-font-size:10.0pt;
        mso-bidi-font-size:10.0pt;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;
        mso-header-margin:35.4pt;
        mso-footer-margin:35.4pt;
        mso-paper-source:0;}
div.WordSection1
        {page:WordSection1;}
-->
</style><!--[if gte mso 10]>
<style>
 /* Style Definitions */
 table.MsoNormalTable
        {mso-style-name:"Table Normal";
        mso-tstyle-rowband-size:0;
        mso-tstyle-colband-size:0;
        mso-style-noshow:yes;
        mso-style-priority:99;
        mso-style-qformat:yes;
        mso-style-parent:"";
        mso-padding-alt:0in 5.4pt 0in 5.4pt;
        mso-para-margin:0in;
        mso-para-margin-bottom:.0001pt;
        mso-pagination:widow-orphan;
        font-size:10.0pt;
        font-family:"Times New Roman","serif";}
</style>
<![endif]--><!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026"/>
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1"/>
 </o:shapelayout></xml><![endif]-->
      <div class="WordSection1">
        <pre><b><span style="font-size:3.0pt;color:black"><o:p> </o:p></span></b></pre>
        <pre><b><span style="font-size:3.0pt;color:black"><span style="mso-spacerun:yes">                            </span>_<span style="mso-spacerun:yes">                       </span>____<span style="mso-spacerun:yes">                                     </span><o:p></o:p></span></b></pre>
        <pre><b><span style="font-size:3.0pt;color:black"><span style="mso-spacerun:yes"> </span>/\<span style="mso-spacerun:yes">                        </span>| |<span style="mso-spacerun:yes">                     </span>(|<span style="mso-spacerun:yes">   </span>\<span style="mso-spacerun:yes">                                    </span><o:p></o:p></span></b></pre>
        <pre><b><span style="font-size:3.0pt;color:black">|<span style="mso-spacerun:yes">  </span>|<span style="mso-spacerun:yes">  </span>__<span style="mso-spacerun:yes">   </span>_<span style="mso-spacerun:yes">  </span>_<span style="mso-spacerun:yes">    </span>__, _|_ | |<span style="mso-spacerun:yes">     </span>__,<span style="mso-spacerun:yes">   </span>_<span style="mso-spacerun:yes">  </span>_<span style="mso-spacerun:yes">       </span>|<span style="mso-spacerun:yes">    </span>|<span style="mso-spacerun:yes">        </span>_<span style="mso-spacerun:yes">  </span>_<span style="mso-spacerun:yes">    </span>__<span style="mso-spacerun:yes">   </span>__,<span style="mso-spacerun:yes">   </span>_<span style="mso-spacerun:yes">  </span>_<span style="mso-spacerun:yes">&nb
 
 
sp;  </span><o:p></o:p></span></b></pre>
        <pre><b><span style="font-size:3.0pt;color:black">|<span style="mso-spacerun:yes">  </span>| /<span style="mso-spacerun:yes">  </span>\_/ |/ |<span style="mso-spacerun:yes">  </span>/<span style="mso-spacerun:yes">  </span>|<span style="mso-spacerun:yes">  </span>|<span style="mso-spacerun:yes">  </span>|/ \<span style="mso-spacerun:yes">   </span>/<span style="mso-spacerun:yes">  </span>|<span style="mso-spacerun:yes">  </span>/ |/ |<span style="mso-spacerun:yes">     </span>_|<span style="mso-spacerun:yes">    </span>||<span style="mso-spacerun:yes">   </span>|<span style="mso-spacerun:yes">  </span>/ |/ |<span style="mso-spacerun:yes">  </span>/<span style="mso-spacerun:yes">    </span>/<span style="mso-spacerun:yes">  </span>|<span style="mso-spacerun:yes">  </span>/ |/ |<span style="mso-spacerun:yes">  </span><o:p></o:p></span></
 
 
b></pre>
        <pre><b><span style="font-size:3.0pt;color:black"><span style="mso-spacerun:yes"> </span>\_|/\__/<span style="mso-spacerun:yes">   </span>|<span style="mso-spacerun:yes">  </span>|_/\_/|_/|_/|<span style="mso-spacerun:yes">   </span>|_/\_/|_/<span style="mso-spacerun:yes">  </span>|<span style="mso-spacerun:yes">  </span>|_/<span style="mso-spacerun:yes">  </span>(/\___/<span style="mso-spacerun:yes">  </span>\_/|_/<span style="mso-spacerun:yes">  </span>|<span style="mso-spacerun:yes">  </span>|_/\___/\_/|_/<span style="mso-spacerun:yes">  </span>|<span style="mso-spacerun:yes">  </span>|_/ <o:p></o:p></span></b></pre>
        <pre><b><span style="font-size:3.0pt;color:black"><span style="mso-spacerun:yes">  </span>/|<span style="mso-spacerun:yes">                                       </span><span style="mso-spacerun:yes">                                                  </span><o:p></o:p></span></b></pre>
        <pre><b><span style="font-size:3.0pt;color:black"><span style="mso-spacerun:yes">  </span>\|<span style="mso-spacerun:yes">                                                                                        </span><o:p></o:p></span></b></pre>
        <p>email: <a href="mailto:duncanjonathan@yahoo.ca">duncanjonathan@yahoo.ca</a><br>
                   <a href="mailto:joyoduncan@gmail.com">joyoduncan@gmail.com</a><br>
          Cel: 9983-1204<br>
          Tel: 2213-5285<br>
          Skype: yojoduncan<br>
          <br>
          <a href="http://www.signwriterstudio.com/">SignWriter Studio</a></p>
      </div>
    </div>
  </body>
</html>