#!/bin/bash
UA="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36"
curl -sL --http2 --compressed -m 90 \
 -H "User-Agent: $UA" \
 -H 'sec-ch-ua: "Chromium";v="128", "Not;A=Brand";v="24"' \
 -H 'sec-ch-ua-mobile: ?0' -H 'sec-ch-ua-platform: "macOS"' \
 -H 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8' \
 -H 'Accept-Language: pt-BR,pt;q=0.9,en;q=0.8' \
 -H 'Sec-Fetch-Site: same-origin' -H 'Sec-Fetch-Mode: navigate' -H 'Sec-Fetch-Dest: document' \
 -H 'Upgrade-Insecure-Requests: 1' \
 -H 'Referer: https://divulgacandcontas.tse.jus.br/divulga/' \
 "$@"
