<div dir="ltr"><div>Jose,<br><br></div>Segue uma solução usando o aggregate() (mas já digo que existem funções melhores para isso). Os teus dados estavam um pouco bagunçados, com numeros sendo lidos como texto, por isso mexi (apenas corrigi isso) um pouco neles.<br><br>dados <- structure(list(id = c(49L, 49L, 49L, 64L, 64L, 64L, 23L, 23L, <br>23L, 23L), evento1 = structure(c(1L, 1L, 1L, 2L, 2L, 2L, 3L, <br>3L, 3L, 3L), .Label = c("A", "D", "E"), class = "factor"), nomes = structure(c(3L, <br>3L, 3L, 2L, 2L, 2L, 1L, 1L, 1L, 1L), .Label = c("Anicuns", "Goiânia", <br>"Santo Antônio do Descoberto"), class = "factor"), cons_jan_15 = c(9033.36, <br>NA, NA, NA, NA, 4091.54, 6833.28, NA, NA, NA), valor_jan_15 = c(4848.67, <br>NA, NA, NA, NA, 3076.74, 3772.8, NA, NA, NA), cons_fev_15 = c(13131.13, <br>NA, NA, NA, NA, 5482.15, 8706.81, NA, NA, NA), valor_fev_15 = c(4320.57, <br>NA, NA, NA, NA, 2243.94, 2961.72, NA, NA, NA), cons_mar_15 = c(8121.07, <br>NA, NA, NA, NA, 3380.04, 5524.23, NA, NA, NA), valor_mar_15 = c(4410.8, <br>NA, NA, NA, NA, 2033.13, 3285.14, NA, NA, NA), cons_abr_15 = c(8562.85, <br>NA, NA, NA, NA, 3003.66, 6157.68, NA, NA, NA), valor_abr_15 = c(6241.59, <br>NA, NA, NA, NA, 2250.64, 4381.01, NA, NA, NA), cons_mai_15 = c(8261.5, <br>NA, NA, NA, NA, 3601.44, 5997.78, NA, NA, NA), valor_mai_15 = c(5586.92, <br>NA, NA, NA, NA, 2550.23, 4178.95, NA, NA, NA)), .Names = c("id", <br>"evento1", "nomes", "cons_jan_15", "valor_jan_15", "cons_fev_15", <br>"valor_fev_15", "cons_mar_15", "valor_mar_15", "cons_abr_15", <br>"valor_abr_15", "cons_mai_15", "valor_mai_15"), class = "data.frame", row.names = c(NA, <br>-10L))<br><br>aggregate(. ~ id + evento1 + nomes, FUN = sum, na.rm = TRUE, data = dados) # Dados agregados<br><br>merge(dados, aggregate(. ~ id + evento1 + nomes, FUN = sum, na.rm = TRUE, data = dados), all = TRUE) # Juntando tudo<br></div><div class="gmail_extra"><br><div class="gmail_quote">2017-05-04 16:26 GMT-03:00 Fernando Antonio de souza via R-br <span dir="ltr"><<a href="mailto:r-br@listas.c3sl.ufpr.br" target="_blank">r-br@listas.c3sl.ufpr.br</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto">César <div dir="auto"><br></div><div dir="auto">A variável BD não é um vetor, nem outra estrutura que eu conheça no R, Para montar a tabela com esses dados tenho de digita-los novamente.</div><div dir="auto"><br></div><div dir="auto">Vc copiou e colou esse comando no seu R workspace? Deu certo?</div><div dir="auto"><br></div><div dir="auto">No meu esse comando não criou a variável bd.</div><div dir="auto"><br></div><div dir="auto"><span style="font-family:sans-serif">bd<-"id;evento1;nomes;cons_jan</span><span style="font-family:sans-serif"><wbr>_15 ;valor_jan_15;cons_fev_15;valo</span><span style="font-family:sans-serif"><wbr>r_fev_15;....."</span><br></div><div dir="auto"><span style="font-family:sans-serif"><br></span></div><div dir="auto"><span style="font-family:sans-serif">Isso tá longe de ser um vetor.</span></div><div dir="auto"><span style="font-family:sans-serif"><br></span></div><div dir="auto"><span style="font-family:sans-serif">Quero poder ajudar. Até mesmo pelo desafio. Aprendo muito quando me esforço a ajudar alguém.</span></div><div dir="auto"><span style="font-family:sans-serif">No entanto os dados da forma como ele enviou me obriga perder tempo reorganizando-o e eu não disponho de tal. Por isso solicitei q ele envie de outra forma para q torne mais fácil a tarefa. Através do dput() eu somente tenho de copiar e colar a saída no meu workspace para ter acesso ao banco de dados. Na firma como ele enviou isso é impossível.</span></div><div><div class="h5"><div dir="auto"><span style="font-family:sans-serif"><br></span></div><br><div class="gmail_extra" dir="auto"><br><div class="gmail_quote">Em 04/05/2017 15:19, "Cesar Rabak" <<a href="mailto:cesar.rabak@gmail.com" target="_blank">cesar.rabak@gmail.com</a>> escreveu:<br type="attribution"><blockquote class="m_9195559454842885736quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Fernando,<div>Eu copiei e colei as duas linhas relevantes do post do José e em vez de somente teclar 'dads' dei um summary(dads) e o resultado foi o seguinte:</div><div><div>> summary(dads)</div><div> id evento1 nomes cons_jan_15 </div><div> Min. :23.00 A:3 Anicuns :4 Min. :4092 </div><div> 1st Qu.:23.00 D:3 Goiânia :3 1st Qu.:5462 </div><div> Median :49.00 E:4 Santo Antônio do Descoberto:3 Median :6833 </div><div> Mean :43.10 Mean :6653 </div><div> 3rd Qu.:60.25 3rd Qu.:7933 </div><div> Max. :64.00 Max. :9033 </div><div> NA's :7 </div><div class="m_9195559454842885736quoted-text"><div> valor_jan_15 cons_fev_15 valor_fev_15 cons_mar_15 valor_mar_15 </div></div><div> 3076.74:1 Min. : 5482 Min. :2244 Min. :3380 Min. :2033 </div><div> 3772.8 :1 1st Qu.: 7094 1st Qu.:2603 1st Qu.:4452 1st Qu.:2659 </div><div> 4848.67:1 Median : 8707 Median :2962 Median :5524 Median :3285 </div><div> NA :2 Mean : 9107 Mean :3175 Mean :5675 Mean :3243 </div><div> NA's :5 3rd Qu.:10919 3rd Qu.:3641 3rd Qu.:6823 3rd Qu.:3848 </div><div> Max. :13131 Max. :4321 Max. :8121 Max. :4411 </div><div> NA's :7 NA's :7 NA's :7 NA's :7 </div><div> cons_abr_15 valor_abr_15 cons_mai_15 valor_mai_15 </div><div> Min. :3004 Min. :2251 Min. :3601 Min. :2550 </div><div> 1st Qu.:4581 1st Qu.:3316 1st Qu.:4800 1st Qu.:3365 </div><div> Median :6158 Median :4381 Median :5998 Median :4179 </div><div> Mean :5908 Mean :4291 Mean :5954 Mean :4105 </div><div> 3rd Qu.:7360 3rd Qu.:5311 3rd Qu.:7130 3rd Qu.:4883 </div><div> Max. :8563 Max. :6242 Max. :8262 Max. :5587 </div><div> NA's :7 NA's :7 NA's :7 NA's :7 </div><div>></div></div><div><br></div><div>Nota: para ver melhor selecione a parte acima e mude o fonte para Courier.</div><div><br></div><div>Qual foi sua dificuldade?</div><div><br></div></div><div class="m_9195559454842885736elided-text"><div class="gmail_extra"><br><div class="gmail_quote">2017-05-04 13:00 GMT-03:00 Fernando Antonio de souza <span dir="ltr"><<a href="mailto:nandodesouza@gmail.com" target="_blank">nandodesouza@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div>José,<br></div>Seu comando não é reproduzível. <br></div>Dê um dput(Dados) copie a saída e cole no email, para que possamos refazer e lhe ajudar aqui.<br><br></div>Att<br></div><div class="gmail_extra"><div><div class="m_9195559454842885736m_-6533424801667265201h5"><br><div class="gmail_quote">Em 3 de maio de 2017 22:36, Cesar Rabak via R-br <span dir="ltr"><<a href="mailto:r-br@listas.c3sl.ufpr.br" target="_blank">r-br@listas.c3sl.ufpr.br</a>></span> escreveu:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div>Veja a documentação para o comando agregate, especialmente a interface com uso de "fórmulas".<br><br></div>Talvez você tenha que fazer a concatenação de cada soma.<br><br></div>YMMV<br><br>--<br></div>Cesar Rabak<br></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="m_9195559454842885736m_-6533424801667265201m_2830427619165998528h5">2017-05-03 14:03 GMT-03:00 jose gomes de souza filho Gomes via R-br <span dir="ltr"><<a href="mailto:r-br@listas.c3sl.ufpr.br" target="_blank">r-br@listas.c3sl.ufpr.br</a>></span>:<br></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="m_9195559454842885736m_-6533424801667265201m_2830427619165998528h5"><div dir="ltr"><div><div>Boa Tarde,<br><br></div>Tenho a seguinte base ( uma parte, são várias linhas):<br><br>bd<-"id;evento1;nomes;cons_jan<wbr>_15 ;valor_jan_15;cons_fev_15;valo<wbr>r_fev_15;cons_mar_15;valor_mar<wbr>_15 ;cons_abr_15;valor_abr_15;cons<wbr>_mai_15;valor_mai_15<br>49;A;Santo Antônio do Descoberto;9033.36;4848.67;131<wbr>31.13;4320.57;8121.07;4410.8;8<wbr>562.85;6241.59;8261.5;5586.92<br>49;A;Santo Antônio do Descoberto;NA;NA;NA;NA;NA;NA;N<wbr>A;NA;NA;NA<br>49;A;Santo Antônio do Descoberto;NA;NA;NA;NA;NA;NA;N<wbr>A;NA;NA;NA<br>64;D;Goiânia;NA;NA;NA;NA;NA;NA<wbr>;NA;NA;NA;NA<br>64;D;Goiânia;NA;NA;NA;NA;NA;NA<wbr>;NA;NA;NA;NA<br>64;D;Goiânia;4091.54;3076.74;5<wbr>482.15;2243.94;3380.04;2033.13<wbr>;3003.66;2250.64;3601.44;2550.<wbr>23<br>23;E;Anicuns;6833.28;3772.8;87<wbr>06.81;2961.72;5524.23;3285.14;<wbr>6157.68;4381.01;5997.78;4178.9<wbr>5<br>23;E;Anicuns;NA;NA;NA;NA;NA;NA<wbr>;NA;NA;NA;NA<br>23;E;Anicuns;NA;NA ;NA;NA;NA;NA;NA;NA;NA;NA<br>23;E;Anicuns;NA;NA ;NA;NA;NA;NA;NA;NA;NA;NA"<br>dads <- read.table(header = TRUE, text=bd, sep=";")<br>dads<br><br></div><div>Quero somar as linhas, de modo que:<br><br>
<table class="m_9195559454842885736m_-6533424801667265201m_2830427619165998528m_8549372825459609345m_4718499998654488019gmail-MsoNormalTable" style="width:667pt;margin-left:2.75pt;border-collapse:collapse" border="0" cellpadding="0" cellspacing="0" width="889">
<tbody><tr style="height:15pt">
<td style="width:21pt;border-width:1pt;border-style:solid;border-color:windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">id</span></p>
</td>
<td style="width:38pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">evento1</span></p>
</td>
<td style="width:108pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">nomes</span></p>
</td>
<td style="width:50pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">cons_jan_15</span></p>
</td>
<td style="width:52pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">valor_jan_15</span></p>
</td>
<td style="width:47pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">cons_fev_15</span></p>
</td>
<td style="width:49pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">valor_fev_15</span></p>
</td>
<td style="width:48pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">cons_mar_15</span></p>
</td>
<td style="width:48pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">valor_mar_15</span></p>
</td>
<td style="width:48pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">cons_abr_15</span></p>
</td>
<td style="width:48pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">valor_abr_15</span></p>
</td>
<td style="width:50pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">cons_mai_15</span></p>
</td>
<td style="width:60pt;border-width:1pt 1pt 1pt medium;border-style:solid solid solid none;border-color:windowtext windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">valor_mai_15</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">49</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">A</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">Santo
Antônio do Descoberto</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">9033,36</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4848,67</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">13131,13</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4320,57</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">8121,07</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4410,8</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">8562,85</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">6241,59</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">8261,5</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">5586,92</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">49</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">A</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">Santo
Antônio do Descoberto</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">49</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">A</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">Santo
Antônio do Descoberto</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">49</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">A</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">Santo
Antônio do Descoberto</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">9033,36</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4848,67</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">13131,13</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4320,57</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">8121,07</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4410,8</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">8562,85</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">6241,59</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">8261,5</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">5586,92</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">64</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">D</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black"><span> </span>Goiânia</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">64</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">D</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black"><span> </span>Goiânia</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">64</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">D</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black"><span> </span>Goiânia</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4091,54</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3076,74</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">5482,15</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">2243,94</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3380,04</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">2033,13</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3003,66</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">2250,64</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3601,44</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">2550,23</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">64</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">D</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black"><span> </span>Goiânia</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4091,54</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3076,74</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">5482,15</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">2243,94</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3380,04</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">2033,13</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3003,66</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">2250,64</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3601,44</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">2550,23</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">23</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">E</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">Anicuns</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">6833,28</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3772,8</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">8706,81</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">2961,72</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">5524,23</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3285,14</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">6157,68</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4381,01</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">5997,78</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4178,95</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">23</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">E</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">Anicuns</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">23</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">E</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">Anicuns</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">23</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">E</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">Anicuns</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">0</span></p>
</td>
</tr>
<tr style="height:15pt">
<td style="width:21pt;border-width:medium 1pt 1pt;border-style:none solid solid;border-color:currentcolor windowtext windowtext;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="28">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">23</span></p>
</td>
<td style="width:38pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="51">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">E</span></p>
</td>
<td style="width:108pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="144">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">Anicuns</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">6833,28</span></p>
</td>
<td style="width:52pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="69">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3772,8</span></p>
</td>
<td style="width:47pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="63">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">8706,81</span></p>
</td>
<td style="width:49pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="65">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">2961,72</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">5524,23</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">3285,14</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">6157,68</span></p>
</td>
<td style="width:48pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="64">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4381,01</span></p>
</td>
<td style="width:50pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="67">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">5997,78</span></p>
</td>
<td style="width:60pt;border-width:medium 1pt 1pt medium;border-style:none solid solid none;border-color:currentcolor windowtext windowtext currentcolor;background:yellow none repeat scroll 0% 0%;padding:0cm 3.5pt;height:15pt" nowrap valign="bottom" width="80">
<p class="MsoNormal" style="margin-bottom:0.0001pt;line-height:normal"><span style="font-size:8pt;color:black">4178,95</span></p>
</td>
</tr>
</tbody></table>
<br><br></div><div>Obrigado pela ajuda,<br><br><br></div><div><br><br></div><div><br></div></div>
<br></div></div>______________________________<wbr>_________________<br>
R-br mailing list<br>
<a href="mailto:R-br@listas.c3sl.ufpr.br" target="_blank">R-br@listas.c3sl.ufpr.br</a><br>
<a href="https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br" rel="noreferrer" target="_blank">https://listas.inf.ufpr.br/cgi<wbr>-bin/mailman/listinfo/r-br</a><br>
Leia o guia de postagem (<a href="http://www.leg.ufpr.br/r-br-guia" rel="noreferrer" target="_blank">http://www.leg.ufpr.br/r-br-g<wbr>uia</a>) e forneça código mínimo reproduzível.<br></blockquote></div><br></div>
<br>______________________________<wbr>_________________<br>
R-br mailing list<br>
<a href="mailto:R-br@listas.c3sl.ufpr.br" target="_blank">R-br@listas.c3sl.ufpr.br</a><br>
<a href="https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br" rel="noreferrer" target="_blank">https://listas.inf.ufpr.br/cgi<wbr>-bin/mailman/listinfo/r-br</a><br>
Leia o guia de postagem (<a href="http://www.leg.ufpr.br/r-br-guia" rel="noreferrer" target="_blank">http://www.leg.ufpr.br/r-br-g<wbr>uia</a>) e forneça código mínimo reproduzível.<br></blockquote></div><br><br clear="all"><br></div></div><span class="m_9195559454842885736m_-6533424801667265201HOEnZb"><font color="#888888">-- <br><div class="m_9195559454842885736m_-6533424801667265201m_2830427619165998528gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><span>==============================<wbr>===========<br>
Fernando Souza<br>
Zootecnista, DSc. Produção e Alimentação Animal<br>
Celular: (31)99796-8781 (Vivo)<br>
<a href="mailto:e-mail%3Anandodesouza@gmail.com" target="_blank">E-mail:nandodesouza@gmail.com</a><br>
Lattes: <a href="http://lattes.cnpq.br/6519538815038307" target="_blank">http://lattes.cnpq.br/65195388<wbr>15038307</a><br>
Blog: <a href="https://producaoanimalcomr.wordpress.com/" target="_blank">https://producaoanimalcomr.wor<wbr>dpress.com/</a><br>
==============================<wbr>============</span></div></div></div></div></div></div></div></div></div></div>
</font></span></div>
</blockquote></div><br></div>
</div></blockquote></div><br></div></div></div></div>
<br>______________________________<wbr>_________________<br>
R-br mailing list<br>
<a href="mailto:R-br@listas.c3sl.ufpr.br">R-br@listas.c3sl.ufpr.br</a><br>
<a href="https://listas.inf.ufpr.br/cgi-bin/mailman/listinfo/r-br" rel="noreferrer" target="_blank">https://listas.inf.ufpr.br/<wbr>cgi-bin/mailman/listinfo/r-br</a><br>
Leia o guia de postagem (<a href="http://www.leg.ufpr.br/r-br-guia" rel="noreferrer" target="_blank">http://www.leg.ufpr.br/r-br-<wbr>guia</a>) e forneça código mínimo reproduzível.<br></blockquote></div><br></div>