;(function () {
addIcons()
function addIcons() {
if (document.readyState === 'loading')
return document.addEventListener('DOMContentLoaded', addIcons)
const svg = document.body.appendChild(
document.createElementNS('http://www.w3.org/2000/svg', 'svg'),
)
svg.innerHTML = `MMNEPVFCICPMFPCPTTAAATR`
svg.style.display = 'none'
if (location.protocol === 'file:') updateUseElements()
}
function updateUseElements() {
document.querySelectorAll('use').forEach((el) => {
if (el.getAttribute('href').includes('#icon-')) {
el.setAttribute('href', el.getAttribute('href').replace(/.*#/, '#'))
}
})
}
})()