<?xml version="1.0" encoding="utf-8"?>
<TfrxReport Version="4.9" DotMatrixReport="False" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.Author="unionsystem" ReportOptions.CreateDate="41561,8945570602" ReportOptions.Description.Text="" ReportOptions.LastChange="41644,9632811574" ScriptLanguage="PascalScript" ScriptText.Text="                                     &#13;&#10;function Ext1(Valor: Real): String;&#13;&#10;begin&#13;&#10;  // Linha 1&#13;&#10;&#13;&#10;  Result := Copy(Extenso(Valor), 0, 80);&#13;&#10;&#13;&#10;  while Length(Result) &#60;&#62; 80 do Result := Result + '*';&#13;&#10;end;&#13;&#10;&#13;&#10;function Ext2(Valor: Real): String;&#13;&#10;begin&#13;&#10;  // Linha 2&#13;&#10;&#13;&#10;  Result := Copy(Extenso(Valor), 81, 80);&#13;&#10;&#13;&#10;  while Length(Result) &#60;&#62; 80 do Result := Result + '*';&#13;&#10;end;&#13;&#10;&#13;&#10;function Ext3(Valor: Real): String;&#13;&#10;begin&#13;&#10;  // Linha 3&#13;&#10;&#13;&#10;  Result := Copy(Extenso(Valor), 162, 80);&#13;&#10;&#13;&#10;  while Length(Result) &#60;&#62; 80 do Result := Result + '*';&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;function Extenso(Valor: Real): String;&#13;&#10;&#13;&#10;function Mini(Valor: String): String;&#13;&#10;var&#13;&#10;  Texto : array[0..36] of string = (['A','UM', 'DOIS', 'TRES', 'QUATRO', 'CINCO', 'SEIS', 'SETE',&#13;&#10;                                   'OITO', 'NOVE', 'DEZ', 'ONZE', 'DOZE', 'TREZE', 'CATORZE',&#13;&#10;                                   'QUINZE', 'DEZESSEIS', 'DEZESSETE', 'DEZOITO', 'DEZENOVE',&#13;&#10;                                   'VINTE', 'TRINTA', 'QUARENTA', 'CINQÜENTA', 'SESSENTA',&#13;&#10;                                   'SETENTA', 'OITENTA', 'NOVENTA', 'CENTO', 'DUZENTOS',&#13;&#10;                                   'TREZENTOS', 'QUATROCENTOS', 'QUINHENTOS', 'SEISCENTOS', 'SETECENTOS', 'OITOCENTOS', 'NOVECENTOS']);&#13;&#10;begin&#13;&#10;  // Mini extenso&#13;&#10;&#13;&#10;  Result := '';&#13;&#10;&#13;&#10;  if Valor &#60;&#62; '000' then&#13;&#10;  begin&#13;&#10;    if StrToInt(Valor) &#60;= 20 then&#13;&#10;    begin&#13;&#10;      Result := Result + Texto[StrToInt(Valor)];&#13;&#10;    end&#13;&#10;    else&#13;&#10;    if (StrToInt(Valor) &#62; 20) and (StrToInt(Valor) &#60; 100) then&#13;&#10;    begin&#13;&#10;      if Copy(Valor, 2, 1) = '2' then Result := Result + Texto[20];&#13;&#10;      if Copy(Valor, 2, 1) = '3' then Result := Result + Texto[21];&#13;&#10;      if Copy(Valor, 2, 1) = '4' then Result := Result + Texto[22];&#13;&#10;      if Copy(Valor, 2, 1) = '5' then Result := Result + Texto[23];&#13;&#10;      if Copy(Valor, 2, 1) = '6' then Result := Result + Texto[24];&#13;&#10;      if Copy(Valor, 2, 1) = '7' then Result := Result + Texto[25];&#13;&#10;      if Copy(Valor, 2, 1) = '8' then Result := Result + Texto[26];&#13;&#10;      if Copy(Valor, 2, 1) = '9' then Result := Result + Texto[27];&#13;&#10;&#13;&#10;      if Copy(Valor, 3, 1) &#60;&#62; '0' then Result := Result + ' E ' + Texto[StrToInt(Copy(Valor, 3, 1))];&#13;&#10;    end&#13;&#10;    else&#13;&#10;    if StrToInt(Valor) &#62; 99 then&#13;&#10;    begin&#13;&#10;      if Valor = '100' then Result := Result + 'CEM' else&#13;&#10;      begin&#13;&#10;        if Copy(Valor, 1, 1) = '1' then Result := Result + Texto[28];&#13;&#10;        if Copy(Valor, 1, 1) = '2' then Result := Result + Texto[29];&#13;&#10;        if Copy(Valor, 1, 1) = '3' then Result := Result + Texto[30];&#13;&#10;        if Copy(Valor, 1, 1) = '4' then Result := Result + Texto[31];&#13;&#10;        if Copy(Valor, 1, 1) = '5' then Result := Result + Texto[32];&#13;&#10;        if Copy(Valor, 1, 1) = '6' then Result := Result + Texto[33];&#13;&#10;        if Copy(Valor, 1, 1) = '7' then Result := Result + Texto[34];&#13;&#10;        if Copy(Valor, 1, 1) = '8' then Result := Result + Texto[35];&#13;&#10;        if Copy(Valor, 1, 1) = '9' then Result := Result + Texto[36];&#13;&#10;      end;&#13;&#10;&#13;&#10;      if (StrToInt(Copy(Valor, 2, 2)) &#60;= 20) and (StrToInt(Copy(Valor, 2, 2)) &#62; 0) then&#13;&#10;      begin&#13;&#10;        Result := Result + ' E ' + Texto[StrToInt(Copy(Valor, 2, 2))];&#13;&#10;      end&#13;&#10;      else&#13;&#10;      if StrToInt(Copy(Valor, 2, 2)) &#62; 20 then&#13;&#10;      begin&#13;&#10;        if Copy(Valor, 2, 1) = '2' then Result := Result + ' E ' + Texto[20];&#13;&#10;        if Copy(Valor, 2, 1) = '3' then Result := Result + ' E ' + Texto[21];&#13;&#10;        if Copy(Valor, 2, 1) = '4' then Result := Result + ' E ' + Texto[22];&#13;&#10;        if Copy(Valor, 2, 1) = '5' then Result := Result + ' E ' + Texto[23];&#13;&#10;        if Copy(Valor, 2, 1) = '6' then Result := Result + ' E ' + Texto[24];&#13;&#10;        if Copy(Valor, 2, 1) = '7' then Result := Result + ' E ' + Texto[25];&#13;&#10;        if Copy(Valor, 2, 1) = '8' then Result := Result + ' E ' + Texto[26];&#13;&#10;        if Copy(Valor, 2, 1) = '9' then Result := Result + ' E ' + Texto[27];&#13;&#10;&#13;&#10;        if Copy(Valor, 3, 1) &#60;&#62; '0' then Result := Result + ' E ' + Texto[StrToInt(Copy(Valor, 3, 1))];&#13;&#10;      end;&#13;&#10;    end;&#13;&#10;  end;&#13;&#10;end;&#13;&#10;  &#13;&#10;&#13;&#10;  &#13;&#10;var&#13;&#10;  ValorF: String;&#13;&#10;  Bilhao, Milhao, Milhar, Centena, Centavos: String;&#13;&#10;begin&#13;&#10;  // Verifico&#13;&#10;&#13;&#10;  if (Valor &#60; 0) or (Valor &#62; 999999999999.99) then&#13;&#10;  begin&#13;&#10;    Result := 'VALOR INVÁLIDO!!!';&#13;&#10;  end&#13;&#10;  else&#13;&#10;  begin&#13;&#10;    // Formato o valor e jogo numa variável&#13;&#10;&#13;&#10;    ValorF := FormatFloat('###,###,###,###,##000000000000.00', Valor);&#13;&#10;&#13;&#10;    // Divido o valor formatado e jogo em variáveis&#13;&#10;&#13;&#10;    Bilhao   := Copy(ValorF, 0, 3);&#13;&#10;    Milhao   := Copy(ValorF, 5, 3);&#13;&#10;    Milhar   := Copy(ValorF, 9, 3);&#13;&#10;    Centena  := Copy(ValorF, 13, 3);&#13;&#10;    Centavos := '0' + Copy(ValorF, 17, 2);&#13;&#10;&#13;&#10;    Result := '';&#13;&#10;&#13;&#10;    if Mini(Bilhao) &#60;&#62; '' then&#13;&#10;    begin&#13;&#10;      if StrToInt(Bilhao) = 1 then Result := Result + Mini(Bilhao) + ' ' + 'BILHAO' else Result := Result + Mini(Bilhao) + ' ' + 'BILHOES';&#13;&#10;    end;&#13;&#10;&#13;&#10;    if Mini(Milhao) &#60;&#62; '' then&#13;&#10;    begin&#13;&#10;      if Mini(Bilhao) &#60;&#62; '' then Result := Result + ', ';&#13;&#10;&#13;&#10;      if StrToInt(Milhao) = 1 then Result := Result + Mini(Milhao) + ' ' + 'MILHAO' else Result := Result + Mini(Milhao) + ' ' + 'MILHOES';&#13;&#10;    end;&#13;&#10;&#13;&#10;    if Mini(Milhar) &#60;&#62; '' then&#13;&#10;    begin&#13;&#10;      if (Mini(Bilhao) &#60;&#62; '') or (Mini(Milhao) &#60;&#62; '') then Result := Result + ', ';&#13;&#10;&#13;&#10;      Result := Result + Mini(Milhar) + ' ' + 'MIL';&#13;&#10;    end;&#13;&#10;&#13;&#10;    if Mini(Centena) &#60;&#62; '' then&#13;&#10;    begin&#13;&#10;      if (Mini(Bilhao) &#60;&#62; '') or (Mini(Milhao) &#60;&#62; '') or (Mini(Milhar) &#60;&#62; '') then Result := Result + ', ';&#13;&#10;&#13;&#10;      Result := Result + Mini(Centena);&#13;&#10;    end;&#13;&#10;&#13;&#10;    if Trunc(Valor) &#62; 1 then Result := Result + ' REAIS' else if Trunc(Valor) = 1 then Result := Result + ' REAL';&#13;&#10;&#13;&#10;    if Mini(Centavos) &#60;&#62; '' then&#13;&#10;    begin&#13;&#10;      if (Mini(Bilhao) &#60;&#62; '') or (Mini(Milhao) &#60;&#62; '') or (Mini(Milhar) &#60;&#62; '') or (Mini(Centena) &#60;&#62; '') then Result := Result + ' E ';&#13;&#10;&#13;&#10;      Result := Result + Mini(Centavos) + ' CENTAVOS';&#13;&#10;    end;&#13;&#10;  end;&#13;&#10;end;&#13;&#10;  &#13;&#10;&#13;&#10;&#13;&#10;&#13;&#10;  &#13;&#10;  &#13;&#10;procedure Page1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;    if &#60;Logo&#62; &#60;&#62; '' then                                           &#13;&#10;      Picture1.picture.loadfromfile(&#60;Logo&#62;);&#13;&#10;end;&#13;&#10;&#13;&#10;begin&#13;&#10;&#13;&#10;end." PropData="044C65667403900103546F7003000108446174617365747301010C2800000020446174615365743D22636C69656E74652220446174615365744E616D653D22636C69656E74652200010C2400000020446174615365743D226461646F732220446174615365744E616D653D226461646F732200010C2E00000020446174615365743D226461646F736974656E732220446174615365744E616D653D226461646F736974656E732200010C2B00000020446174615365743D22666D656E736167656D2220446174615365744E616D653D226D656E736167656D2200010C2F00000020446174615365743D2266706172616D6574726F732220446174615365744E616D653D22706172616D6574726F73220000095661726961626C657301010C11000000204E616D653D222065787465726E61732200010C0C000000204E616D653D226C6F676F220000055374796C650100">
  <TfrxDataPage Name="frxDataPage1" Height="1000" Left="0" Top="0" Width="1000"/>
  <TfrxReportPage Name="Page1" PaperWidth="210" PaperHeight="297" PaperSize="9" LeftMargin="10" RightMargin="10" TopMargin="10" BottomMargin="10" ColumnWidth="0" ColumnPositions.Text="" PrintIfEmpty="False" HGuides.Text="" VGuides.Text="" OnBeforePrint="Page1OnBeforePrint">
    <TfrxMasterData Name="MasterData1" Height="16,99134" Left="0" Top="464,88219" Width="718,1107" ColumnWidth="0" ColumnGap="0" DataSet="dadositens" DataSetName="dadositens" PrintIfDetailEmpty="True" RowCount="0">
      <TfrxMemoView Name="Memo10" Left="0" Top="0" Width="74,83437472" Height="15,11812" ShowHint="False" DataField="quantidade" DataSet="dadositens" DataSetName="dadositens" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="11" ParentFont="False" Text="[dadositens.&#34;quantidade&#34;]"/>
      <TfrxMemoView Name="Memo11" Left="74,81107" Top="0" Width="456,56690472" Height="15,11812" ShowHint="False" DataField="nomeproduto" DataSet="dadositens" DataSetName="dadositens" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="10" ParentFont="False" Text="[dadositens.&#34;nomeproduto&#34;]"/>
      <TfrxMemoView Name="Memo12" Left="531,91373" Top="0" Width="74,83437472" Height="15,11812" ShowHint="False" DataField="valor" DataSet="dadositens" DataSetName="dadositens" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="10" HAlign="haRight" ParentFont="False" Text="[dadositens.&#34;valor&#34;]"/>
      <TfrxMemoView Name="Memo30" Left="606,50433" Top="0" Width="108,85014472" Height="15,11812" ShowHint="False" DataField="total" DataSet="dadositens" DataSetName="dadositens" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="10" HAlign="haRight" ParentFont="False" Text="[dadositens.&#34;total&#34;]"/>
    </TfrxMasterData>
    <TfrxPageHeader Name="PageHeader1" Height="386,73500333" Left="0" Top="18,89765" Width="718,1107">
      <TfrxPictureView Name="Picture1" Left="2" Top="0,99227" Width="163,03154" Height="113,22047" ShowHint="False" HightQuality="False" Transparent="False" TransparentColor="16777215"/>
      <TfrxMemoView Name="Memo2" Align="baWidth" Left="0" Top="123,29128" Width="718,1107" Height="18,89765" ShowHint="False" DataSet="Form_cliente.fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="0" Frame.Typ="7" HAlign="haCenter" ParentFont="False" Text="[parametros.&#34;endereco&#34;]  [parametros.&#34;bairro&#34;] [parametros.&#34;cidade&#34;]-[parametros.&#34;uf&#34;]"/>
      <TfrxMemoView Name="Memo13" Align="baRight" Left="170,07885" Top="56,01577" Width="548,03185" Height="57,2047" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" HAlign="haBlock" ParentFont="False" Text="[mensagem.&#34;msg1&#34;]"/>
      <TfrxMemoView Name="parametrosrazao" Align="baRight" Left="168,81107" Top="1,23624" Width="549,29963" Height="34,01577" ShowHint="False" DataField="fantasia" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-19" Font.Name="Arial" Font.Style="5" ParentFont="False" Text="[parametros.&#34;fantasia&#34;]"/>
      <TfrxMemoView Name="Memo29" Left="168,81107" Top="32,03154" Width="549,29963" Height="22,67718" ShowHint="False" DataField="razao" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="1" ParentFont="False" Text="[parametros.&#34;razao&#34;]"/>
      <TfrxMemoView Name="Memo16" Align="baWidth" Left="0" Top="143,1812" Width="718,1107" Height="18,89765" ShowHint="False" DataSet="fparametros" DataSetName="parametros" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0" Frame.Typ="11" HAlign="haCenter" ParentFont="False" Text="e-mail: [parametros.&#34;email&#34;] Fone: [parametros.&#34;fone&#34;] CNPJ: [parametros.&#34;cnpj&#34;]"/>
      <TfrxMemoView Name="dadosdata" Left="324,55102" Top="168,29932" Width="238,11039" Height="26,45671" ShowHint="False" DataSet="Form_cliente.dados" DataSetName="dados" DisplayFormat.FormatStr="dd/mm/yyyy" DisplayFormat.Kind="fkDateTime" Font.Charset="1" Font.Color="0" Font.Height="-16" Font.Name="Arial" Font.Style="0" HAlign="haRight" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="Data: [dados.&#34;data_encerrado&#34;]"/>
      <TfrxMemoView Name="Memo1" Left="563,32282" Top="168,29932" Width="154,96073" Height="26,45671" ShowHint="False" DataSet="Form_cliente.dados" DataSetName="dados" DisplayFormat.FormatStr="ddmmyyyy" DisplayFormat.Kind="fkDateTime" Font.Charset="1" Font.Color="0" Font.Height="-16" Font.Name="Arial" Font.Style="1" Frame.Typ="15" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[dados.&#34;codigo&#34;]"/>
      <TfrxMemoView Name="Memo21" Align="baWidth" Left="0" Top="200,99196" Width="718,1107" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="7" ParentFont="False" VAlign="vaCenter" Text="Nome / RazÃ£o Social"/>
      <TfrxMemoView Name="Memo22" Align="baWidth" Left="0" Top="216,99196" Width="718,1107" Height="18,89765" ShowHint="False" DataField="razao" DataSet="cliente" DataSetName="cliente" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="[cliente.&#34;razao&#34;]"/>
      <TfrxMemoView Name="Memo23" Left="0" Top="235,99196" Width="495,11843" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="13" ParentFont="False" Text="EndereÃ§o"/>
      <TfrxMemoView Name="Memo24" Left="495" Top="235,99196" Width="222,99212598" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="CNPJ nÂº"/>
      <TfrxMemoView Name="Memo25" Left="0" Top="250,99196" Width="494,30736" Height="18,89765" ShowHint="False" DataSet="Form_cliente.dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="0" Frame.Typ="13" ParentFont="False" Text="[cliente.&#34;endereco&#34;] , [cliente.&#34;numero&#34;]  [cliente.&#34;descbairro&#34;] [cliente.&#34;complemento&#34;]"/>
      <TfrxMemoView Name="Memo26" Left="495" Top="250,99196" Width="222,99212598" Height="18,89765" ShowHint="False" DataSet="Form_cliente.dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="[cliente.&#34;cnpj&#34;]"/>
      <TfrxMemoView Name="Memo27" Left="0" Top="269,99196" Width="494,36220472" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="5" ParentFont="False" Text="Cidade"/>
      <TfrxMemoView Name="Memo28" Left="0" Top="284,99196" Width="494,36220472" Height="18,89765" ShowHint="False" DataSet="Form_cliente.dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="0" Frame.Typ="13" ParentFont="False" Text="[cliente.&#34;nomecidade&#34;] - [cliente.&#34;uf&#34;]"/>
      <TfrxMemoView Name="Memo3" Left="495" Top="270,47248" Width="222,99212598" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="InscriÃ§Ã£o est nÂº"/>
      <TfrxMemoView Name="Memo14" Left="495" Top="285,47248" Width="222,99212598" Height="18,89765" ShowHint="False" DataSet="Form_cliente.dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="[cliente.&#34;ins_estadual&#34;]"/>
      <TfrxMemoView Name="Memo15" Left="0" Top="304,48825" Width="237,35416472" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="7" ParentFont="False" Text="e-mail"/>
      <TfrxMemoView Name="Memo17" Left="0" Top="319,48825" Width="237,35416472" Height="18,89765" ShowHint="False" DataSet="Form_cliente.dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="[cliente.&#34;email&#34;]"/>
      <TfrxMemoView Name="Memo18" Left="236,88992" Top="304,48825" Width="260,03134472" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="5" ParentFont="False" Text="RG"/>
      <TfrxMemoView Name="Memo19" Left="236,88992" Top="319,48825" Width="260,03134472" Height="18,89765" ShowHint="False" DataSet="Form_cliente.dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="0" Frame.Typ="13" ParentFont="False" Text="[cliente.&#34;rg&#34;]"/>
      <TfrxMemoView Name="Memo20" Left="495" Top="304,48825" Width="222,99212598" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="7" ParentFont="False" Text="Contato"/>
      <TfrxMemoView Name="Memo35" Left="495" Top="319,48825" Width="222,99212598" Height="18,89765" ShowHint="False" DataSet="Form_cliente.dados" DataSetName="dados" Font.Charset="1" Font.Color="0" Font.Height="-15" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="[cliente.&#34;contato&#34;]"/>
      <TfrxMemoView Name="Memo6" Left="0" Top="370,61441" Width="74,83437472" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="Qtde"/>
      <TfrxMemoView Name="Memo7" Left="74,5906" Top="371,39394" Width="456,56690472" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="14" ParentFont="False" Text="DescriÃ§Ã£o"/>
      <TfrxMemoView Name="Memo8" Left="530,91373" Top="371,39394" Width="74,83437472" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" ParentFont="False" Text="Valor Unit"/>
      <TfrxMemoView Name="Memo9" Left="606,28386" Top="371,17347" Width="108,85014472" Height="15,11812" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" HAlign="haRight" ParentFont="False" Text="Valor Unit"/>
    </TfrxPageHeader>
    <TfrxPageFooter Name="PageFooter1" Height="200,31509" Left="0" Top="544,25232" Width="718,1107">
      <TfrxMemoView Name="Memo4" Left="473,64595" Top="38,67718" Width="120,94496" Height="22,67718" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" ParentFont="False" Text="PRAZO DE ENTREGA: "/>
      <TfrxMemoView Name="Memo31" Align="baWidth" Left="0" Top="64,35436" Width="718,1107" Height="22,67718" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="VENDEDOR: [dados.&#34;nomerealizado&#34;]"/>
      <TfrxMemoView Name="Memo32" Align="baWidth" Left="0" Top="87,69295" Width="718,1107" Height="60,47248" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="11" ParentFont="False" Text="OBSERVAÃ‡ÃƒO: [dados.&#34;observacao&#34;]"/>
      <TfrxMemoView Name="Memo33" Align="baLeft" Left="0" Top="38,67718" Width="434,64595" Height="22,67718" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="1" ParentFont="False" Text="VALIDADE DA PROPOSTA:   _____ DIAS"/>
      <TfrxMemoView Name="Memo34" Align="baRight" Left="597,16574" Top="38,67718" Width="120,94496" Height="22,67718" ShowHint="False" DisplayFormat.FormatStr="dd/mm/yyyy" DisplayFormat.Kind="fkDateTime" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="1" Frame.Typ="2" ParentFont="False" Text="[dados.&#34;prazo_entrega&#34;]"/>
      <TfrxMemoView Name="Memo5" Align="baWidth" Left="0" Top="1,77953" Width="718,1107" Height="34,01577" ShowHint="False" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Arial" Font.Style="0" Frame.Typ="15" ParentFont="False" Text="CONDIÃ‡ÃƒO DE PAGAMENTO: [dados.&#34;descforma&#34;] [dados.&#34;desccondicao&#34;]"/>
    </TfrxPageFooter>
  </TfrxReportPage>
</TfrxReport>
