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 37, column 22]

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