https://www.customs.go.jp/tariff/2020_6/index.htm
Array.from(document.querySelectorAll('table.standard')).map((e) => {
return Array.from(e.querySelectorAll('tr'))
}).flat().map((e) => {
const tds = Array.from(e.querySelectorAll('td'));
return {
"id": e.querySelector('th').textContent.replace(/第/, '').replace(/類/, '').trim().padStart(2, '0'),
"desc": tds[0].textContent,