<?xml version="1.0" encoding="utf-8" standalone="no"?>
<TfrxReport Version="5.3.1" DotMatrixReport="False" IniFile="\Software\Fast Reports" PreviewOptions.Buttons="4095" PreviewOptions.Zoom="1" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="40401.475989294" ReportOptions.Description.Text="" ReportOptions.LastChange="42446.4396765046" ScriptLanguage="PascalScript" ScriptText.Text="var&#13;&#10;  DADOS_ENDERECO: String;                                                 &#13;&#10;  DESCR_CST: String;&#13;&#10;  InformacaoComplementarOK: Boolean;      &#13;&#10;&#13;&#10;procedure Footer1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;var&#13;&#10;  FatorRodape: Extended;                                                                    &#13;&#10;begin&#13;&#10;  // considerar como rodape toda informacao complementar + divisor de colunas + traco reto para fechamento do quadro de produtos                                                                                                                                                                                                                                                                                  &#13;&#10;  FatorRodape := Child2.Height + Child1.Height;&#13;&#10;                   &#13;&#10;  if &#60;Parametros.&#34;poscanhoto&#34;&#62; = '1' then                        &#13;&#10;    FatorRodape := FatorRodape + CanhotoRodape.Height;&#13;&#10;      &#13;&#10;  if not InformacaoComplementarOK then&#13;&#10;    FatorRodape := FatorRodape + ChildInformacaoComplementar.Height;      &#13;&#10;    &#13;&#10;  while (Engine.FreeSpace - FatorRodape) &#62; 0 do&#13;&#10;    Engine.ShowBand(Child1); // divisor de colunas&#13;&#10;  Engine.ShowBand(Child2); // traco reto&#13;&#10;&#13;&#10;  // Se a informacao complementar ainda nao saiu, então força a impressão                                                                                                                                                                                                               &#13;&#10;  if not InformacaoComplementarOK then&#13;&#10;  begin                        &#13;&#10;   Engine.ShowBand(ChildInformacaoComplementar);&#13;&#10;   InformacaoComplementarOK := True;                              &#13;&#10;  end;&#13;&#10;end;  &#13;&#10;&#13;&#10;procedure Child3OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;  Child3.Visible := (&#60;Page&#62; = 1) and (MasterData2.DataSet.RecordCount &#62; 0);                                                              &#13;&#10;end;&#13;&#10;&#13;&#10;procedure Header1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;  Header1.Visible := &#60;Page&#62; = 1;                                                              &#13;&#10;end;&#13;&#10;&#13;&#10;procedure Header2OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;  Header1.Visible := not Header2.Visible;                                                              &#13;&#10;end;&#13;&#10;&#13;&#10;procedure ColumnHeader1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;  ColumnHeader1.Visible := &#60;Page&#62; &#62; 1;                                              &#13;&#10;end;&#13;&#10;&#13;&#10;procedure PageHeader1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;  if Trim(&#60;Parametros.&#34;Imagem&#34;&#62;) &#60;&#62; '' then                                &#13;&#10;    imgLogomarca.Picture.LoadFromFile(&#60;Parametros.&#34;Imagem&#34;&#62;);&#13;&#10;&#13;&#10;  if Trim(&#60;Emitente.&#34;CRT&#34;&#62;) = '3' then&#13;&#10;    DESCR_CST := 'CST'&#13;&#10;  else&#13;&#10;    DESCR_CST := 'CSOSN';                      &#13;&#10;end;&#13;&#10;&#13;&#10;procedure Memo11OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;  DADOS_ENDERECO := Trim(&#13;&#10;    &#60;Emitente.&#34;XLgr&#34;&#62; + ', ' + &#60;Emitente.&#34;Nro&#34;&#62; + #13 +       &#13;&#10;    &#60;Emitente.&#34;XBairro&#34;&#62; + ' - ' + &#60;Emitente.&#34;XMun&#34;&#62; + ' - ' + &#60;Emitente.&#34;UF&#34;&#62; + #13 +                   &#13;&#10;    'Fone: ' + &#60;Emitente.&#34;Fone&#34;&#62; + ' CEP: ' + &#60;Emitente.&#34;CEP&#34;&#62; + #13 +       &#13;&#10;    &#60;Parametros.&#34;Site&#34;&#62; + #13 +       &#13;&#10;    &#60;Parametros.&#34;Email&#34;&#62;  &#13;&#10;  );  &#13;&#10;end;&#13;&#10;&#13;&#10;procedure Overlay1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;  if &#60;Parametros.&#34;Mensagem0&#34;&#62; &#60;&#62; '' then &#13;&#10;  begin                       &#13;&#10;    Overlay1.Visible := True;&#13;&#10;    Overlay1.Height        := Engine.PageHeight;&#13;&#10;    memWatermark.Text      := &#60;Parametros.&#34;Mensagem0&#34;&#62;;                                                                                                      &#13;&#10;    memWatermark.Width     := Overlay1.Width;                                  &#13;&#10;    memWatermark.Height    := Engine.PageHeight;&#13;&#10;    memWatermark.Font.Size := 50;&#13;&#10;    if (&#60;Parametros.&#34;Mensagem0&#34;&#62; = 'NFe Cancelada') or&#13;&#10;       (&#60;Parametros.&#34;Mensagem0&#34;&#62; = 'NFe em Contingência - Cancelada') or                                                         &#13;&#10;       (&#60;Parametros.&#34;Mensagem0&#34;&#62; = 'NFe em Contingência sem Autorização de Uso da SEFAZ') or       &#13;&#10;       (&#60;Parametros.&#34;Mensagem0&#34;&#62; = 'NFe sem Autorização de Uso da SEFAZ') then&#13;&#10;      memWatermark.font.color   := $009797FF       &#13;&#10;    else&#13;&#10;    if (&#60;Parametros.&#34;Mensagem0&#34;&#62; = 'NFe em Contingência') then&#13;&#10;      memWatermark.font.color   := $0080FFFF&#13;&#10;    else&#13;&#10;    if (&#60;Parametros.&#34;Mensagem0&#34;&#62; = 'NFe sem Valor Fiscal - HOMOLOGAÇÃO') or&#13;&#10;       (&#60;Parametros.&#34;Mensagem0&#34;&#62; = 'NFe em Contingência - HOMOLOGAÇÃO') or&#13;&#10;       (&#60;Parametros.&#34;Mensagem0&#34;&#62; = 'NFe Cancelada - HOMOLOGAÇÃO') then&#13;&#10;      memWatermark.font.color   := $00CBFBB5  &#13;&#10;    else                      &#13;&#10;      memWatermark.font.color   := $00D7D7D7;                                     &#13;&#10;  end&#13;&#10;  else&#13;&#10;    Overlay1.Visible := False;                                                                   &#13;&#10;end;                                &#13;&#10;&#13;&#10;procedure Page1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10;   ReportTitle1.Visible := &#60;Parametros.&#34;poscanhoto&#34;&#62; = '0';&#13;&#10;   CanhotoRodape.Visible := &#60;Parametros.&#34;poscanhoto&#34;&#62; = '1';       &#13;&#10;end;&#13;&#10;&#13;&#10;begin&#13;&#10;&#13;&#10;end." OnReportPrint="frxReportOnReportPrint">
  <Datasets>
    <item DataSetName="CalculoImposto"/>
    <item DataSetName="DadosProdutos"/>
    <item DataSetName="Destinatario"/>
    <item DataSetName="Duplicatas"/>
    <item DataSetName="Emitente"/>
    <item DataSetName="Fatura"/>
    <item DataSetName="Identificacao"/>
    <item DataSetName="InformacoesAdicionais"/>
    <item DataSetName="ISSQN"/>
    <item DataSetName="LocalEntrega"/>
    <item DataSetName="LocalRetirada"/>
    <item DataSetName="Parametros"/>
    <item DataSetName="Transportador"/>
    <item DataSetName="Veiculo"/>
    <item DataSetName="Volumes"/>
  </Datasets>
  <TfrxDataPage Name="Data" Height="1000" Left="0" Top="0" Width="1000"/>
  <TfrxReportPage Name="Page1" Orientation="poLandscape" PaperWidth="297" PaperHeight="210" PaperSize="9" LeftMargin="5" RightMargin="5" TopMargin="7" BottomMargin="7" ColumnWidth="0" ColumnPositions.Text="" BackPictureVisible="False" LargeDesignHeight="True" HGuides.Text="" VGuides.Text="" OnBeforePrint="Page1OnBeforePrint">
    <TfrxMasterData Name="MasterData1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="12.47244094" Left="0" Top="740.78788" Width="1084.72511" ColumnWidth="0" ColumnGap="0" DataSetName="DadosProdutos" RowCount="0" Stretched="True">
      <TfrxMemoView Name="Memo131" Left="0" Top="0" Width="83.14966" Height="12.47244094" StretchMode="smMaxHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" Text="[DadosProdutos.&#34;CProd&#34;]"/>
      <TfrxMemoView Name="Memo132" Left="83.14966" Top="0" Width="377.95281937" Height="12.47244094" StretchMode="smMaxHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haBlock" ParentFont="False" Text="[DadosProdutos.&#34;XProd&#34;] [DadosProdutos.&#34;infAdProd&#34;]"/>
      <TfrxMemoView Name="Memo133" Left="461.10244764" Top="0" Width="41.57480315" Height="12.47244094" StretchMode="smMaxHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;NCM&#34;]"/>
      <TfrxMemoView Name="Memo134" Left="502.67716535" Top="0" Width="22.67716535" Height="12.47244094" StretchMode="smMaxHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;ORIGEM&#34;][DadosProdutos.&#34;CST&#34;]"/>
      <TfrxMemoView Name="Memo135" Left="525.35433071" Top="0" Width="24.56692913" Height="12.47244094" StretchMode="smMaxHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;CFOP&#34;]"/>
      <TfrxMemoView Name="Memo136" Left="549.92125984" Top="0" Width="22.67718" Height="12.47244094" StretchMode="smMaxHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" Text="[DadosProdutos.&#34;Unidade&#34;]"/>
      <TfrxMemoView Name="Memo137" Left="572.5984252" Top="0" Width="51.02363425" Height="12.47244094" StretchMode="smMaxHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" Text="[DadosProdutos.&#34;Quantidade&#34;]"/>
      <TfrxMemoView Name="Memo138" Left="623.62204724" Top="0" Width="68.03149606" Height="12.47244094" StretchMode="smMaxHeight" DisplayFormat.FormatStr=",0.00########" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" Text="[DadosProdutos.&#34;ValorUnitario&#34;]"/>
      <TfrxMemoView Name="Memo139" Left="691.65399" Top="0" Width="45.35433071" Height="12.47244094" StretchMode="smMaxHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;vDesc&#34;]"/>
      <TfrxMemoView Name="Memo140" Left="737.00835" Top="0" Width="52.91342" Height="12.47244094" StretchMode="smMaxHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;VProd&#34;]"/>
      <TfrxMemoView Name="Memo141" Left="789.92177" Top="0" Width="49.13389" Height="12.47244094" StretchMode="smMaxHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;VBC&#34;]"/>
      <TfrxMemoView Name="Memo142" Left="888.18955" Top="0" Width="49.13389" Height="12.47244094" StretchMode="smMaxHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;VICMS&#34;]"/>
      <TfrxMemoView Name="Memo143" Left="986.45733" Top="0" Width="45.35436" Height="12.47244094" StretchMode="smMaxHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;VIPI&#34;]"/>
      <TfrxMemoView Name="Memo144" Left="1031.81169" Top="0" Width="26.45671" Height="12.47244094" StretchMode="smMaxHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;PICMS&#34;]"/>
      <TfrxMemoView Name="Memo145" Left="1058.2684" Top="0" Width="26.45671" Height="12.47244094" StretchMode="smMaxHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;PIPI&#34;]"/>
      <TfrxMemoView Name="Memo155" Left="839.05566" Top="0" Width="49.13389" Height="12.47244094" StretchMode="smMaxHeight" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;VBCST&#34;]"/>
      <TfrxMemoView Name="Memo156" Left="937.32344" Top="0" Width="49.13389" Height="12.47244094" StretchMode="smMaxHeight" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[DadosProdutos.&#34;VICMSST&#34;]"/>
    </TfrxMasterData>
    <TfrxReportTitle Name="ReportTitle1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="58.69295" Left="0" Top="18.89765" Width="1084.72511">
      <TfrxMemoView Name="Memo2" Left="0" Top="0" Width="971.33921" Height="22.67718" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haBlock" ParentFont="False" WordWrap="False" Text="Recebemos de [Emitente.&#34;XNome&#34;] os produtos e/ou serviços constantes da Nota Fiscal Eletrônica indicada ao lado. &#13;&#10;Destinatário: [Destinatario.&#34;Xnome&#34;] - [Destinatario.&#34;XLgr&#34;], [Destinatario.&#34;Nro&#34;] - [Destinatario.&#34;XBairro&#34;] - [Destinatario.&#34;XMun&#34;] - [Destinatario.&#34;UF&#34;].Emissão: [Identificacao.&#34;DEmi&#34;]  Valor Total: R$ [CalculoImposto.&#34;VNF&#34; #n%2,2n]"/>
      <TfrxMemoView Name="Memo3" Left="143.62214" Top="22.67718" Width="827.71707" Height="30.23624" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="IDENTIFICAÇÃO E ASSINATURA DO RECEBEDOR"/>
      <TfrxMemoView Name="Memo4" Left="0" Top="22.67718" Width="143.62214" Height="30.23624" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="DATA DO RECEBIMENTO"/>
      <TfrxLineView Name="Line1" Align="baWidth" Left="0" Top="54.91342" Width="1084.72511" Height="0" Color="0" Frame.Style="fsDot" Frame.Typ="4" Frame.Width="0.5"/>
      <TfrxMemoView Name="Memo17" Left="971.33921" Top="0" Width="113.38580236" Height="52.91342" Font.Charset="1" Font.Color="0" Font.Height="-16" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" Text="NF-e"/>
      <TfrxMemoView Name="Memo18" Left="971.33921" Top="17.89765" Width="113.3859" Height="34.01577" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="1" Frame.Width="0.5" HAlign="haCenter" LineSpacing="6" ParentFont="False" WordWrap="False" Text="Nº [Identificacao.&#34;NNF&#34;]&#13;&#10;Série [Identificacao.&#34;Serie&#34; #n#000]"/>
    </TfrxReportTitle>
    <TfrxPageHeader Name="PageHeader1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="147.40165291" Left="0" Top="102.04731" Width="1084.72511" OnBeforePrint="PageHeader1OnBeforePrint">
      <TfrxBarCodeView Name="BarCode1" Left="791.05534756" Top="15.11812" Width="79" Height="45.35433071" BarType="bcCode128C" Expression="&#60;Identificacao.&#34;ID&#34;&#62;" Rotation="0" ShowText="False" Text="12345678" WideBarRatio="2" Zoom="1" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="0"/>
      <TfrxMemoView Name="Memo6" Left="774.80365" Top="75.5906" Width="309.92146" Height="45.35436" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="CHAVE DE ACESSO"/>
      <TfrxMemoView Name="Memo7" Left="445.98454" Top="0" Width="328.81911" Height="60.47248" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Consulta de autenticidade no portal da NF-e&#13;&#10;www.nfe.fazenda.gov.br/portal ou no site da SEFAZ Autenticadora"/>
      <TfrxMemoView Name="Memo8" Left="774.80365" Top="85.92919" Width="309.92146" Height="34.01577" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="1" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[Identificacao.&#34;Chave&#34;]"/>
      <TfrxMemoView Name="Memo9" Left="351.49629" Top="0" Width="94.48816457" Height="120.94496" Font.Charset="1" Font.Color="0" Font.Height="-16" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" Text="DANFE"/>
      <TfrxMemoView Name="Memo10" Left="128.50402" Top="8.33859" Width="219.21274" Height="37.7953" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[Emitente.&#34;XNome&#34;]"/>
      <TfrxMemoView Name="Memo11" Left="128.50402" Top="47.57483" Width="219.21274" Height="62.36222181" OnBeforePrint="Memo11OnBeforePrint" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Arial" Font.Style="0" Frame.Width="0.5" HAlign="haCenter" LineSpacing="4" ParentFont="False" VAlign="vaCenter" Text="[Emitente.&#34;DADOS_ENDERECO&#34;]"/>
      <TfrxMemoView Name="Memo12" Left="351.49629" Top="20.89765" Width="94.48825" Height="18.89765" Font.Charset="1" Font.Color="0" Font.Height="-7" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" Text="Documento Auxiliar da &#13;&#10;Nota Fiscal Eletrônica"/>
      <TfrxMemoView Name="Memo13" Left="351.49629" Top="70.81107" Width="94.48825" Height="49.13389" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Times New Roman" Font.Style="1" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" WordWrap="False" Text="Nº [Identificacao.&#34;NNF&#34;]&#13;&#10;Série [Identificacao.&#34;Serie&#34; #n#000]&#13;&#10;Folha [Page]/[TotalPages#]"/>
      <TfrxMemoView Name="Memo15" Left="359.83488" Top="46.35436" Width="49.13389" Height="18.89765" Font.Charset="1" Font.Color="0" Font.Height="-7" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" ParentFont="False" VAlign="vaCenter" Text="0 - ENTRADA&#13;&#10;1 - SAÍDA"/>
      <TfrxMemoView Name="Memo16" Left="416.7483" Top="46.35436" Width="18.89765" Height="18.89765" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="[Identificacao.&#34;TpNF&#34;]"/>
      <TfrxMemoView Name="Memo19" Left="0" Top="120.94496" Width="578.26809" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="NATUREZA DA OPERAÇÃO"/>
      <TfrxMemoView Name="Memo20" Left="0" Top="130.39370079" Width="574.48856" Height="13.22834402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" Text="[Identificacao.&#34;NatOp&#34;]"/>
      <TfrxMemoView Name="Memo21" Left="445.98454" Top="60.47248" Width="328.81911" Height="34.01575291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="[Parametros.&#34;Contingencia_Descricao&#34;]"/>
      <TfrxMemoView Name="Memo22" Left="445.98454" Top="68.92122079" Width="328.81911" Height="24.56693402" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="1" Frame.Width="0.5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[Parametros.&#34;Contingencia_Valor&#34;]"/>
      <TfrxMemoView Name="Memo23" Left="578.26809" Top="120.94496" Width="253.22851" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="INSCRIÇÃO ESTADUAL"/>
      <TfrxMemoView Name="Memo24" Left="578.26809" Top="130.39370079" Width="253.22851" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" Text="[Emitente.&#34;IE&#34;]"/>
      <TfrxMemoView Name="Memo25" Left="831.4966" Top="120.94496" Width="253.22851" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="INSCRIÇÃO ESTADUAL DO SUBSTITUTO TRIBUTÁRIO"/>
      <TfrxMemoView Name="Memo26" Left="831.4966" Top="130.39370079" Width="253.22851" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" Text="[Emitente.&#34;IEST&#34;]"/>
      <TfrxMemoView Name="Memo27" Left="445.98454" Top="94.48825" Width="328.81911" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="CNPJ"/>
      <TfrxMemoView Name="Memo28" Left="445.98454" Top="103.93699079" Width="328.81911" Height="13.22834402" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="1" Frame.Width="0.5" GapX="5" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="[Emitente.&#34;CNPJ&#34;]"/>
      <TfrxPictureView Name="imgLogomarca" Left="0" Top="5.11812" Width="124.72449" Height="105.82684" Center="True" HightQuality="False" Transparent="False" TransparentColor="16777215"/>
      <TfrxMemoView Name="Memo1" Left="774.80365" Top="0" Width="309.92146" Height="75.5906" Font.Charset="1" Font.Color="0" Font.Height="-7" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text=""/>
      <TfrxShapeView Name="Shape1" Left="0" Top="0" Width="351.49629" Height="120.94496"/>
    </TfrxPageHeader>
    <TfrxPageFooter Name="PageFooter1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="13.22834646" Left="0" Top="1243.46537" Width="1084.72511">
      <TfrxMemoView Name="Memo150" Left="0" Top="0" Width="393.07112" Height="9.44881646" Font.Charset="1" Font.Color="0" Font.Height="-7" Font.Name="Arial" Font.Style="0" Frame.Width="0.5" ParentFont="False" Text="DATA E HORA DA IMPRESSÃO: [Date #ddd/mm/yyyy] [Time #dhh:mm:ss] [Parametros.&#34;Usuario&#34;]"/>
      <TfrxMemoView Name="Memo151" Left="729.44929" Top="0" Width="355.27582" Height="13.22834646" AllowHTMLTags="True" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Arial" Font.Style="0" Frame.Width="0.5" HAlign="haRight" ParentFont="False" Text="[Parametros.&#34;Sistema&#34;]"/>
    </TfrxPageFooter>
    <TfrxFooter Name="Footer1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="0" Left="0" Top="835.27613" Visible="False" Width="1084.72511" OnBeforePrint="Footer1OnBeforePrint" Child="Child1"/>
    <TfrxChild Name="Child1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="3.77952756" Left="0" Top="857.95331" Width="1084.72511">
      <TfrxMemoView Name="Memo161" Left="0" Top="0" Width="83.14966" Height="3.77952756" StretchMode="smActualHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo162" Left="83.14966" Top="0" Width="377.953" Height="3.77952756" StretchMode="smActualHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo163" Left="461.10266" Top="0" Width="41.5748031496063" Height="3.77952756" StretchMode="smActualHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo164" Left="502.677165354331" Top="0" Width="22.6771653543307" Height="3.77952756" StretchMode="smActualHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo165" Left="525.354330708661" Top="0" Width="24.56692913" Height="3.77952756" StretchMode="smActualHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo166" Left="549.92125984252" Top="0" Width="22.67718" Height="3.77952756" StretchMode="smActualHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haCenter" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo167" Left="572.59842519685" Top="0" Width="51.02363425" Height="3.77952756" StretchMode="smActualHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haRight" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo168" Left="623.622047244094" Top="0" Width="68.0314960629921" Height="3.77952756" StretchMode="smActualHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haRight" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo169" Left="691.653543307087" Top="0" Width="45.35433071" Height="3.77952756" StretchMode="smActualHeight" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haCenter" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo170" Left="737.00835" Top="0" Width="52.91342" Height="3.77952756" StretchMode="smActualHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haRight" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo171" Left="789.92177" Top="0" Width="49.13389" Height="3.77952756" StretchMode="smActualHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haRight" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo172" Left="839.05566" Top="0" Width="49.13389" Height="3.77952756" StretchMode="smActualHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haRight" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo173" Left="986.45733" Top="0" Width="45.35436" Height="3.77952756" StretchMode="smActualHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haRight" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo174" Left="1031.81169" Top="0" Width="26.45671" Height="3.77952756" StretchMode="smActualHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haRight" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo175" Left="1058.2684" Top="0" Width="26.45671" Height="3.77952756" StretchMode="smActualHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haRight" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo157" Left="888.18955" Top="0" Width="49.13389" Height="3.77952756" StretchMode="smActualHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haRight" HideZeros="True" ParentFont="False" Text=""/>
      <TfrxMemoView Name="Memo158" Left="937.32344" Top="0" Width="49.13389" Height="3.77952756" StretchMode="smActualHeight" DisplayFormat.FormatStr=",0.00##" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="3" Frame.Width="0.5" GapY="2" HAlign="haRight" HideZeros="True" ParentFont="False" Text=""/>
    </TfrxChild>
    <TfrxChild Name="Child3" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="35.7953" Left="0" Top="464.88219" Width="1084.72511" OnBeforePrint="Child3OnBeforePrint" Stretched="True">
      <TfrxSubreport Name="Subreport1" Left="0.77953" Top="16.89765" Width="94.48825" Height="18.89765" Page="Page2"/>
      <TfrxMemoView Name="Memo55" Left="0" Top="0" Width="430.86642" Height="13.22834402" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" ParentFont="False" Text="DUPLICATAS"/>
    </TfrxChild>
    <TfrxMasterData Name="MasterData3" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="69.81105291" Left="0" Top="370.39394" Width="1084.72511" Child="Child3" ColumnWidth="0" ColumnGap="0" DataSetName="Identificacao" RowCount="0">
      <TfrxMemoView Name="Memo29" Left="0" Top="16.89765" Width="461.10266" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="NOME / RAZÃO SOCIAL"/>
      <TfrxMemoView Name="Memo30" Left="0" Top="26.34639079" Width="461.10266" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Destinatario.&#34;XNome&#34;]"/>
      <TfrxMemoView Name="Memo31" Left="960.00062" Top="16.89765" Width="124.72449" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="DATA DA EMISSÃO"/>
      <TfrxMemoView Name="Memo32" Left="960.00062" Top="26.34639079" Width="124.72449" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haCenter" ParentFont="False" WordWrap="False" Text="[Identificacao.&#34;DEmi&#34;]"/>
      <TfrxMemoView Name="Memo33" Left="891.96908" Top="43.35436" Width="124.72449" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="DATA DA SAÍDA"/>
      <TfrxMemoView Name="Memo34" Left="891.96908" Top="52.80310079" Width="124.72449" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haCenter" ParentFont="False" WordWrap="False" Text="[Identificacao.&#34;DSaiEnt&#34;]"/>
      <TfrxMemoView Name="Memo35" Left="1016.69357" Top="43.35436" Width="68.03154" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="HORA DA SAÍDA"/>
      <TfrxMemoView Name="Memo36" Left="1016.69357" Top="52.80310079" Width="68.03154" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haCenter" ParentFont="False" WordWrap="False" Text="[Identificacao.&#34;HoraSaida&#34;]"/>
      <TfrxMemoView Name="Memo37" Left="461.10266" Top="16.89765" Width="143.62214" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="CNPJ / CPF"/>
      <TfrxMemoView Name="Memo38" Left="461.10266" Top="26.34639079" Width="143.62214" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Destinatario.&#34;CNPJCPF&#34;]"/>
      <TfrxMemoView Name="Memo39" Left="846.61472" Top="16.89765" Width="83.14966" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="CEP"/>
      <TfrxMemoView Name="Memo40" Left="846.61472" Top="26.34639079" Width="83.14966" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Destinatario.&#34;CEP&#34;]"/>
      <TfrxMemoView Name="Memo41" Left="377.953" Top="43.35436" Width="158.74026" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="BAIRRO / DISTRITO"/>
      <TfrxMemoView Name="Memo42" Left="377.953" Top="52.80310079" Width="158.74026" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Destinatario.&#34;XBairro&#34;]"/>
      <TfrxMemoView Name="Memo43" Left="0" Top="43.35436" Width="377.953" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="ENDEREÇO"/>
      <TfrxMemoView Name="Memo44" Left="0" Top="52.80310079" Width="377.953" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Destinatario.&#34;XLgr&#34;], [Destinatario.&#34;Nro&#34;]  [Destinatario.&#34;XCpl&#34;]"/>
      <TfrxMemoView Name="Memo45" Left="536.69326" Top="43.35436" Width="355.27582" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="MUNICÍPIO"/>
      <TfrxMemoView Name="Memo46" Left="536.69326" Top="52.80310079" Width="355.27582" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Destinatario.&#34;XMun&#34;]"/>
      <TfrxMemoView Name="Memo47" Left="929.76438" Top="16.89765" Width="30.23624" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="UF"/>
      <TfrxMemoView Name="Memo48" Left="929.76438" Top="26.34639079" Width="30.23624" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haCenter" ParentFont="False" WordWrap="False" Text="[Destinatario.&#34;UF&#34;]"/>
      <TfrxMemoView Name="Memo49" Left="737.00835" Top="16.89765" Width="109.60637" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="TELEFONE / FAX"/>
      <TfrxMemoView Name="Memo50" Left="737.00835" Top="26.34639079" Width="109.60637" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Destinatario.&#34;Fone&#34;]"/>
      <TfrxMemoView Name="Memo51" Left="604.7248" Top="16.89765" Width="132.28355" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="INSCRIÇÃO ESTADUAL"/>
      <TfrxMemoView Name="Memo52" Left="604.7248" Top="26.34639079" Width="132.28355" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Destinatario.&#34;IE&#34;]"/>
      <TfrxMemoView Name="Memo53" Left="0" Top="3.77953000000002" Width="430.86642" Height="13.22834402" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" ParentFont="False" Text="DESTINATÁRIO / REMETENTE"/>
    </TfrxMasterData>
    <TfrxHeader Name="Header1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="109.60635291" Left="0" Top="525.35467" Width="1084.72511" OnBeforePrint="Header1OnBeforePrint">
      <TfrxMemoView Name="Memo58" Left="0" Top="2.77953000000002" Width="430.86642" Height="13.22834402" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" ParentFont="False" Text="CÁLCULO DO IMPOSTO"/>
      <TfrxMemoView Name="Memo59" Left="0" Top="15.11812" Width="105.82684" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="BASE DE CÁLCULO DO ICMS"/>
      <TfrxMemoView Name="Memo60" Left="0" Top="24.56686079" Width="105.82684" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VBC&#34;]"/>
      <TfrxMemoView Name="Memo61" Left="105.82684" Top="15.11812" Width="98.26778" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="VALOR DO ICMS"/>
      <TfrxMemoView Name="Memo62" Left="105.82684" Top="24.56686079" Width="98.26778" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VICMS&#34;]"/>
      <TfrxMemoView Name="Memo63" Left="204.09462" Top="15.11812" Width="98.26778" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="BASE DE CÁLCULO DO ICMS SUBST."/>
      <TfrxMemoView Name="Memo64" Left="204.09462" Top="24.56686079" Width="98.26778" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VBCST&#34;]"/>
      <TfrxMemoView Name="Memo65" Left="302.3624" Top="15.11812" Width="117.16543" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="VALOR DO ICMS SUBSTITUIÇÃO"/>
      <TfrxMemoView Name="Memo66" Left="306.14193" Top="24.56686079" Width="113.3859" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VST&#34;]"/>
      <TfrxMemoView Name="Memo67" Left="805.03989" Top="15.11812" Width="139.84261" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="VALOR TOTAL DOS PRODUTOS"/>
      <TfrxMemoView Name="Memo68" Left="805.03989" Top="23.56686079" Width="139.84261" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VProd&#34;]"/>
      <TfrxMemoView Name="Memo69" Left="731.717008" Top="15.11812" Width="73.322882" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="VALOR DO IPI"/>
      <TfrxMemoView Name="Memo70" Left="731.717008" Top="24.56686079" Width="73.322882" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VIPI&#34;]"/>
      <TfrxMemoView Name="Memo71" Left="639.496476" Top="15.11812" Width="92.220532" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="OUTRAS DESPESAS ACESSÓRIAS"/>
      <TfrxMemoView Name="Memo72" Left="639.496476" Top="24.56686079" Width="92.220532" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VOutro&#34;]"/>
      <TfrxMemoView Name="Memo73" Left="566.173594" Top="15.11812" Width="73.322882" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="DESCONTO"/>
      <TfrxMemoView Name="Memo74" Left="566.173594" Top="24.56686079" Width="73.322882" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VDesc&#34;]"/>
      <TfrxMemoView Name="Memo75" Left="492.850712" Top="15.11812" Width="73.322882" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="VALOR DO SEGURO"/>
      <TfrxMemoView Name="Memo76" Left="492.850712" Top="24.56686079" Width="73.322882" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VSeg&#34;]"/>
      <TfrxMemoView Name="Memo77" Left="419.52783" Top="15.11812" Width="73.322882" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="VALOR DO FRETE"/>
      <TfrxMemoView Name="Memo78" Left="419.52783" Top="24.56686079" Width="73.322882" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VFrete&#34;]"/>
      <TfrxMemoView Name="Memo79" Left="944.8825" Top="15.11812" Width="139.84261" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" Fill.BackColor="15724527" GapY="2" ParentFont="False" Text="VALOR TOTAL DA NOTA"/>
      <TfrxMemoView Name="Memo80" Left="944.8825" Top="23.56686079" Width="139.84261" Height="17.00787402" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-13" Font.Name="Times New Roman" Font.Style="1" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[CalculoImposto.&#34;VNF&#34;]"/>
      <TfrxMemoView Name="Memo82" Left="0" Top="42.46454984" Width="430.86642" Height="13.22834402" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" ParentFont="False" Text="TRANSPORTADOR / VOLUMES TRANSPORTADOS"/>
      <TfrxMemoView Name="Memo83" Left="636.0945126" Top="56.69295" Width="116.03149362" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="CNPJ / CPF"/>
      <TfrxMemoView Name="Memo84" Left="636.0945126" Top="66.14169079" Width="116.03149362" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Transportador.&#34;CNPJCPF&#34;]"/>
      <TfrxMemoView Name="Memo85" Left="604.7248" Top="56.69295" Width="31.37007874" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="UF"/>
      <TfrxMemoView Name="Memo86" Left="604.7248" Top="66.14169079" Width="31.37007874" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haCenter" ParentFont="False" WordWrap="False" Text="[Veiculo.&#34;UF&#34;]"/>
      <TfrxMemoView Name="Memo87" Left="536.69326" Top="56.69295" Width="68.03154" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="PLACA DO VEÍCULO"/>
      <TfrxMemoView Name="Memo88" Left="536.69326" Top="66.14169079" Width="68.03154" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Veiculo.&#34;PLACA&#34;]"/>
      <TfrxMemoView Name="Memo89" Left="453.5436" Top="56.69295" Width="83.14966" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="CÓDIGO ANTT"/>
      <TfrxMemoView Name="Memo90" Left="453.5436" Top="66.14169079" Width="83.14966" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Veiculo.&#34;RNTC&#34;]"/>
      <TfrxMemoView Name="Memo91" Left="362.83488" Top="56.69295" Width="90.70872" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="FRETE POR CONTA"/>
      <TfrxMemoView Name="Memo92" Left="362.83488" Top="66.14169079" Width="90.70872" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Transportador.&#34;ModFrete&#34;]"/>
      <TfrxMemoView Name="Memo93" Left="0" Top="56.69295" Width="362.83488" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="NOME / RAZÃO SOCIAL"/>
      <TfrxMemoView Name="Memo94" Left="0" Top="66.14169079" Width="362.83488" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Transportador.&#34;XNome&#34;]"/>
      <TfrxMemoView Name="Memo95" Left="578.26809" Top="83.14966" Width="27.59054874" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="UF"/>
      <TfrxMemoView Name="Memo96" Left="578.26809" Top="92.59840079" Width="27.59054874" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haCenter" ParentFont="False" WordWrap="False" Text="[Transportador.&#34;UF&#34;]"/>
      <TfrxMemoView Name="Memo97" Left="752.12598181" Top="56.69295" Width="116.03149362" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="INSCRIÇÃO ESTADUAL"/>
      <TfrxMemoView Name="Memo98" Left="752.12598181" Top="66.14169079" Width="116.03149362" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Transportador.&#34;IE&#34;]"/>
      <TfrxMemoView Name="Memo99" Left="351.49629" Top="83.14966" Width="226.7718" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="MUNICÍPIO"/>
      <TfrxMemoView Name="Memo100" Left="351.49629" Top="92.59840079" Width="226.7718" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Transportador.&#34;XMun&#34;]"/>
      <TfrxMemoView Name="Memo101" Left="0" Top="83.14966" Width="351.49629" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="ENDEREÇO"/>
      <TfrxMemoView Name="Memo102" Left="0" Top="92.59840079" Width="351.49629" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Transportador.&#34;XEnder&#34;]"/>
      <TfrxMemoView Name="Memo103" Left="605.85824819" Top="83.14966" Width="47.87404667" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" HideZeros="True" ParentFont="False" Text="QUANTIDADE"/>
      <TfrxMemoView Name="Memo104" Left="605.85824819" Top="92.59840079" Width="47.87404667" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" HideZeros="True" ParentFont="False" WordWrap="False" Text="[Volumes.&#34;QVol&#34;]"/>
      <TfrxMemoView Name="Memo105" Left="654.48031496" Top="83.14966" Width="127.7480315" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="ESPÉCIE"/>
      <TfrxMemoView Name="Memo106" Left="654.48031496" Top="92.59840079" Width="127.37007874" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Volumes.&#34;Esp&#34;]"/>
      <TfrxMemoView Name="Memo107" Left="782.22834646" Top="83.14966" Width="134.80323667" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="MARCA"/>
      <TfrxMemoView Name="Memo108" Left="782.22834646" Top="92.59840079" Width="134.80323667" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Volumes.&#34;Marca&#34;]"/>
      <TfrxMemoView Name="Memo109" Left="917.02362205" Top="83.14966" Width="168.56692913" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="NUMERAÇÃO"/>
      <TfrxMemoView Name="Memo110" Left="917.15748031" Top="92.59840079" Width="168.56692913" Height="17.00787402" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" WordWrap="False" Text="[Volumes.&#34;NVol&#34;]"/>
      <TfrxMemoView Name="Memo111" Left="868.03205667" Top="56.69295" Width="108.34652667" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="PESO BRUTO"/>
      <TfrxMemoView Name="Memo112" Left="868.03205667" Top="66.14169079" Width="108.34652667" Height="17.00787402" DisplayFormat.FormatStr=",0.00#" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" HideZeros="True" ParentFont="False" WordWrap="False" Text="[Volumes.&#34;PesoB&#34;]"/>
      <TfrxMemoView Name="Memo113" Left="976.37858333" Top="56.69295" Width="108.34652667" Height="26.45669291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="PESO LÍQUIDO"/>
      <TfrxMemoView Name="Memo114" Left="976.37858333" Top="66.14169079" Width="108.34652667" Height="17.00787402" DisplayFormat.FormatStr=",0.00#" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" HideZeros="True" ParentFont="False" WordWrap="False" Text="[Volumes.&#34;PesoL&#34;]"/>
    </TfrxHeader>
    <TfrxHeader Name="Header2" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="37.7952878" Left="0" Top="680.3154" Width="1084.72511" OnBeforePrint="Header2OnBeforePrint">
      <TfrxMemoView Name="Memo115" Left="0" Top="2" Width="430.86642" Height="13.22834402" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" ParentFont="False" Text="DADOS DOS PRODUTOS / SERVIÇOS"/>
      <TfrxMemoView Name="Memo116" Left="0" Top="15.11812" Width="83.14966" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="CÓDIGO&#13;&#10;PRODUTO"/>
      <TfrxMemoView Name="Memo117" Left="83.14966" Top="15.11812" Width="377.95281937" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="DESCRIÇÃO DO PRODUTO / SERVIÇO"/>
      <TfrxMemoView Name="Memo118" Left="461.10244764" Top="15.11812" Width="41.5748031496063" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="NCM/SH"/>
      <TfrxMemoView Name="Memo119" Left="502.677165354331" Top="15.11812" Width="22.6771653543307" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="[Emitente.&#34;DESCR_CST&#34;]"/>
      <TfrxMemoView Name="Memo120" Left="525.354330708661" Top="15.11812" Width="24.56692913" Height="22.6771678" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="CFOP"/>
      <TfrxMemoView Name="Memo121" Left="549.92125984252" Top="15.11812" Width="22.67718" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="UNID."/>
      <TfrxMemoView Name="Memo122" Left="572.59842519685" Top="15.11812" Width="51.02363425" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="QUANTIDADE"/>
      <TfrxMemoView Name="Memo123" Left="623.622047244094" Top="15.11812" Width="68.0314960629921" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;UNITÁRIO"/>
      <TfrxMemoView Name="Memo124" Left="691.65399" Top="15.11812" Width="45.35433071" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;DESCONTO"/>
      <TfrxMemoView Name="Memo125" Left="737.00835" Top="15.11812" Width="52.91342" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;TOTAL"/>
      <TfrxMemoView Name="Memo126" Left="789.92177" Top="15.11812" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="BASE DE &#13;&#10;CÁLC. ICMS"/>
      <TfrxMemoView Name="Memo127" Left="888.18955" Top="15.11812" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;ICMS"/>
      <TfrxMemoView Name="Memo128" Left="986.45733" Top="15.11812" Width="45.35436" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;IPI"/>
      <TfrxMemoView Name="Memo129" Left="1031.81169" Top="26.45671" Width="26.45671" Height="11.33857291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="ICMS"/>
      <TfrxMemoView Name="Memo130" Left="1058.2684" Top="26.45671" Width="26.45671" Height="11.33857291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="IPI"/>
      <TfrxMemoView Name="Memo189" Left="1031.81169" Top="15.11812" Width="52.91342" Height="11.33857291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="ALÍQUOTA %"/>
      <TfrxMemoView Name="Memo153" Left="839.05566" Top="15.11812" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="BASE DE &#13;&#10;CÁLC. ICMS ST"/>
      <TfrxMemoView Name="Memo154" Left="937.32344" Top="15.11812" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;ICMS ST"/>
    </TfrxHeader>
    <TfrxMasterData Name="MasterData4" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="0" Left="0" Top="657.63822" Width="1084.72511" ColumnWidth="0" ColumnGap="0" RowCount="1"/>
    <TfrxColumnHeader Name="ColumnHeader1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="35.7952878" Left="0" Top="272.12616" Width="1084.72511" OnBeforePrint="ColumnHeader1OnBeforePrint">
      <TfrxMemoView Name="Memo5" Left="0" Top="0" Width="430.86642" Height="13.22834402" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" ParentFont="False" Text="DADOS DOS PRODUTOS / SERVIÇOS"/>
      <TfrxMemoView Name="Memo56" Left="0" Top="13.11812" Width="83.14966" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="CÓDIGO&#13;&#10;PRODUTO"/>
      <TfrxMemoView Name="Memo57" Left="83.14966" Top="13.11812" Width="377.95281937" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="DESCRIÇÃO DO PRODUTO / SERVIÇO"/>
      <TfrxMemoView Name="Memo176" Left="461.10244764" Top="13.11812" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="NCM/SH"/>
      <TfrxMemoView Name="Memo177" Left="510.23631323" Top="13.11812" Width="30.23622535" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="[Emitente.&#34;DESCR_CST&#34;]"/>
      <TfrxMemoView Name="Memo178" Left="540.47253614" Top="13.11812" Width="24.56692913" Height="22.6771678" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="CFOP"/>
      <TfrxMemoView Name="Memo179" Left="565.03952386" Top="13.11812" Width="22.67718" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="UNID."/>
      <TfrxMemoView Name="Memo180" Left="587.71668921" Top="13.11812" Width="51.02363425" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="QUANTIDADE"/>
      <TfrxMemoView Name="Memo181" Left="638.74057" Top="13.11812" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;UNITÁRIO"/>
      <TfrxMemoView Name="Memo182" Left="687.87446" Top="13.11812" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;DESCONTO"/>
      <TfrxMemoView Name="Memo183" Left="737.00835" Top="13.11812" Width="52.91342" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;TOTAL"/>
      <TfrxMemoView Name="Memo184" Left="789.92177" Top="13.11812" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="BASE DE &#13;&#10;CÁLC. ICMS"/>
      <TfrxMemoView Name="Memo185" Left="839.05566" Top="13.11812" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;ICMS"/>
      <TfrxMemoView Name="Memo186" Left="986.45733" Top="13.11812" Width="45.35436" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;IPI"/>
      <TfrxMemoView Name="Memo187" Left="1031.81169" Top="24.45671" Width="26.45671" Height="11.33857291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="ICMS"/>
      <TfrxMemoView Name="Memo190" Left="1058.2684" Top="24.45671" Width="26.45671" Height="11.33857291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="IPI"/>
      <TfrxMemoView Name="Memo191" Left="1031.81169" Top="13.11812" Width="52.91342" Height="11.33857291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="ALÍQUOTA %"/>
      <TfrxMemoView Name="Memo14" Left="888.18955" Top="13.33859" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="BASE DE &#13;&#10;CÁLC. ICMS ST"/>
      <TfrxMemoView Name="Memo152" Left="937.32344" Top="13.33859" Width="49.13389" Height="22.67716291" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="VALOR&#13;&#10;ICMS ST"/>
    </TfrxColumnHeader>
    <TfrxChild Name="Child2" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="0" Left="0" Top="884.41002" Width="1084.72511">
      <TfrxLineView Name="Line2" Align="baWidth" Left="0" Top="0" Width="1084.72511" Height="0" Color="0" Frame.Typ="4" Frame.Width="0.5"/>
    </TfrxChild>
    <TfrxOverlay Name="Overlay1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="37.79517795" Left="0" Top="774.80365" Width="1084.72511" OnBeforePrint="Overlay1OnBeforePrint">
      <TfrxMemoView Name="memWatermark" Align="baClient" Left="0" Top="0" Width="1084.72511" Height="37.79517795" Font.Charset="1" Font.Color="14145495" Font.Height="-13" Font.Name="Arial" Font.Style="1" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="HOMOLOGAÇÃO&#13;&#10;&#13;&#10;SEM VALOR FISCAL"/>
    </TfrxOverlay>
    <TfrxChild Name="ChildInformacaoComplementar" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="196.71442733" Left="0" Top="907.0872" Width="1084.72511" Child="CanhotoRodape">
      <TfrxMemoView Name="Memo199" Left="1.25786164" Top="1.15635552" Width="430.86642" Height="13.22834402" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" GapX="0" ParentFont="False" Text="CÁLCULO DO ISSQN"/>
      <TfrxMemoView Name="Memo200" Left="0.25786164" Top="14.27447552" Width="296.69298906" Height="23.81102191" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="INSCRIÇÃO MUNICIPAL"/>
      <TfrxMemoView Name="Memo201" Left="1.25786164" Top="23.72321631" Width="292.91345906" Height="13.98425197" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" ParentFont="False" Text="[Emitente.&#34;IM&#34;]"/>
      <TfrxMemoView Name="Memo202" Left="296.9508507" Top="14.27447552" Width="262.67721906" Height="23.81102191" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="VALOR TOTAL DOS SERVIÇOS"/>
      <TfrxMemoView Name="Memo203" Left="296.9508507" Top="23.72321631" Width="262.67721906" Height="13.98425197" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" Text="[ISSQN.&#34;VServ&#34;]"/>
      <TfrxMemoView Name="Memo204" Left="559.62806975" Top="14.27447552" Width="258.89768906" Height="23.81102191" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="BASE DE CÁLCULO DO ISSQN"/>
      <TfrxMemoView Name="Memo205" Left="559.62806975" Top="23.72321631" Width="258.89768906" Height="13.98425197" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" Text="[ISSQN.&#34;VBC&#34;]"/>
      <TfrxMemoView Name="Memo206" Left="818.74622881" Top="14.27447552" Width="266.45674906" Height="23.81102191" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="VALOR TOTAL DO ISSQN"/>
      <TfrxMemoView Name="Memo207" Left="818.74622881" Top="23.72321631" Width="266.45674906" Height="13.98425197" DisplayFormat.FormatStr="%2.2n" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Times New Roman" Font.Style="0" Frame.Width="0.5" GapX="5" HAlign="haRight" ParentFont="False" Text="[ISSQN.&#34;VISS&#34;]"/>
      <TfrxMemoView Name="Memo208" Left="757.31401541" Top="51.84930552" Width="327.66063553" Height="144.86566605" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="RESERVADO AO FISCO"/>
      <TfrxMemoView Name="Memo209" Left="1.40801541" Top="38.34508513" Width="430.86642" Height="13.22834402" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Arial" Font.Style="1" Frame.Width="0.5" GapX="0" ParentFont="False" Text="DADOS ADICIONAIS"/>
      <TfrxMemoView Name="Memo210" Left="1.26474546" Top="51.84930552" Width="755.90570953" Height="144.86809436" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="INFORMAÇÕES COMPLEMENTARES"/>
      <TfrxMemoView Name="Memo211" Left="3.72461773" Top="61.40836552" Width="752.81719691" Height="132.5994809" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Arial" Font.Style="0" Frame.Width="0.5" GapY="2" ParentFont="False" Text="[InformacoesAdicionais.&#34;OBS&#34;]"/>
    </TfrxChild>
    <TfrxChild Name="CanhotoRodape" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="57.91342" Left="0" Top="1126.29994" Width="1084.72511" Stretched="True">
      <TfrxMemoView Name="Memo217" Left="0" Top="5" Width="971.33921" Height="22.67718" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haBlock" ParentFont="False" WordWrap="False" Text="Recebemos de [Emitente.&#34;XNome&#34;] os produtos e/ou serviços constantes da Nota Fiscal Eletrônica indicada ao lado. &#13;&#10;Destinatário: [Destinatario.&#34;Xnome&#34;] - [Destinatario.&#34;XLgr&#34;], [Destinatario.&#34;Nro&#34;] - [Destinatario.&#34;XBairro&#34;] - [Destinatario.&#34;XMun&#34;] - [Destinatario.&#34;UF&#34;].Emissão: [Identificacao.&#34;DEmi&#34;]  Valor Total: R$ [CalculoImposto.&#34;VNF&#34; #n%2,2n]"/>
      <TfrxMemoView Name="Memo218" Left="143.62214" Top="27.67718" Width="827.71707" Height="30.23624" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="IDENTIFICAÇÃO E ASSINATURA DO RECEBEDOR"/>
      <TfrxMemoView Name="Memo219" Left="0" Top="27.67718" Width="143.62214" Height="30.23624" Font.Charset="1" Font.Color="0" Font.Height="-5" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.5" GapY="2" ParentFont="False" Text="DATA DO RECEBIMENTO"/>
      <TfrxLineView Name="Line3" Align="baWidth" Left="0" Top="1.91342" Width="1084.72511" Height="0" Color="0" Frame.Style="fsDot" Frame.Typ="4" Frame.Width="0.5"/>
      <TfrxMemoView Name="Memo220" Left="971.33921" Top="5" Width="113.38580236" Height="52.91342" Font.Charset="1" Font.Color="0" Font.Height="-16" Font.Name="Arial" Font.Style="1" Frame.Typ="15" Frame.Width="0.5" GapY="2" HAlign="haCenter" ParentFont="False" Text="NF-e"/>
      <TfrxMemoView Name="Memo221" Left="971.33921" Top="22.89765" Width="113.3859" Height="34.01577" Font.Charset="1" Font.Color="0" Font.Height="-12" Font.Name="Times New Roman" Font.Style="1" Frame.Width="0.5" HAlign="haCenter" LineSpacing="6" ParentFont="False" WordWrap="False" Text="Nº [Identificacao.&#34;NNF&#34;]&#13;&#10;Série [Identificacao.&#34;Serie&#34; #n#000]"/>
    </TfrxChild>
  </TfrxReportPage>
  <TfrxReportPage Name="Page2" Orientation="poLandscape" PaperWidth="297" PaperHeight="210" PaperSize="9" LeftMargin="5" RightMargin="5" TopMargin="7" BottomMargin="7" ColumnWidth="0" ColumnPositions.Text="" LargeDesignHeight="True" HGuides.Text="" VGuides.Text="">
    <TfrxMasterData Name="MasterData2" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Height="30.99213819" Left="0" Top="18.89765" Width="1084.72511" Columns="6" ColumnWidth="181.417322834646" ColumnGap="0" DataSetName="Duplicatas" RowCount="0" Stretched="True">
      <TfrxMemoView Name="Memo146" Align="baLeft" Left="0" Top="13.11812" Width="68.03150973" Height="12.09448819" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.1" GapX="3" GapY="0" HAlign="haRight" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="[Duplicatas.&#34;NDup&#34;]"/>
      <TfrxMemoView Name="Memo147" Align="baLeft" Left="68.03150973" Top="13.11812" Width="51.09202358" Height="12.09448819" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.1" GapX="3" GapY="0" HAlign="haRight" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="[Duplicatas.&#34;DVenc&#34;]"/>
      <TfrxMemoView Name="Memo148" Align="baLeft" Left="119.12353331" Top="13.11812" Width="61.98425783" Height="12.09448819" Font.Charset="1" Font.Color="0" Font.Height="-8" Font.Name="Arial" Font.Style="0" Frame.Typ="15" Frame.Width="0.1" GapX="3" GapY="0" HAlign="haRight" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="[Duplicatas.&#34;VDup&#34; #n%2,2n]"/>
      <TfrxMemoView Name="Memo149" Align="baLeft" Left="0" Top="0" Width="68.03150973" Height="12.13014216" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="15" Frame.Width="0.1" GapX="3" GapY="0" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="Número"/>
      <TfrxMemoView Name="Memo54" Align="baLeft" Left="68.03150973" Top="0" Width="51.02662755" Height="12.13014216" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="14" Frame.Width="0.1" GapX="3" GapY="0" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="Vencimento"/>
      <TfrxMemoView Name="Memo81" Align="baLeft" Left="119.05813728" Top="0" Width="61.98425197" Height="12.13014216" Font.Charset="1" Font.Color="0" Font.Height="-9" Font.Name="Times New Roman" Font.Style="0" Frame.Typ="14" Frame.Width="0.1" GapX="3" GapY="0" HAlign="haRight" ParentFont="False" WordWrap="False" VAlign="vaCenter" Text="Valor"/>
    </TfrxMasterData>
  </TfrxReportPage>
</TfrxReport>
