{
const file = SRC_FILE;
if (!file) return;
viewof SRC_NAME.value = file.name;
viewof SRC_NAME.dispatchEvent(new Event('input', { bubbles: true }))
const text = await file.text();
viewof SRC_TEXT.value = text;
viewof SRC_TEXT.dispatchEvent(new Event('input', { bubbles: true }))
}