Um erro ocorreu enquanto processava o modelo.
The following has evaluated to null or missing:
==> cur_titulo.email  [in template "20102#20128#227519114" at line 31, column 26]

----
Tip: It's the step after the last dot that caused this error, not those before it.
----
Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----

----
FTL stack trace ("~" means nesting-related):
	- Failed at: #if cur_titulo.email.getData()??  [in template "20102#20128#227519114" at line 31, column 21]
----
1<link rel="stylesheet" href="/documents/20128/227519320/styles.css/d78a77f4-ea60-be14-5bcb-9d922029969c?t=1728939891399"> 
2<section id="sect-busca" class="w-100 bg-cinza-200 acland"> 
3    <div class="container py-3 py-md-5"> 
4        <h5>Selecione seu estado e cidade</h5> 
5        <div class="uf-btns mb-3 w-100 d-flex align-items-center justify-content-start flex-wrap gap-2"> 
6        </div> 
7        <select class="select-cidade mb-3 px-2 py-2 border-cinza-400 border-2 border-radius-2 bg-branco" name="select-cidade" placeholder="Cidade"> 
8            <option value="00">Cidade</option> 
9        </select> 
10        <div class="results-container px-4 py-2 border-2 border-cinza-400 border-radius-2 bg-branco w-100"> 
11            <div class="inner-results-container"> 
12            <div class="loading-anim d-flex justify-content-center align-items-center w-100" style="z-index: 5; top: 0px; left: 0px; height: 570px;"><img height="100" src="https://www.sicoob.com.br/documents/20128/1197390/loading.gif/d4a6bb7d-279d-7175-1f27-9efbe21df911?t=1576273813427" width="100" /></div> 
13            </div> 
14        </div> 
15    </div> 
16</section> 
17<script> 
18let listaPas = [ 
19    <#if titulo.getSiblings()?has_content> 
20        <#list titulo.getSiblings() as cur_titulo> 
21
22            imageUrl: "${cur_titulo.imageUrl.getData()}", 
23            titulo: "${cur_titulo.getData()}", 
24            cooperativa: "${cur_titulo.cooperativa.getData()}", 
25            endereco: "${cur_titulo.endereco.getData()}", 
26            cep: "${cur_titulo.cep.getData()}", 
27            cidade: "${cur_titulo.cidade.getData()}", 
28            estado: "${cur_titulo.estado.getData()}", 
29            telefone: "${cur_titulo.telefone.getData()}", 
30            whatsapp: "${cur_titulo.whatsapp.getData()}", 
31            email: "<#if cur_titulo.email.getData()??>${cur_titulo.email.getData()}</#if>", 
32            horarioAtendimento: "${cur_titulo.horarioAtendimento.getData()}", 
33            site: "${cur_titulo.site.getData()}" 
34        }, 
35        </#list> 
36    </#if> 
37]; 
38</script> 
39<script src="/documents/20128/227519320/script.js/85fce66c-a27c-2d67-cf49-f1b62276d94d?t=1729089132689"></script>