Sean McLemon | Notes

Home | Czech | Blog | GitHub | Advent Of Code | Notes


2020-05-10 - Deanonymising SMWS casks with Greasemonkey

(original .ipynb)

The Scotch Malt Whisky Society visit various whisky distilleries across the country selecting barrels to release to their members under their own label. They have interesting names like Muesli Mosh Pit or All-purpose wasp repellent or A choc ice melting on rhubarb crumble. However it's not immediately obvious which distillery each whisky comes from, all you have to go on is a "cask code":

SMWS before my script

SMWS members have over the years deciphered this however. The first part of this code identifies the distillery, so for "All-purpose wasp repellent" we can look up code "88" somewhere (many places list this, like here, here or here and find that it refers to Speyburn distillery. This can be a bit tedious though, so I picked up a tool I last touched many years ago - Greasemonkey - and wrote a little user-script to replace the actual Distillery name.

SMWS after my script

Some might argue that part of the fun is in not knowing this information, which is fair enough. But it's a fun exercise. Anyway here's the source code - the lookup and my stupidly verbose style makes it a bit long:

window.addEventListener('load', function() {
  
	const bottles = document.getElementsByClassName("cask-number");  
  
  if (bottles.length === 0) {
    return;
  }
  
  for (let bottle of bottles) {
    bottle.innerText = getDistilleryName(bottle.innerText);
  }
}, false);


function getDistilleryName(bottleElementText) {
  
	const caskNoLeader = "CASK NO. "
	const unknownDistillery = "Unknown Distillery";
  
  if (bottleElementText.indexOf(caskNoLeader) !== 0)  {
    return unknownDistillery + "(" + bottleElementText + ")";
  }
  
  const bottleFullCodeText = bottleElementText.substr(caskNoLeader.length);
  const bottleFullCode = bottleFullCodeText.split(".");
  
  if (bottleFullCode.length !== 2) {
  	return unknownDistillery + " (Cask " + bottleFullCodeText + ")";
  }
  
  const distilleryCode = bottleFullCode[0];
  const caskNumber = bottleFullCode[1];
  const distillery = codeLookup[distilleryCode];
  
  return (distillery == null ? unknownDistillery : distillery.distilleryName) + " (Cask " + bottleFullCodeText + ")";
}

const codeLookup = {
    "1": { type: "Single Malt", distilleryName: "Glenfarclas", locale: "Speyside", comment: "" },
    "2": { type: "Single Malt", distilleryName: "Glenlivet", locale: "Speyside", comment: "" },
    "3": { type: "Single Malt", distilleryName: "Bowmore", locale: "Islay", comment: "" },
    "4": { type: "Single Malt", distilleryName: "Highland Park", locale: "Islands", comment: "" },
    "5": { type: "Single Malt", distilleryName: "Auchentoshan", locale: "Lowland", comment: "" },
    "6": { type: "Single Malt", distilleryName: "Macduff", locale: "Highland", comment: "Glen Deveron" },
    "7": { type: "Single Malt", distilleryName: "Longmorn", locale: "Speyside", comment: "" },
    "8": { type: "Single Malt", distilleryName: "Tamdhu", locale: "Speyside", comment: "" },
    "9": { type: "Single Malt", distilleryName: "Glen Grant", locale: "Speyside", comment: "" },
    "10": { type: "Single Malt", distilleryName: "Bunnahabhain", locale: "Islay", comment: "" },
    "11": { type: "Single Malt", distilleryName: "Tomatin", locale: "Highland", comment: "" },
    "12": { type: "Single Malt", distilleryName: "BenRiach", locale: "Speyside", comment: "" },
    "13": { type: "Single Malt", distilleryName: "Dalmore", locale: "Highland", comment: "" },
    "14": { type: "Single Malt", distilleryName: "Talisker", locale: "Islands", comment: "" },
    "15": { type: "Single Malt", distilleryName: "Glenfiddich", locale: "Speyside", comment: "" },
    "16": { type: "Single Malt", distilleryName: "Glenturret", locale: "Highland", comment: "" },
    "17": { type: "Single Malt", distilleryName: "Scapa", locale: "Islands", comment: "" },
    "18": { type: "Single Malt", distilleryName: "Inchgower", locale: "Speyside", comment: "" },
    "19": { type: "Single Malt", distilleryName: "Glen Garioch", locale: "Highland", comment: "" },
    "20": { type: "Single Malt", distilleryName: "Inverleven", locale: "Lowland", comment: "Demolished" },
    "21": { type: "Single Malt", distilleryName: "Glenglassaugh", locale: "Highland", comment: "" },
    "22": { type: "Single Malt", distilleryName: "Glenkinchie", locale: "Lowland", comment: "" },
    "23": { type: "Single Malt", distilleryName: "Bruichladdich", locale: "Islay", comment: "" },
    "24": { type: "Single Malt", distilleryName: "Macallan", locale: "Speyside", comment: "" },
    "25": { type: "Single Malt", distilleryName: "Rosebank", locale: "Lowland", comment: "Decommissioned" },
    "26": { type: "Single Malt", distilleryName: "Clynelish", locale: "Highland", comment: "" },
    "27": { type: "Single Malt", distilleryName: "Springbank", locale: "Campbeltown", comment: "" },
    "28": { type: "Single Malt", distilleryName: "Tullibardine", locale: "Highland", comment: "" },
    "29": { type: "Single Malt", distilleryName: "Laphroaig", locale: "Islay", comment: "" },
    "30": { type: "Single Malt", distilleryName: "Glenrothes", locale: "Speyside", comment: "" },
    "31": { type: "Single Malt", distilleryName: "Isle of Jura", locale: "Islands", comment: "" },
    "32": { type: "Single Malt", distilleryName: "Edradour", locale: "Highland", comment: "" },
    "33": { type: "Single Malt", distilleryName: "Ardbeg", locale: "Islay", comment: "" },
    "34": { type: "Single Malt", distilleryName: "Tamnavulin", locale: "Speyside", comment: "" },
    "35": { type: "Single Malt", distilleryName: "Glen Moray", locale: "Speyside", comment: "" },
    "36": { type: "Single Malt", distilleryName: "Benrinnes", locale: "Speyside", comment: "" },
    "37": { type: "Single Malt", distilleryName: "Cragganmore", locale: "Speyside", comment: "" },
    "38": { type: "Single Malt", distilleryName: "Caperdonich", locale: "Speyside", comment: "Demolished" },
    "39": { type: "Single Malt", distilleryName: "Linkwood", locale: "Speyside", comment: "" },
    "40": { type: "Single Malt", distilleryName: "Balvenie", locale: "Speyside", comment: "" },
    "41": { type: "Single Malt", distilleryName: "Dailuaine", locale: "Speyside", comment: "" },
    "42": { type: "Single Malt", distilleryName: "Tobermory", locale: "Islands", comment: "Includes Ledaig (peated)" },
    "43": { type: "Single Malt", distilleryName: "Port Ellen", locale: "Islay", comment: "Demolished" },
    "44": { type: "Single Malt", distilleryName: "Craigellachie", locale: "Speyside", comment: "" },
    "45": { type: "Single Malt", distilleryName: "Dallas Dhu", locale: "Speyside", comment: "Closed / museum" },
    "46": { type: "Single Malt", distilleryName: "Glenlossie", locale: "Speyside", comment: "" },
    "47": { type: "Single Malt", distilleryName: "Benromach", locale: "Speyside", comment: "" },
    "48": { type: "Single Malt", distilleryName: "Balmenach", locale: "Speyside", comment: "" },
    "49": { type: "Single Malt", distilleryName: "St. Magdalene", locale: "Lowland", comment: "Closed" },
    "50": { type: "Single Malt", distilleryName: "Bladnoch", locale: "Lowland", comment: "" },
    "51": { type: "Single Malt", distilleryName: "Bushmills", locale: "Northern Ireland", comment: "" },
    "52": { type: "Single Malt", distilleryName: "Old Pulteney", locale: "Highland", comment: "" },
    "53": { type: "Single Malt", distilleryName: "Caol Ila", locale: "Islay", comment: "" },
    "54": { type: "Single Malt", distilleryName: "Aberlour", locale: "Speyside", comment: "" },
    "55": { type: "Single Malt", distilleryName: "Royal Brackla", locale: "Highland", comment: "" },
    "56": { type: "Single Malt", distilleryName: "Coleburn", locale: "Speyside", comment: "Closed" },
    "57": { type: "Single Malt", distilleryName: "Glen Mhor", locale: "Highland", comment: "Closed" },
    "58": { type: "Single Malt", distilleryName: "Strathisla", locale: "Speyside", comment: "" },
    "59": { type: "Single Malt", distilleryName: "Teaninich", locale: "Highland", comment: "" },
    "60": { type: "Single Malt", distilleryName: "Aberfeldy", locale: "Highland", comment: "" },
    "61": { type: "Single Malt", distilleryName: "Brora", locale: "Highland", comment: "Closed" },
    "62": { type: "Single Malt", distilleryName: "Glenlochy", locale: "Highland", comment: "Closed" },
    "63": { type: "Single Malt", distilleryName: "Glentauchers", locale: "Speyside", comment: "" },
    "64": { type: "Single Malt", distilleryName: "Mannochmore", locale: "Speyside", comment: "" },
    "65": { type: "Single Malt", distilleryName: "Imperial", locale: "Speyside", comment: "Demolished" },
    "66": { type: "Single Malt", distilleryName: "Ardmore", locale: "Highland", comment: "" },
    "67": { type: "Single Malt", distilleryName: "Banff", locale: "Speyside", comment: "Demolished" },
    "68": { type: "Single Malt", distilleryName: "Blair Athol", locale: "Highland", comment: "" },
    "69": { type: "Single Malt", distilleryName: "Glen Albyn", locale: "Highland", comment: "Demolished" },
    "70": { type: "Single Malt", distilleryName: "Balblair", locale: "Highland", comment: "" },
    "71": { type: "Single Malt", distilleryName: "Glenburgie", locale: "Speyside", comment: "" },
    "72": { type: "Single Malt", distilleryName: "Miltonduff", locale: "Speyside", comment: "" },
    "73": { type: "Single Malt", distilleryName: "Aultmore", locale: "Speyside", comment: "" },
    "74": { type: "Single Malt", distilleryName: "North Port", locale: "Highland", comment: "Closed" },
    "75": { type: "Single Malt", distilleryName: "Glenury / Glenury Royal", locale: "Highland", comment: "Closed" },
    "76": { type: "Single Malt", distilleryName: "Mortlach", locale: "Speyside", comment: "" },
    "77": { type: "Single Malt", distilleryName: "Glen Ord", locale: "Highland", comment: "" },
    "78": { type: "Single Malt", distilleryName: "Ben Nevis", locale: "Highland", comment: "" },
    "79": { type: "Single Malt", distilleryName: "Deanston", locale: "Highland", comment: "" },
    "80": { type: "Single Malt", distilleryName: "Glen Spey", locale: "Speyside", comment: "" },
    "81": { type: "Single Malt", distilleryName: "Glen Keith", locale: "Speyside", comment: "" },
    "82": { type: "Single Malt", distilleryName: "Glencadam", locale: "Highland", comment: "" },
    "83": { type: "Single Malt", distilleryName: "Convalmore", locale: "Speyside", comment: "Closed" },
    "84": { type: "Single Malt", distilleryName: "Glendullan", locale: "Speyside", comment: "" },
    "85": { type: "Single Malt", distilleryName: "Glen Elgin", locale: "Speyside", comment: "" },
    "86": { type: "Single Malt", distilleryName: "Glenesk", locale: "Highland", comment: "Closed" },
    "87": { type: "Single Malt", distilleryName: "Millburn", locale: "Highland", comment: "Closed" },
    "88": { type: "Single Malt", distilleryName: "Speyburn", locale: "Speyside", comment: "" },
    "89": { type: "Single Malt", distilleryName: "Tomintoul", locale: "Speyside", comment: "" },
    "90": { type: "Single Malt", distilleryName: "Pittyvaich", locale: "Speyside", comment: "Closed" },
    "91": { type: "Single Malt", distilleryName: "Dufftown", locale: "Speyside", comment: "" },
    "92": { type: "Single Malt", distilleryName: "Lochside", locale: "Highland", comment: "Closed" },
    "93": { type: "Single Malt", distilleryName: "Glen Scotia", locale: "Campbeltown", comment: "" },
    "94": { type: "Single Malt", distilleryName: "Fettercairn", locale: "Highland", comment: "" },
    "95": { type: "Single Malt", distilleryName: "Auchroisk", locale: "Speyside", comment: "" },
    "96": { type: "Single Malt", distilleryName: "GlenDronach", locale: "Highland", comment: "" },
    "97": { type: "Single Malt", distilleryName: "Littlemill", locale: "Lowland", comment: "Closed" },
    "98": { type: "Single Malt", distilleryName: "Inverleven", locale: "Lowland", comment: "Closed" },
    "99": { type: "Single Malt", distilleryName: "Glenugie", locale: "Highland", comment: "Closed" },
    "100": { type: "Single Malt", distilleryName: "Strathmill", locale: "Speyside", comment: "" },
    "101": { type: "Single Malt", distilleryName: "Knockando", locale: "Speyside", comment: "" },
    "102": { type: "Single Malt", distilleryName: "Dalwhinnie", locale: "Highland", comment: "" },
    "103": { type: "Single Malt", distilleryName: "Royal Lochnagar", locale: "Highland", comment: "" },
    "104": { type: "Single Malt", distilleryName: "Glenburgie (Glencraig)", locale: "Speyside", comment: "" },
    "105": { type: "Single Malt", distilleryName: "Tormore", locale: "Speyside", comment: "" },
    "106": { type: "Single Malt", distilleryName: "Cardhu", locale: "Speyside", comment: "" },
    "107": { type: "Single Malt", distilleryName: "Glenallachie", locale: "Speyside", comment: "" },
    "108": { type: "Single Malt", distilleryName: "Allt-a-Bhainne", locale: "Speyside", comment: "" },
    "109": { type: "Single Malt", distilleryName: "Miltonduff (Mosstowie)", locale: "Speyside", comment: "" },
    "110": { type: "Single Malt", distilleryName: "Oban", locale: "Highland", comment: "" },
    "111": { type: "Single Malt", distilleryName: "Lagavulin", locale: "Islay", comment: "" },
    "112": { type: "Single Malt", distilleryName: "Loch Lomond (Inchmurrin)", locale: "Highland", comment: "" },
    "113": { type: "Single Malt", distilleryName: "Braeval (Braes of Glenlivet)", locale: "Speyside", comment: "" },
    "114": { type: "Single Malt", distilleryName: "Springbank (Longrow)", locale: "Campbeltown", comment: "" },
    "115": { type: "Single Malt", distilleryName: "Knockdhu (AnCnoc)", locale: "Highland", comment: "" },
    "116": { type: "Single Malt", distilleryName: "Yoichi", locale: "Japan", comment: "" },
    "117": { type: "Single Malt", distilleryName: "Cooley (Unpeated)", locale: "Ireland", comment: "" },
    "118": { type: "Single Malt", distilleryName: "Cooley / Connemara (Peated)", locale: "Ireland", comment: "" },
    "119": { type: "Single Malt", distilleryName: "Yamazaki", locale: "Japan", comment: "" },
    "120": { type: "Single Malt", distilleryName: "Hakushu", locale: "Japan", comment: "" },
    "121": { type: "Single Malt", distilleryName: "Isle of Arran", locale: "Islands", comment: "" },
    "122": { type: "Single Malt", distilleryName: "Loch Lomond (Croftengea)", locale: "Highland", comment: "" },
    "123": { type: "Single Malt", distilleryName: "Glengoyne", locale: "Highland", comment: "" },
    "124": { type: "Single Malt", distilleryName: "Miyagikyo", locale: "Japan", comment: "" },
    "125": { type: "Single Malt", distilleryName: "Glenmorangie", locale: "Highland", comment: "" },
    "126": { type: "Single Malt", distilleryName: "Springbank (Hazelburn)", locale: "Campbeltown", comment: "" },
    "127": { type: "Single Malt", distilleryName: "Bruichladdich (Port Charlotte)", locale: "Islay", comment: "" },
    "128": { type: "Single Malt", distilleryName: "Penderyn", locale: "Wales", comment: "" },
    "129": { type: "Single Malt", distilleryName: "Kilchoman", locale: "Islay", comment: "" },
    "130": { type: "Single Malt", distilleryName: "Chichibu", locale: "Japan", comment: "" },
    "131": { type: "Single Malt", distilleryName: "Hanyu", locale: "Japan", comment: "" },
    "132": { type: "Single Malt", distilleryName: "Karuizawa", locale: "Japan", comment: "" },
    "133": { type: "Single Malt", distilleryName: "Westland", locale: "Washington, USA", comment: "" },
    "134": { type: "Single Malt", distilleryName: "Paul John", locale: "India", comment: "" },
    "135": { type: "Single Malt", distilleryName: "Loch Lomond (Inchmoan)", locale: "Highland", comment: "" },
    "136": { type: "Single Malt", distilleryName: "Eden Mill", locale: "Lowland", comment: "" },
    "137": { type: "Single Malt", distilleryName: "St. George’s (The English Whisky Co.)", locale: "England", comment: "" },
    "138": { type: "Single Malt", distilleryName: "Nantou", locale: "Taiwan", comment: "" },
    "139": { type: "Single Malt", distilleryName: "Kavalan", locale: "Taiwan", comment: "" },
    "140": { type: "Single Malt", distilleryName: "Balcones", locale: "Texas, USA", comment: "" },
    "141": { type: "Single Malt", distilleryName: "Fary Lochan", locale: "Denmark", comment: "" },
    "G1": { type: "Grain", distilleryName: "North British", locale: "Lowland", comment: "" },
    "G2": { type: "Grain", distilleryName: "Carsebridge", locale: "Lowland", comment: "Closed" },
    "G3": { type: "Grain", distilleryName: "Caledonian", locale: "Lowland", comment: "Closed" },
    "G4": { type: "Grain", distilleryName: "Cameronbridge", locale: "Lowland", comment: "" },
    "G5": { type: "Grain", distilleryName: "Invergordon", locale: "Highland", comment: "" },
    "G6": { type: "Grain", distilleryName: "Port Dundas", locale: "Lowland", comment: "Closed" },
    "G7": { type: "Grain", distilleryName: "Girvan", locale: "Lowland", comment: "" },
    "G8": { type: "Grain", distilleryName: "Cambus", locale: "Lowland", comment: "Closed" },
    "G9": { type: "Grain", distilleryName: "Loch Lomond", locale: "Highland", comment: "" },
    "G10": { type: "Grain", distilleryName: "Strathclyde", locale: "Lowland", comment: "" },
    "G11": { type: "Grain", distilleryName: "Nikka Coffey Grain", locale: "Japan", comment: "" },
    "G12": { type: "Grain", distilleryName: "Nikka Coffey Malt", locale: "Japan", comment: "This is NOT grain whisky, but w/e" },
    "G13": { type: "Grain", distilleryName: "Chita", locale: "Japan", comment: "" },
    "G14": { type: "Grain", distilleryName: "Dumbarton", locale: "Lowland", comment: "Closed" },
    "G15": { type: "Grain", distilleryName: "Loch Lomond (Rhosdhu)", locale: "Highland", comment: "" },
    "B1": { type: "Bourbon", distilleryName: "Heaven Hill", locale: "Kentucky, USA", comment: "" },
    "B2": { type: "Bourbon", distilleryName: "New Bernheim", locale: "Kentucky, USA", comment: "" },
    "B3": { type: "Bourbon", distilleryName: "Rock Town", locale: "Arkansas, USA", comment: "" },
    "B4": { type: "Bourbon", distilleryName: "FEW Spirits", locale: "Illinois, USA", comment: "" },
    "B5": { type: "Bourbon", distilleryName: "George Dickel (Cascade Hollow)", locale: "Tennessee, USA", comment: "" },
    "RW1": { type: "Rye", distilleryName: "FEW Spirits", locale: "Illinois, USA", comment: "" },
    "R1": { type: "Rum", distilleryName: "Monymusk", locale: "Jamaica", comment: "" },
    "R2": { type: "Rum", distilleryName: "Demerara Distillers (El Dorado)", locale: "Guyana", comment: "" },
    "R3": { type: "Rum", distilleryName: "West Indies Rum", locale: "Barbados", comment: "" },
    "R4": { type: "Rum", distilleryName: "Trinidad Distillers (Angostura)", locale: "Trinidad", comment: "" },
    "R5": { type: "Rum", distilleryName: "Long Pond", locale: "Jamaica", comment: "" },
    "R6": { type: "Rum", distilleryName: "Foursquare", locale: "Barbados", comment: "" },
    "R7": { type: "Rum", distilleryName: "Hampden", locale: "Jamaica", comment: "" },
    "R8": { type: "Rum", distilleryName: "Compañía Licorera de Nicaragua (Flor de Caña)", locale: "Nicaragua", comment: "" },
    "R9": { type: "Rum", distilleryName: "Varela Hermanos (Ron Abuelo)", locale: "Panama", comment: "" },
    "R10": { type: "Rum", distilleryName: "Trinidad Distiller’s", locale: "Trinidad", comment: "" },
    "R11": { type: "Rum", distilleryName: "Worthy Park", locale: "Jamaica", comment: "" },
    "R12": { type: "Rum", distilleryName: "Travellers", locale: "Belize", comment: "" },
    "R13": { type: "Rum", distilleryName: "Caroni", locale: "Trinidad", comment: "" },
    "A1": { type: "Armagnac", distilleryName: "Chateau de Lacaze", locale: "France", comment: "" },
    "A2": { type: "Armagnac", distilleryName: "Domaine Laguille", locale: "France", comment: "" },
    "A3": { type: "Armagnac", distilleryName: "J. Goudoulin (Veuve Goudoulin)", locale: "France", comment: "" },
    "A4": { type: "Armagnac", distilleryName: "Domaine d’Espérance", locale: "France", comment: "" },
    "A5": { type: "Armagnac", distilleryName: "Chateau de Laubade", locale: "France", comment: "" },
    "A6": { type: "Armagnac", distilleryName: "Domaine Lasalle", locale: "France", comment: "" },
    "C1": { type: "Cognac", distilleryName: "Camus", locale: "France", comment: "" },
    "C2": { type: "Cognac", distilleryName: "Domaine de Chez Guérive", locale: "France", comment: "" },
    "C3": { type: "Cognac", distilleryName: "Louis Royer", locale: "France", comment: "" },
    "C4": { type: "Cognac", distilleryName: "Distillery D’Aumagne", locale: "France", comment: "" },
    "C5": { type: "Cognac", distilleryName: "Tiffon Cognac", locale: "France", comment: "" },
    "C6": { type: "Cognac", distilleryName: "M & H Bonneau", locale: "France", comment: "" },
    "GN1": { type: "Gin", distilleryName: "Glasgow Distillery Company", locale: "Scotland", comment: "" },
    "GN2": { type: "Gin", distilleryName: "Strathearn Distillers", locale: "Scotland", comment: "" },
    "GN3": { type: "Gin", distilleryName: "The Borders Distillery", locale: "Scotland", comment: "" }
}