{"version":3,"file":"year-BVGOV752.js","sources":["../../../src/js/data/injection-keys.ts","../../../src/js/utility/vue/inject-strict.ts","../../../src/js/components/AlbumsHeader.vue","../../../src/js/components/IntersectionObserver.vue","../../../src/js/utility/math/calculate-aspect-ratio.ts","../../../src/js/components/ImgSrcset.vue","../../../src/js/utility/dom/check-if-has-specific-class-name.ts","../../../src/js/utility/dom/add-class-name.ts","../../../src/js/utility/dom/remove-class-name.ts","../../../src/js/utility/dom/pause-html5-video.ts","../../../src/js/utility/dom/play-html5-video.ts","../../../src/js/utility/keyboard/trap-keyboard-focus.ts","../../../src/js/components/ModalDialog.vue","../../../src/js/data/video-providers.ts","../../../src/js/components/VideoOverlay.vue","../../../src/js/utility/string/convert-to-slug.ts","../../../src/js/components/KudosAlbumsLoop.vue","../../../src/js/data/2010.ts","../../../src/js/data/2011.ts","../../../src/js/data/2012.ts","../../../src/js/data/2013.ts","../../../src/js/data/2014.ts","../../../src/js/data/2015.ts","../../../src/js/data/2016.ts","../../../src/js/data/2017.ts","../../../src/js/data/2018.ts","../../../src/js/data/2019.ts","../../../src/js/data/2020.ts","../../../src/js/data/2021.ts","../../../src/js/data/2022.ts","../../../src/js/data/2023.ts","../../../src/js/data/2024.ts","../../../src/js/composables/useAlbumData.ts","../../../src/js/components/PreviousYears.vue","../../../src/js/components/AlbumsLoop.vue","../../../src/js/components/GlobalFooter.vue","../../../src/js/pages/CalendarYear.vue"],"sourcesContent":["import { InjectionKey, ComputedRef } from 'vue';\nimport { Year } from '../types/album';\n\nexport const ACTIVE_YEAR: InjectionKey> = Symbol('ACTIVE_YEAR');\nexport const CURRENT_PAGE: InjectionKey> = Symbol('CURRENT_PAGE');","import { inject, InjectionKey } from 'vue';\n\nexport function injectStrict (key: InjectionKey, fallback?: T) {\n const resolved = inject(key, fallback);\n\n if (!resolved) {\n throw new Error(`Could not resolve ${key.description}`);\n }\n\n return resolved;\n}\n","\n\n\n","\n\n\n","/**\n * Returns the aspect ratio of the width and height parameters provided\n *\n * @version 1.0.0\n * @param width Width of the element\n * @param height Height of the element\n * @returns Aspect ratio in the format 16:9\n * @example\n *\n * return calculateAspectRatio(1920, 1080);\n * // => '16 / 9'\n */\nconst calculateAspectRatio = (width: number, height: number) => {\n const greatestCommonDivisor = (a: number, b: number): number => {\n return b\n ? greatestCommonDivisor(b, a % b)\n : a;\n };\n\n const divisor = greatestCommonDivisor(width, height);\n\n return `${width / divisor} / ${height / divisor}`;\n};\n\nexport default calculateAspectRatio;\n","\n\n\n\n","/**\n * Checks if an element has a particular class name applied\n *\n * @version 1.0.0\n * @param element DOM element to check if CSS class is applied on\n * @param className Name of CSS class to check is applied\n * @returns Whether the specified class name exists\n * @example\n *\n * checkIfHasSpecificClassName(this.$el, 'u-bg-wood-smoke');\n */\nconst checkIfHasSpecificClassName = (element: HTMLElement, className: string) => {\n if (element.classList) {\n return element.classList.contains(className);\n }\n\n return !!element.className.match(new RegExp(`(\\\\s|^)${className}(\\\\s|$)`));\n};\n\nexport default checkIfHasSpecificClassName;\n","import checkIfHasSpecificClassName from './check-if-has-specific-class-name';\n\n/**\n * Adds a CSS class to specified element\n *\n * @version 1.0.0\n * @param element DOM element to apply the class on\n * @param className Name of CSS class to be applied\n * @example\n *\n * addClassName(document.body, 'u-overflow-h');\n * // => \n */\nconst addClassName = (element: HTMLElement, className: string) => {\n if (element.classList) {\n element.classList.add(className);\n } else if (!checkIfHasSpecificClassName(element, className)) {\n element.className += ` ${className}`;\n }\n};\n\nexport default addClassName;\n","import checkIfHasSpecificClassName from './check-if-has-specific-class-name';\n\n/**\n * Remove a CSS class name from the element\n *\n * @version 1.0.0\n * @param element DOM element to remove the class from\n * @param className Name of CSS class to remove\n * @example\n *\n * removeClassName(this.$el, 'u-bg-wood-smoke');\n */\nconst removeClassName = (element: HTMLElement, className: string) => {\n if (element.classList) {\n element.classList.remove(className);\n } else if (checkIfHasSpecificClassName(element, className)) {\n const reg = new RegExp(`(\\\\s|^)${className}(\\\\s|$)`);\n element.className = element.className.replace(reg, ' ');\n }\n};\n\nexport default removeClassName;\n","const HTML5_VIDEOS = document.getElementsByTagName('video');\n\n/**\n * Pause playback of HTML5 video\n *\n * @version 1.0.0\n * @param videos optional argument\n * @example\n *\n * pauseHTML5Video();\n */\nconst pauseHTML5Video = (videos? : HTMLVideoElement[]) => {\n const PAUSE_VIDEOS = videos ? videos : HTML5_VIDEOS;\n\n if (PAUSE_VIDEOS) {\n Array.from(PAUSE_VIDEOS).forEach((video) => {\n video.pause();\n });\n }\n};\n\nexport default pauseHTML5Video;\n","const HTML5_VIDEOS = document.getElementsByTagName('video');\n\n/**\n * Resume playback of HTML5 video\n *\n * @version 1.0.0\n * @param videos optional argument\n * @example\n *\n * playHTML5Video();\n */\nconst playHTML5Video = (videos? : HTMLVideoElement[]) => {\n const PLAY_VIDEOS = videos ? videos : HTML5_VIDEOS;\n\n if (PLAY_VIDEOS) {\n Array.from(PLAY_VIDEOS).forEach((video) => {\n video.play();\n });\n }\n};\n\nexport default playHTML5Video;\n","/**\n * Trap focus within a DOM node, e.g. for use in full page modals.\n *\n * @version 1.0.0\n * @param {HTMLElement} element DOM node to create a focusable elements list from\n * @param event Keyboard event\n * @example\n *\n * trapKeyboardFocus(this.$refs.menu, event);\n */\nconst trapKeyboardFocus = (element: any, event: KeyboardEvent) => {\n\n // Get all the focusable elements on the page\n const focusableElements = element.querySelectorAll('a[href]:not([disabled]), button:not([disabled]), textarea:not([disabled]), input[type=\"text\"]:not([disabled]), input[type=\"email\"]:not([disabled]), input[type=\"password\"]:not([disabled]), input[type=\"number\"]:not([disabled]), input[type=\"search\"]:not([disabled]), input[type=\"tel\"]:not([disabled]), input[type=\"radio\"]:not([disabled]), input[type=\"checkbox\"]:not([disabled]), select:not([disabled]), iframe, [tabindex]');\n\n // Filter out hidden focusable elements\n const filteredFocusableElements = [...focusableElements].filter(el => getComputedStyle(el).display !== 'none');\n\n // Get the first focusable element\n const firstFocusableElement = filteredFocusableElements[0];\n\n // Get the last focusable element\n const lastFocusableElement = filteredFocusableElements[filteredFocusableElements.length - 1];\n\n if (event.shiftKey) {\n if (document.activeElement === firstFocusableElement) {\n lastFocusableElement.focus();\n event.preventDefault();\n }\n } else if (document.activeElement === lastFocusableElement) {\n firstFocusableElement.focus();\n event.preventDefault();\n }\n};\n\nexport default trapKeyboardFocus;\n","\n\n\n","export const PROVIDER_YOUTUBE = 'youtube';\nexport const PROVIDER_VIMEO = 'vimeo';","\n\n\n","/**\n * Convert a string to a url slug. For example the string\n * 'Serif raises the bar with huge update to Affinity apps' would become\n * 'serif-raises-the-bar-with-huge-update-to-affinity-apps'.\n *\n * @version 1.0.0\n * @param text String to convert to slug\n * @returns Returns a url slug\n * @example\n *\n * convertToSlug('Serif raises the bar with huge update to Affinity apps')\n * // => 'serif-raises-the-bar-with-huge-update-to-affinity-apps'\n *\n */\nconst convertToSlug = (text: string) => {\n return text.toString().toLowerCase()\n\n // Replace spaces with hyphens\n .replace(/\\s+/g, '-')\n\n // Replace underscores with hyphens\n .replace(/_/g, '-')\n\n // Remove all non-word characters\n .replace(/[^\\w\\-]+/g, '')\n\n // Replace multiple hyphens with a single hyphen\n .replace(/\\-\\-+/g, '-')\n\n // Trim hyphens from start of text\n .replace(/^-+/, '')\n\n // Trim hyphens from end of text\n .replace(/-+$/, '');\n};\n\nexport default convertToSlug;\n","\n\n\n","export const year2010 = {\n id : 2010,\n title : 'Albums of 2010',\n bg_color : '#b29f79',\n text_color : '#2c1d0a',\n description : 'As another great year for music draws to a close, it’s time for the obligatory end of year list. So here it is, my top albums/EPs of 2010. As always feel free to get on x to discuss, disagree with, or disparage my choices.',\n albums : [\n {\n id : 1,\n artist : 'The Gaslight Anthem',\n title : 'American Slang',\n review : '“American Slang” delivers spectacularly on all expected fronts. Everything that was great about The ”59 Sound is here, but the sound is even bigger, epic without getting blustery.',\n source : 'Uncut',\n source_url : 'https://www.uncut.co.uk/reviews/the-gaslight-anthem-american-slang-4798/',\n listen_spotify : '1JKl5fvfr8M1ddREC3SIBm',\n listen_apple_music : 'american-slang/1456175176',\n listen_to : 'Bring It On',\n video_id : 'J-ZN7NyPfb4',\n alt : 'Group shot of The Gaslight Anthem, a meta roof shelter and trees can be seen in the background.',\n photo_credit : 'Danny Clinch'\n },\n {\n id : 2,\n artist : 'Bad Books',\n title : 'Bad Books',\n review : 'What elevates Turn Out The Lights is that it’s sensory as well as earnest, personally destabilising while artfully assured; it oscillates in the spilling synaesthesia of panic attacks, the dizzying clarity of epiphany, the paralysing futility of depressive episodes, the unfathomable locus of being okay.',\n source : 'The 405',\n source_url : 'https://www.thefourohfive.com/music/review/review-julien-baker-takes-a-vitally-human-approach-to-a-range-of-weighty-topics-on-her-striking-second-album-turn-out-the-lights-150',\n listen_spotify : '1WomS0aSQizPAUq1nki9ZJ',\n listen_apple_music : 'bad-books-10th-anniversary-edition/1533666434',\n listen_to : 'You Wouldn’t Have to Ask',\n video_id : '1-KcNBY83CI',\n alt : 'Andy Hull and Kevin Devine pose backstage, with Andy looking right to Kevin and Kevin who has his hand on Andy’s chest looks at the camera.',\n photo_credit : 'Brian Manley'\n },\n {\n id : 3,\n artist : 'Belle and Sebastian',\n title : 'Write About Love',\n review : 'Overall, Belle and Sebastian Write About Love plays like a greatest hits, though not necessarily of former songs.',\n source : 'PopMatters',\n source_url : 'https://www.popmatters.com/131956-belle-sebastian-belle-sebastian-write-about-love-2496128474.html',\n listen_spotify : '6aNVX2r52dj0oGrMcHkS4p',\n listen_apple_music : 'write-about-love/1544417045',\n listen_to : 'I Want the World to Stop',\n video_id : 'wjW3tZhdnyw',\n alt : 'The members of Belle and Sebastian in a dark alleyway, a red neon glow at the end of the alley lights the scene.',\n photo_credit : 'Søren Solkær'\n },\n {\n id : 4,\n artist : 'Hellogoodbye',\n title : 'Would It Kill You?',\n review : 'What elevates Turn Out The Lights is that it’s sensory as well as earnest, personally destabilising while artfully assured; it oscillates in the spilling synaesthesia of panic attacks, the dizzying clarity of epiphany, the paralysing futility of depressive episodes, the unfathomable locus of being okay.',\n source : 'The 405',\n source_url : 'https://www.thefourohfive.com/music/review/review-julien-baker-takes-a-vitally-human-approach-to-a-range-of-weighty-topics-on-her-striking-second-album-turn-out-the-lights-150',\n listen_spotify : '4dHXV7pJs6d8N9ACAMzhIw',\n listen_apple_music : 'would-it-kill-you/1444016544',\n listen_to : 'Finding Something to Do',\n video_id : 'uE5yNTXuTWQ',\n alt : 'Hellogoodbye singer Forrest Kline in a red suit against a blue background with a disco ball to the right of his head. In his hand is a drink with a big flower straw..',\n photo_credit : 'Andrew-Lee'\n },\n {\n id : 5,\n artist : 'Motion City Soundtrack',\n title : 'My Dinosaur Life',\n review : '“My Dinosaur Life” combines the mayhem and melody of “Commit To This Memory”, while maintaining the pop sensibilities they showed on “Even If It Kills Me”. It has the ferocity of a debut album while maintaining the expertise that seasoned bands possess.',\n source : 'Chorus.fm',\n source_url : 'https://chorus.fm/reviews/motion-city-soundtrack-my-dinosaur-life/',\n listen_spotify : '71VL2I4UPRHcXRk51bCmuu',\n listen_apple_music : 'my-dinosaur-life/345578624',\n listen_to : 'A Life Less Ordinary (Need a Little Help)',\n video_id : 'emwKtNc7884',\n alt : 'Black and white group shot of the members of Motion City Soundtrack with a waterfall in the background.',\n photo_credit : 'Joe Lemke'\n },\n {\n id : 6,\n artist : 'Vampire Weekend',\n title : 'Contra',\n review : 'Vampire Weekend’s second album, “Contra”, finds the New York-based band pushing its eclectic, intellectual indie rock further using a mash-up of musical genres, clever wordplay and emotional heft.',\n source : 'The 405',\n source_url : 'https://www.thefourohfive.com/music/review/review-julien-baker-takes-a-vitally-human-approach-to-a-range-of-weighty-topics-on-her-striking-second-album-turn-out-the-lights-150',\n listen_spotify : '2zcMgU6PAlLUDQMqZcxxUU',\n listen_apple_music : 'contra-bonus-track-version/340465551',\n listen_to : 'Cousins',\n video_id : '1e0u11rgd9Q',\n alt : 'Vampire Weekend singer Ezra Koenig performing live with a yellow Epiphone guitar in hand.',\n photo_credit : 'Josh Brasted'\n },\n {\n id : 7,\n artist : 'Laura Marling',\n title : 'I Speak Because I Can',\n review : 'The result is her first triumph: a collection of literary and emotional songs to have you whooping with joy or fighting off tears, with tunes that deliver new riches with each listen.',\n source : 'The Guardian',\n source_url : 'https://www.theguardian.com/music/2010/mar/18/laura-marling-speak-because-can',\n listen_spotify : '7x98osNfh0aUookqE7MMQ1',\n listen_apple_music : 'alas-i-cannot-swim/451178666',\n listen_to : 'Devil’s Spoke',\n video_id : 'GDJPRRUH07k',\n alt : 'Laura Marling sat at the stairs facing left with her head resting against the railing.',\n photo_credit : ''\n },\n {\n id : 8,\n artist : 'The National',\n title : 'High Violet',\n review : 'Its charms are subtle, its grip soft and easily shrugged by those who choose to pay it only passing attention. Live with it a while, though, and High Violet rewards patience with songs that colour one’s waking existence, becoming vivid night-time narratives when curtains are drawn.',\n source : 'BBC',\n source_url : 'http://www.bbc.co.uk/music/reviews/3ncg/',\n listen_spotify : '4vBvnlmaiyoEf04hLe5SLo',\n listen_apple_music : 'high-violet-bonus-track-version/368054407',\n listen_to : 'Bloodbuzz Ohio',\n video_id : 'WgIp1Y2akRA',\n alt : 'The National lead singer Matt Berninger live on stage with a microphone in hand against a purple backdrop.',\n photo_credit : 'Richard Isaac'\n },\n {\n id : 9,\n artist : 'Ash',\n title : 'A-Z Vol. 1 & 2',\n review : 'What elevates Turn Out The Lights is that it’s sensory as well as earnest, personally destabilising while artfully assured; it oscillates in the spilling synaesthesia of panic attacks, the dizzying clarity of epiphany, the paralysing futility of depressive episodes, the unfathomable locus of being okay.',\n source : 'The 405',\n source_url : 'https://www.thefourohfive.com/music/review/review-julien-baker-takes-a-vitally-human-approach-to-a-range-of-weighty-topics-on-her-striking-second-album-turn-out-the-lights-150',\n listen_spotify : '7zDUgaU5SXe0S65NCRBgKO',\n listen_apple_music : 'the-a-z-series/576685857',\n listen_to : 'War With Me',\n video_id : 'rHjsPBBug4I',\n alt : 'Members of Ash surrounded by bikes at the side of a beach house.',\n photo_credit : ''\n },\n {\n id : 10,\n artist : 'Jenny and Johnny',\n title : 'I’m Having Fun Now',\n review : 'Rice’s soft Scottish-American voice blends beautifully with Lewis’s powerful, clear one. When they take turns singing, you hang on for them to come back together again. These are love songs with sharp edges that keep the sweetness mysterious.',\n source : 'NOW Magazine',\n source_url : 'https://nowtoronto.com/music/album-reviews/jenny-and-johnny',\n listen_spotify : '3Tma0D5vBup8Y0vldEyHuW',\n listen_apple_music : 'im-having-fun-now/386491172',\n listen_to : 'Big Wave',\n video_id : 'GQAF5xLOliA',\n alt : 'Jonathon Rice and Jenny Lewis embracing on a street against a telegraph pole. Jenny has “Jenny and Johnny” written in red down her leg..',\n photo_credit : ''\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Bruce Springsteen',\n title : 'The Promise',\n listen_to : 'Save My Love',\n video_id : 'TWC54lTvszA'\n },\n {\n id : 12,\n artist : 'Jimmy Eat World',\n title : 'Invented',\n listen_to : 'My Best Theory',\n video_id : 'lk47ecL1z5w'\n },\n {\n id : 13,\n artist : 'Black Rebel Motorcycle Club',\n title : 'Beat the Devil’s Tattoo',\n listen_to : 'Beat the Devil’s Tattoo',\n video_id : 'iW1UUekcb8s'\n },\n {\n id : 14,\n artist : 'Dead Weather',\n title : 'Sea of Cowards',\n listen_to : 'Die by the Drop',\n video_id : 'K0YI0UUazkU'\n },\n {\n id : 15,\n artist : 'Arcade Fire',\n title : 'The Suburbs',\n listen_to : 'The Suburbs',\n video_id : '5Euj9f3gdyM'\n }, {\n id : 16,\n artist : 'You, Me, and Everyone We Know',\n title : 'Some Things Don’t Wash Out',\n listen_to : 'Some Things Don’t Wash Out',\n video_id : 'CM1xQnQQt6E'\n },\n {\n id : 17,\n artist : 'Spoon',\n title : 'Transference',\n listen_to : 'Got Nuffin',\n video_id : 'b9EZGuCEbG8'\n },\n {\n id : 18,\n artist : 'Alkaline Trio',\n title : 'This Addiction',\n listen_to : 'This Addiction',\n video_id : 'GNS4CR7vP4c'\n },\n {\n id : 19,\n artist : 'Manic Street Preachers',\n title : 'Postcards From a Young Man',\n listen_to : '(It’s Not War) Just the End of Love',\n video_id : 'Jz2gvAApY2A'\n },\n {\n id : 20,\n artist : 'Angels & Airwaves',\n title : 'LOVE',\n listen_to : 'Shove',\n video_id : 'HQ61bMEK2Ak'\n }\n ]\n};\n","export const year2011 = {\n id : 2011,\n title : 'Albums of 2011',\n bg_color : '#211e4c',\n text_color : '#fff',\n description : 'As another great year for music draws to a close, it’s time for the obligatory end of year list. So here it is, my top albums/EPs of 2011. As always feel free to get on X to discuss, disagree with, or disparage my choices.',\n albums : [\n {\n id : 1,\n artist : 'Kevin Devine',\n title : 'Between the Concrete and Clouds',\n review : 'What elevates Turn Out The Lights is that it’s sensory as well as earnest, personally destabilising while artfully assured; it oscillates in the spilling synaesthesia of panic attacks, the dizzying clarity of epiphany, the paralysing futility of depressive episodes, the unfathomable locus of being okay.',\n source : 'The 405',\n source_url : 'https://www.thefourohfive.com/music/review/review-julien-baker-takes-a-vitally-human-approach-to-a-range-of-weighty-topics-on-her-striking-second-album-turn-out-the-lights-150',\n listen_spotify : '444FebvAFBUsqXvNZf1dGz',\n listen_apple_music : 'between-the-concrete-clouds/1521431104',\n listen_to : 'Between the Concrete and Clouds',\n video_id : 'CXLse_g5aMM',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 2,\n artist : 'The Horrible Crowes',\n title : 'Elsie',\n review : 'Elsie is nostalgic, contemplative, and persistent; it’s also one of 2011’s best.',\n source : 'Sputnikmusic',\n source_url : 'https://www.sputnikmusic.com/review/45415/The-Horrible-Crowes-Elsie/',\n listen_spotify : '0GQSbszM3mbhFyuD4fmFmL',\n listen_apple_music : 'elsie/1456171638',\n listen_to : 'Behold the Hurricane',\n video_id : 'UdQ32Bhv308',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 3,\n artist : 'The Decemberists',\n title : 'The King Is Dead',\n review : 'The Decemberists blend rock and folk well and the songwriting crafts pastoral and emotional imaginery into tight-knit, attractive songs. This album is an unexpected treat.',\n source : 'The Telegraph',\n source_url : 'https://www.telegraph.co.uk/culture/music/worldfolkandjazz/8267211/The-Decemberists-The-King-Is-Dead-CD-Review.html',\n listen_spotify : '7jVbclpGnrcY03n49rOFXp',\n listen_apple_music : 'the-king-is-dead/715554884',\n listen_to : 'Calamity Song',\n video_id : 'ni7T18UUBUI',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 4,\n artist : 'Bright Eyes',\n title : 'The People’s Key',\n review : 'The band has pulled off the difficult trick of sculpting a record concerned with weighty, complex themes and made it sound like the breeziest, most effortless thing in the world: a collection of fleet, shimmering pop songs; a master-class in sonic splendour; a bold, beautiful and brilliant reinvention that should surprise as many as it will enthrall.',\n source : 'Drowned In Sound',\n source_url : 'https://drownedinsound.com/releases/15930/reviews/4141914',\n listen_spotify : '5TXVpg3WyDe1Pn4IZe7Iz4',\n listen_apple_music : 'the-peoples-key/410850039',\n listen_to : 'Jejune Stars',\n video_id : 'Jfez-kItLLo',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 5,\n artist : 'Saves the Day',\n title : 'Daybreak',\n review : 'Daybreak is successful on two levels: in the way it touches on the best elements of Saves the Day’s past works, it’s a welcome entry point for new listeners; and with its freshness, it assures established fans that the band is still invigorated after going at it for over a decade.',\n source : 'AllMusic',\n source_url : 'https://www.allmusic.com/album/daybreak-mw0002194143',\n listen_spotify : '6149QZsg0pm6wP9yuRHssh',\n listen_apple_music : 'daybreak/1443489313',\n listen_to : 'Deranged & Desperate',\n video_id : 'lJoYCbnknUw',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 6,\n artist : 'Feist',\n title : 'Metals',\n review : 'It’s this insistence on resolutely following her instincts that makes this record so lustily appealing from top to bottom.',\n source : 'Uncut',\n source_url : 'https://www.uncut.co.uk/reviews/feist-metals-3625/',\n listen_spotify : '3vxiBAlJUDqePZboDhd3I5',\n listen_apple_music : 'metals/1440772917',\n listen_to : 'How Come You Never Go There',\n video_id : 'I2uVRMBD5RY',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 7,\n artist : 'St. Vincent',\n title : 'Strange Mercy',\n review : 'The modulations and switches in pace remain as bold as ever, and Clark has a knack for memorable melody and a winning voice with shades of Kate Bush and Leslie Feist.',\n source : 'The Observer',\n source_url : 'https://www.theguardian.com/music/2011/sep/11/st-vincent-strange-mercy-review',\n listen_spotify : '5x7cI8aHmaqk03KKl1Auh1',\n listen_apple_music : 'strange-mercy/453456287',\n listen_to : 'Cheerleader',\n video_id : 'LEY9GJAm8bA',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 8,\n artist : 'Radiohead',\n title : 'The King of Limbs',\n review : 'What elevates Turn Out The Lights is that it’s sensory as well as earnest, personally destabilising while artfully assured; it oscillates in the spilling synaesthesia of panic attacks, the dizzying clarity of epiphany, the paralysing futility of depressive episodes, the unfathomable locus of being okay.',\n source : 'The 405',\n source_url : 'https://www.thefourohfive.com/music/review/review-julien-baker-takes-a-vitally-human-approach-to-a-range-of-weighty-topics-on-her-striking-second-album-turn-out-the-lights-150',\n listen_spotify : '3P17levwUPzmFfLYdAK3A7',\n listen_apple_music : 'the-king-of-limbs/1109714965',\n listen_to : 'Lotus Flower',\n video_id : 'cfOa1a8hYP8',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 9,\n artist : 'Yellowcard',\n title : 'When You’re Through Thinking, Say Yes',\n review : 'Overall, whatever you think of their craft, they’ve mastered it; this writer’s mentioned almost every track on the album to hold up this review--and that’s got to be a good sign.',\n source : 'Rock Sound',\n source_url : 'https://www.rocksound.tv/reviews/read/yellowcard-when-youre-through-thinking-say-yes?',\n listen_spotify : '5OM6yWHis0MATzshFTzWSH',\n listen_apple_music : 'when-youre-through-thinking-say-yes-deluxe-version/485528147',\n listen_to : 'For You, and Your Denial',\n video_id : '3zRy4RCadL8',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 10,\n artist : 'Frank Turner',\n title : 'England Keep My Bones',\n review : 'England Keep My Bones finally gets the combination right and stands right alongside Love, Ire and Song as one of Frank Turner’s best works.',\n source : 'Sputnikmusic',\n source_url : 'https://www.sputnikmusic.com/review/43651/Frank-Turner-England-Keep-My-Bones/',\n listen_spotify : '5hPtRDbF7pssD6V94ot93i',\n listen_apple_music : 'england-keep-my-bones-deluxe-edition/1485053291',\n listen_to : 'If I Ever Stray',\n video_id : 'VcWz_8Y9Bd0',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Manchester Orchestra',\n title : 'Simple Math',\n listen_to : 'Simple Math',\n video_id : 'PaMiVDZu_T4'\n },\n {\n id : 12,\n artist : 'Death Cab for Cutie',\n title : 'Codes and Keys',\n listen_to : 'Stay Young, Go Dancing',\n video_id : 'wFW2ZlyVXEw'\n },\n {\n id : 13,\n artist : 'Laura Marling',\n title : 'A Creature I Don’t Know',\n listen_to : 'Sophia',\n video_id : 'j-TMl5oCRjk'\n },\n {\n id : 14,\n artist : 'R.E.M.',\n title : 'Collapse into Now',\n listen_to : 'ÜBerlin',\n video_id : 'ZITh-XIikgI'\n },\n {\n id : 15,\n artist : 'We Are the In Crowd',\n title : 'Best Intentions',\n listen_to : 'Rumor Mill',\n video_id : '_JgNTQbDvlw'\n },\n {\n id : 16,\n artist : 'Rise Against',\n title : 'Endgame',\n listen_to : 'Make It Stop (September’s Children)',\n video_id : 'XP4clbHc4Xg'\n },\n {\n id : 17,\n artist : 'The Dangerous Summer',\n title : 'War Paint',\n listen_to : 'War Paint',\n video_id : 'dCnI3Xjjvzo'\n },\n {\n id : 18,\n artist : 'Mansions',\n title : 'Dig Up the Dead',\n listen_to : ' City Don’t Care',\n video_id : 'CNlp_W5pKRE'\n },\n {\n id : 19,\n artist : 'Noah and the Whale',\n title : 'Last Night on Earth',\n listen_to : 'Give It All Back',\n video_id : 'yod4AbnZ7Bk'\n },\n {\n id : 20,\n artist : 'Dan Andriano in the Emergency Room',\n title : 'Hurricane Season',\n listen_to : 'Hollow Sounds',\n video_id : 'ARNgdgpwcug'\n }\n ]\n};\n","export const year2012 = {\n id : 2012,\n title : 'Albums of 2012',\n bg_color : '#e9c9e8',\n text_color : '#06457a',\n description : 'As another great year for music draws to a close, it’s time for the obligatory end of year list. So here it is, my top albums/EPs of 2012. As always feel free to get on X to discuss, disagree with, or disparage my choices.',\n albums : [\n {\n id : 1,\n artist : 'Fiona Apple',\n title : ' The Idler Wheel…',\n review : 'Another singular album from a truly idiosyncratic voice, Apple has once again invited us into her lushly conflicted inner monologue.',\n source : 'Under the Radar',\n source_url : 'http://www.undertheradarmag.com/reviews/the_idler_wheel_is_wiser_than_the_driver_of_the_screw_and_whipping_cords_wi/',\n listen_spotify : '6B5favhKTShFTjRLsKIUfa',\n listen_apple_music : 'idler-wheel-is-wiser-than-driver-screw-whipping-cords/1462213924',\n listen_to : 'Every Single Night',\n video_id : 'bIlLq4BqGdg',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 2,\n artist : 'Jack White',\n title : 'Blunderbuss',\n review : 'While Blunderbuss appears to be definite off-loading of emotional baggage, it also feels like a move toward rebirth.',\n source : 'Mojo',\n source_url : 'https://www.mojo4music.com/',\n listen_spotify : '6eSJ0lu0uwtiqXkP7Qrrno',\n listen_apple_music : 'blunderbuss/519241047',\n listen_to : 'Love Interruption',\n video_id : 'iErNRBTPbEc',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 3,\n artist : 'The Gaslight Anthem',\n title : 'Handwritten',\n review : 'The lyrics are a little more personal, the band a little more developed - it seems that this is the start of a new and exciting chapter for The Gaslight Anthem.',\n source : 'DIY Magazine',\n source_url : 'https://diymag.com/archive/the-gaslight-anthem-handwritten/',\n listen_spotify : '3et3fAEh76eTu4O99WTtfY',\n listen_apple_music : 'handwritten-deluxe-edition/1440810498',\n listen_to : '45',\n video_id : 'oST77VRHXt0',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 4,\n artist : 'Bruce Springsteen',\n title : 'Wrecking Ball',\n review : 'The most despairing, confrontational and musically turbulent album Bruce Springsteen has ever made.',\n source : 'Rolling Stone',\n source_url : 'https://www.rollingstone.com/music/music-album-reviews/wrecking-ball-205688/',\n listen_spotify : '75kN1qUWvE10QcnpE6nEsM',\n listen_apple_music : 'wrecking-ball/581786624',\n listen_to : 'Rocky Ground',\n video_id : 'qPmIIXXv0d8',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 5,\n artist : 'Bad Books',\n title : 'II',\n review : 'On II, Bad Books have proven that they are more than Manchester Orchestra with Kevin Devine or vice versa by dropping any ego and making a cohesive record. Thankfully, all of us reap the benefit.',\n source : 'Paste Magazine',\n source_url : 'https://www.pastemagazine.com/music/bad-books/bad-books-bad-books-ii/',\n listen_spotify : '4HimCXZJ1qrzMGNbHwj97y',\n listen_apple_music : 'ii/1278428711',\n listen_to : 'Forest Whitaker',\n video_id : 'FePBV9F9vwI',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 6,\n artist : 'Bob Dylan',\n title : 'Tempest',\n review : 'Tempest is fantastic, but being impressed by Dylan is old hat. That he still finds ways to surprise us is an achievement beyond all comprehension.',\n source : 'American Songwriter',\n source_url : 'https://americansongwriter.com/bob-dylan-tempest/',\n listen_spotify : '3LnS0XKSzd2TFoagESGUw3',\n listen_apple_music : 'tempest/544403750',\n listen_to : 'Duquesne Whistle',\n video_id : 'mns9VeRguys',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 7,\n artist : 'Screaming Females',\n title : 'Ugly',\n review : 'Not only does Ugly set a new standard for the band, it’s also a grubby, triumphant call to action.',\n source : 'The A.V. Club',\n source_url : 'https://music.avclub.com/screaming-females-ugly-1798172230',\n listen_spotify : '63mOF4rcNutr1Aaj9QPgJK',\n listen_apple_music : 'ugly/785737929',\n listen_to : 'It All Means Nothing',\n video_id : 'Ism4J7QvsZQ',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 8,\n artist : 'David Byrne & St. Vincent',\n title : 'Love This Giant',\n review : 'The duo successfully crosses Clark’s talent of romanticizing morbidity through melody and Byrne’s knack for eccentric pop by using a prominent horn section both as a bridge between the two and an unfamiliar element that distinguishes this as a partnered effort.',\n source : 'Prefix Magazine',\n source_url : 'https://www.prefixmag.com/reviews/love-this-giant/68660/',\n listen_spotify : '4Pu1Qeg26ACk8ZH00bk3Q4',\n listen_apple_music : 'love-this-giant/546417871',\n listen_to : 'Who',\n video_id : 'hpPYKJAnwUo',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 9,\n artist : 'Matt Pryor',\n title : 'May Day',\n review : 'What elevates Turn Out The Lights is that it’s sensory as well as earnest, personally destabilising while artfully assured; it oscillates in the spilling synaesthesia of panic attacks, the dizzying clarity of epiphany, the paralysing futility of depressive episodes, the unfathomable locus of being okay.',\n source : 'The 405',\n source_url : 'https://www.thefourohfive.com/music/review/review-julien-baker-takes-a-vitally-human-approach-to-a-range-of-weighty-topics-on-her-striking-second-album-turn-out-the-lights-150',\n listen_spotify : '1fY3hObg7QWMYsE8zM13ve',\n listen_apple_music : 'may-day-bonus-track-version/487036459',\n listen_to : 'Don’t Let the Bastards Get You Down',\n video_id : '8FVakNkeNAM',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 10,\n artist : 'Right Away, Great Captain!',\n title : 'The Church of the Good Thief',\n review : 'What elevates Turn Out The Lights is that it’s sensory as well as earnest, personally destabilising while artfully assured; it oscillates in the spilling synaesthesia of panic attacks, the dizzying clarity of epiphany, the paralysing futility of depressive episodes, the unfathomable locus of being okay.',\n source : 'The 405',\n source_url : 'https://www.thefourohfive.com/music/review/review-julien-baker-takes-a-vitally-human-approach-to-a-range-of-weighty-topics-on-her-striking-second-album-turn-out-the-lights-150',\n listen_spotify : '6mCotg8AmjUM3ViiEyoeew',\n listen_apple_music : 'the-church-of-the-good-thief/534629641',\n listen_to : 'We Were Made Out of Lightning',\n video_id : '3wgGKpdv1t8',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Yellowcard',\n title : 'Southern Air',\n listen_to : 'Always Summer',\n video_id : 'kIeDk7NptVo'\n },\n {\n id : 12,\n artist : 'Band of Skulls',\n title : 'Sweet Sour',\n listen_to : 'Bruises',\n video_id : 'bBgSw4GstGs'\n },\n {\n id : 13,\n artist : 'Willy Mason',\n title : 'Carry On',\n listen_to : 'I Got Gold',\n video_id : 'VxyD-0O-Z48'\n },\n {\n id : 14,\n artist : 'Brendan Benson',\n title : 'What Kind of World',\n listen_to : 'Happy Most of the Time',\n video_id : 'xzn-I1Tyuo8'\n },\n {\n id : 15,\n artist : 'Sharon Van Etten',\n title : 'Tramp',\n listen_to : 'Magic Chords',\n video_id : 'WywIFyWyPTI'\n }, {\n id : 16,\n artist : 'Benjamin Gibbard',\n title : 'Former Lives',\n listen_to : 'Teardrop Windows',\n video_id : '90ocplIH7I4'\n },\n {\n id : 17,\n artist : 'M. Ward',\n title : 'A Wasteland Companion',\n listen_to : 'The First Time I Ran Away',\n video_id : 'oBTIHh-cXj0'\n },\n {\n id : 18,\n artist : 'Motion City Soundtrack',\n title : 'Go',\n listen_to : 'True Romance',\n video_id : 'gwd9a75g_js'\n },\n {\n id : 19,\n artist : 'Say Anything',\n title : 'Anarchy, My Dear',\n listen_to : 'Burn a Miracle',\n video_id : '7ZHXFA4mK64'\n },\n {\n id : 20,\n artist : 'Feeder',\n title : 'Generation Freakshow',\n listen_to : 'Borders',\n video_id : 'oUN3xCgauEA'\n }\n ]\n};\n","export const year2013 = {\n id : 2013,\n title : 'Albums of 2013',\n description : 'As another great year for music draws to a close, it’s time for the obligatory end of year list. So here it is, my top albums/EPs of 2013. As always feel free to get on X to discuss, disagree with, or disparage my choices.',\n albums : [\n {\n id : 1,\n artist : 'Vampire Weekend',\n title : 'Modern Vampires of the City',\n review : 'Ultimately, Modern Vampires of the City is more thoughtful than it is dark, balancing its more serious moments with a lighter touch and more confidence than they’ve shown before.',\n source : 'AllMusic',\n source_url : 'https://www.allmusic.com/album/modern-vampires-of-the-city-mw0002489977',\n listen_spotify : '1GXMNFfoHF4sN7lG8gZq1j',\n listen_apple_music : 'modern-vampires-of-the-city/613184430',\n listen_to : 'Diane Young',\n video_id : 'oG6lTQNW04I',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : 'Monika Mogi'\n },\n {\n id : 2,\n artist : 'Kevin Devine',\n title : 'Bubblegum / Bulldozer',\n review : 'Whatever the contributing factors to “Bubblegum” and “Bulldozer”, it’s clear this is Devine brimming with confidence and energy--and to remarkable effect.',\n source : 'DIY Magazine',\n source_url : 'https://diymag.com/archive/kevin-devine-bubblegum-bulldozer',\n listen_spotify : '5Y1uHNFmlcMWv1z7dArzLu',\n listen_apple_music : 'bulldozer/1521430400',\n listen_to : 'Little Bulldozer',\n video_id : 'nWKDbu-ucdg',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : 'Shervin Lainez'\n },\n {\n id : 3,\n artist : 'Saves the Day',\n title : 'Saves the Day',\n review : 'Saves the Day are as tight and melodically brilliant as ever, but the previous trilogy’s anguish and inner turmoil seem to have been replaced by warm sentimentality, declarations of undying love, and smart discourse on relationships and the human condition, with the occasional killer curveball.',\n source : 'Alternative Press',\n source_url : 'https://www.altpress.com/reviews/saves_the_day_saves_the_day/',\n listen_spotify : '1zeZ6yxImhO8jSltZrA94m',\n listen_apple_music : 'saves-the-day/692093043',\n listen_to : 'In the In Between',\n video_id : 'T2dV_g2GFmw',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 4,\n artist : 'Jimmy Eat World',\n title : 'Damage',\n review : 'Eight albums into their career, Jimmy Eat World still know how to generate and craft some brilliant songs, but most importantly, they continue to demonstrate a keen sense for how to connect with any audience.',\n source : 'Sputnikmusic',\n source_url : 'https://www.sputnikmusic.com/review/57362/Jimmy-Eat-World-Damage/',\n listen_spotify : '3cTKLglWH2XfDfbwqXvaGo',\n listen_apple_music : 'damage/636268673',\n listen_to : 'I Will Steal You Back',\n video_id : 'Rn8kmgv8xjM',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : 'Jimi Giannatti'\n },\n {\n id : 5,\n artist : 'Nine Inch Nails',\n title : 'Hesitation Marks',\n review : 'It’s obvious on the rest of the album that the fear of living isn’t holding Reznor back anymore. This outlook has given a huge boost to NIN’s creativity, and helped the group re-emerge as a relevant, vital, and still weird band.',\n source : 'The A.V. Club',\n source_url : 'https://music.avclub.com/nine-inch-nails-hesitation-marks-1798177841',\n listen_spotify : '26m96TIXkNAiL4fl4aiFvd',\n listen_apple_music : 'hesitation-marks/655150305',\n listen_to : 'Came Back Haunted',\n video_id : '1RN6pT3zL44',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 6,\n artist : 'Mansions',\n title : 'Doom Loop',\n review : 'What elevates Turn Out The Lights is that it’s sensory as well as earnest, personally destabilising while artfully assured; it oscillates in the spilling synaesthesia of panic attacks, the dizzying clarity of epiphany, the paralysing futility of depressive episodes, the unfathomable locus of being okay.',\n source : 'The 405',\n source_url : 'https://www.thefourohfive.com/music/review/review-julien-baker-takes-a-vitally-human-approach-to-a-range-of-weighty-topics-on-her-striking-second-album-turn-out-the-lights-150',\n listen_spotify : '04TQkDiJdsX4DPo4IGus6j',\n listen_apple_music : 'doom-loop/1524405690',\n listen_to : 'Flowers In My Teeth',\n video_id : 'mUnd-s1KRbE',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 7,\n artist : 'Laura Marling',\n title : 'Once I Was An Eagle',\n review : 'Marling is never likely to be a fixture of the pop charts. But Once I Was An Eagle is a masterpiece, and, at 23, she’s still only getting started.',\n source : 'The Telegraph',\n source_url : 'https://www.telegraph.co.uk/culture/music/cdreviews/10070762/Laura-Marling-Once-I-Was-An-Eagle-review.html',\n listen_spotify : '35He6RuwS8C2KjG067Gobl',\n listen_apple_music : 'once-i-was-an-eagle/623401745',\n listen_to : 'Master Hunter',\n video_id : 'fO2gm29rI7E',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : 'Justin Tyler Close'\n },\n {\n id : 8,\n artist : 'The Front Bottoms',\n title : 'Talon of the Hawk',\n review : 'An album that’s engrossing and just a little hard to break away from--but in a good way, of course.',\n source : 'AllMusic',\n source_url : 'https://www.allmusic.com/album/talon-of-the-hawk-mw0002526485',\n listen_spotify : '5vX1q4HCPZUKBTFBvFSTsc',\n listen_apple_music : 'talon-of-the-hawk/1518089263',\n listen_to : 'Funny You Should Ask',\n video_id : 'YxZ5B1lVXPc',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 9,\n artist : 'The National',\n title : 'Trouble Will Find Me',\n review : 'Like the rest of the National catalog, Trouble Will Find Me is subtly insinuating; at first it seems almost free of hooks, then six listens later it’s difficult to get it unstuck. It burrows and then resides, first easy to forget then basically impossible.',\n source : 'The A.V. Club',\n source_url : 'https://music.avclub.com/the-national-trouble-will-find-me-1798176862',\n listen_spotify : '4OI9hKTm1QMRQunqHCfSSL',\n listen_apple_music : 'trouble-will-find-me/626872826',\n listen_to : 'I Need My Girl',\n video_id : 'A-Tod1_tZdU',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : 'Suzanne Cordeiro'\n },\n {\n id : 10,\n artist : 'Arctic Monkeys',\n title : 'AM',\n review : 'Arctic Monkeys’ fifth record is absolutely and unarguably the most incredible album of their career. It might also be the greatest record of the last decade.',\n source : 'NME',\n source_url : 'https://www.nme.com/reviews/reviews-arctic-monkeys-14752-322783',\n listen_spotify : '78bpIziExqiI9qztvNFlQu',\n listen_apple_music : 'am/663097964',\n listen_to : 'R U Mine?',\n video_id : 'VQH8ZTgna3Q',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Frank Turner',\n title : 'Tape Deck Heart',\n listen_to : 'The Way I Tend To Be',\n video_id : 'Cf5O2M5GaEA'\n },\n {\n id : 12,\n artist : 'A.W.',\n title : 'Say What You Mean',\n listen_to : 'Wait For Me',\n video_id : 'TP_olrvztJM'\n },\n {\n id : 13,\n artist : 'Laura Stevenson',\n title : 'Wheel',\n listen_to : 'The Move',\n video_id : 'aPsv88LQ0vo'\n },\n {\n id : 14,\n artist : 'Black Rebel Motorcycle Club',\n title : 'Specter at the Feast',\n listen_to : 'Let the Day Begin',\n video_id : 'Z63RredqEnk'\n },\n {\n id : 15,\n artist : 'Perma',\n title : 'Two of a Crime',\n listen_to : 'Little Light',\n video_id : 'o-Oi_EWrJ1Q'\n }, {\n id : 16,\n artist : 'Alkaline Trio',\n title : 'My Shame Is True',\n listen_to : 'I, Pessimist',\n video_id : 'ga0-r07hkiA'\n },\n {\n id : 17,\n artist : 'Hellogoodbye',\n title : 'Everything Is Debatable',\n listen_to : '(Everything Is) Debatable',\n video_id : 'K-malmvYHgc'\n },\n {\n id : 18,\n artist : 'Noah and the Whale',\n title : 'Heart of Nowhere',\n listen_to : ' Lifetime',\n video_id : 'vFNKTE5PTAY'\n },\n {\n id : 19,\n artist : 'Touché Amoré',\n title : '…Is Survived By',\n listen_to : 'Harbor',\n video_id : '2UeCmPQkjjk'\n },\n {\n id : 20,\n artist : 'Manic Street Preachers',\n title : 'Rewind the Film',\n listen_to : 'Show Me the Wonder',\n video_id : 'J9L-jyFEsK4'\n }\n ]\n};\n","export const year2014 = {\n id : 2014,\n title : 'Albums of 2014',\n description : 'As another great year for music draws to a close, it’s time for the obligatory end of year list. So here it is, my top albums/EPs of 2014. As always feel free to get on X to discuss, disagree with, or disparage my choices.',\n albums : [\n {\n id : 1,\n artist : 'Conor Oberst',\n title : 'Upside Down Mountain',\n review : 'Music this well-sung and well-played will never go out of fashion or lose its appeal. Upside Down Mountain is a great achievement and Conor Oberst’s best work to date.',\n source : 'Paste',\n source_url : 'https://www.pastemagazine.com/music/conor-oberst/conor-oberst-upside-down-mountain-review/',\n listen_spotify : '7g42rDRob7LSSKgiaTdBvN',\n listen_apple_music : 'upside-down-mountain/845406198',\n listen_to : 'You Are Your Mother’s Child',\n video_id : 'itHc5ngt4CA',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 2,\n artist : 'Jenny Lewis',\n title : 'The Voyager',\n review : 'You wouldn’t assume a troubled backstory from the music — Lewis has channelled her grievances into a statement of life-affirming and ebullient guitar pop.',\n source : 'Spin',\n source_url : 'https://www.spin.com/2014/07/jenny-lewis-the-voyager/',\n listen_spotify : '5sCsfubNchaI9RCpP7K7aB',\n listen_apple_music : 'the-voyager/883276305',\n listen_to : 'She’s Not Me',\n video_id : 'WgUAvzP-qmQ',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 3,\n artist : 'St. Vincent',\n title : 'St. Vincent',\n review : 'It’s an album that manages to remain accessible while still sounding challenging and unconventional, an album that can sound heart-stoppingly beautiful one minute and scratchily acerbic the next and, ultimately, an album that’s impossible to grow bored of.',\n source : 'music OMH',\n source_url : 'http://www.musicomh.com/reviews/albums/st-vincent-st-vincent',\n listen_spotify : '2PbvQ5ALJj6uXgz5X3ghro',\n listen_apple_music : 'st-vincent/1445873566',\n listen_to : 'Birth In Reverse',\n video_id : 'TAdARF4rGcQ',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 4,\n artist : 'Tim Wheeler',\n title : 'Lost Domain',\n review : 'Lost Domain acts as both a lovely tribute to Wheeler’s father, and further confirmation of his talent as a songwriter.',\n source : 'music OMH',\n source_url : 'http://www.musicomh.com/reviews/albums/tim-wheeler-lost-domain',\n listen_spotify : '1BL0q6eG0VQAf0NmKYaIzT',\n listen_apple_music : 'lost-domain/934780456',\n listen_to : 'Vigil',\n video_id : 'HCwNLeS_lcU',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 5,\n artist : 'Sharon Van Etten',\n title : 'Are We There?',\n review : 'While Are We There can be taxing at points, by its end, you’ll be overcome by the feeling that you’ve shared in something profound.',\n source : 'Pretty Much Amazing',\n source_url : 'http://prettymuchamazing.com/reviews/sharon-van-etten-are-we-there/',\n listen_spotify : '0F1pMhF8Vy74nKkQeLBfrd',\n listen_apple_music : 'are-we-there/820969262',\n listen_to : 'Every Time the Sun Comes Up',\n video_id : 'fDW-W2J84Hc',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 6,\n artist : 'Say Anything',\n title : 'Hebrews',\n review : 'Given how fickle Bemis perceives some of his fans, changing up the formula so drastically is a bold move on his part, but it’s one that ultimately pays off, making the album a creative high point capable of spawning enough critical debate to fuel a lifetime of Say Anything albums.',\n source : 'AllMusic',\n source_url : 'https://www.allmusic.com/album/hebrews-mw0002666287',\n listen_spotify : '57LqCM2UPET7sf2DBCRkwM',\n listen_apple_music : 'hebrews/869377842',\n listen_to : 'Six Six Six',\n video_id : 'hpahpB0wjXk',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 7,\n artist : 'Jack White',\n title : 'Lazaretto',\n review : 'It works, at least partly because White’s version of a big production is more about layering sounds until he hits on something right, rather than polishing something until its defining cracks fade away.',\n source : 'The A.V. Club',\n source_url : 'https://music.avclub.com/jack-white-harnesses-the-power-of-jack-white-on-lazaret-1798180682',\n listen_spotify : '3FjQFtW9veyD1AQXwusGfk',\n listen_apple_music : 'lazaretto/855605167',\n listen_to : 'Would You Fight For My Love?',\n video_id : 'MQOnbp_DspY',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 8,\n artist : 'Manchester Orchestra',\n title : 'Cope',\n review : 'Cope is a loud dose of poetry which I can see stretching its musical arms very far and very wide.',\n source : 'Punk News',\n source_url : 'https://www.punknews.org/review/12514/manchester-orchestra-cope',\n listen_spotify : '2JdAXTP8YwbtLDTopDbMl0',\n listen_apple_music : 'cope-deluxe-version/1440815175',\n listen_to : 'Top Notch',\n video_id : 'w7o6ZJ2GJzo',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 9,\n artist : 'La Dispute',\n title : 'Rooms of the House',\n review : 'It’s incredible just how good Dreyer is at making you connect with his characters, and how equally good his band are at backing him up.',\n source : 'Alternative Press',\n source_url : 'https://www.altpress.com/reviews/la_dispute_rooms_of_the_house/',\n listen_spotify : '2ligeNFwBdKXnK7y9Qbqae',\n listen_apple_music : 'rooms-of-the-house/1176782885',\n listen_to : 'For Mayor In Splitsville',\n video_id : 'zSjTpcSxgjQ',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 10,\n artist : 'Yellowcard',\n title : 'Lift a Sail',\n review : 'There are moments of despair, but on the whole, Lift a Sail rings as an uplifting testament to love and human resilience.',\n source : 'Chorus.fm',\n source_url : 'https://chorus.fm/reviews/yellowcard-lift-a-sail/',\n listen_spotify : '7hNOYnWc9s6oh6AYgsHG85',\n listen_apple_music : 'lift-a-sail/1440927757',\n listen_to : 'The Deepest Well',\n video_id : 'gWydN6_JAWs',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Pixies',\n title : 'Indie Cindy',\n listen_to : 'Bagboy',\n video_id : 'lGdSYPh5_BI'\n },\n {\n id : 12,\n artist : 'We Are the In Crowd',\n title : 'Weird Kids',\n listen_to : 'Manners',\n video_id : 'CN-RcplEW5c'\n },\n {\n id : 13,\n artist : 'Tigers Jaw',\n title : 'Charmer',\n listen_to : 'Hum',\n video_id : 'mxat0Y-l59g'\n },\n {\n id : 14,\n artist : 'The Gaslight Anthem',\n title : 'Get Hurt',\n listen_to : 'Get Hurt',\n video_id : 'I_TI14Z5NNQ'\n },\n {\n id : 15,\n artist : 'Weezer',\n title : 'Everything Will Be Alright in the End',\n listen_to : 'Go Away',\n video_id : 'pnTIsubYbCU'\n }, {\n id : 16,\n artist : 'Bruce Springsteen',\n title : 'High Hopes',\n listen_to : 'Just Like Fire Would',\n video_id : 'hJ4a_tgJp4I'\n },\n {\n id : 17,\n artist : 'Smashing Pumpkins',\n title : 'Monuments to an Elegy',\n listen_to : 'Being Beige',\n video_id : 'gvpe27sUCvs'\n },\n {\n id : 18,\n artist : 'Manic Street Preachers',\n title : 'Futurology',\n listen_to : ' Walk Me to the Bridge',\n video_id : 'nusymqINrSc'\n },\n {\n id : 19,\n artist : 'Grant Nicholas',\n title : 'Yorktown Heights',\n listen_to : 'Soul Mates',\n video_id : '4feY-eaA-9w'\n },\n {\n id : 20,\n artist : 'Young Statues',\n title : 'The Flatlands Are Your Friend',\n listen_to : 'Run the River Dry',\n video_id : '6oFOwoU0oaI'\n }\n ]\n};\n","export const year2015 = {\n id : 2015,\n title : 'Albums of 2015',\n description : 'As another great year for music draws to a close, it’s time for the obligatory end of year list. So here it is, my top albums/EPs of 2015. As always feel free to get on X to discuss, disagree with, or disparage my choices.',\n albums : [\n {\n id : 1,\n artist : 'Julien Baker',\n title : 'Sprained Ankle',\n review : 'Like the injury it’s named after, Baker’s nine-track album is a distinctive affair; ‘Sprained Ankle’ is uncompromisingly heartfelt to the point that it is physically affecting.',\n source : 'Dork',\n source_url : 'https://www.readdork.com/reviews/julien-baker-sprained-ankle/',\n listen_spotify : '1IFpUMgrfPeq6ERuamFG3I',\n listen_apple_music : 'sprained-ankle/1506027904',\n listen_to : 'Something',\n video_id : 'FjafzdCO0-o',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 2,\n artist : 'Laura Marling',\n title : 'Short Movie',\n review : '‘Short Movie’ is the record of an artist shaking her life up, spending a little more time peering at the stars and resisting the lure of the familiar.',\n source : 'Clash Music',\n source_url : 'https://www.clashmusic.com/reviews/laura-marling-short-movie',\n listen_spotify : '08cXCARUoHLoccf0y06Dlv',\n listen_apple_music : 'short-movie/948039984',\n listen_to : 'Gurdjieff’s Daughter',\n video_id : '5hnKz9rlna4',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 3,\n artist : 'Sleater-Kinney',\n title : 'No Cites to Love',\n review : 'There’s more than a convincing argument that ‘No Cities To Love’ could be Sleater-Kinney’s finest work to date. Honed to their sharpest point, it’s certainly their most immediate.',\n source : 'DIY Magazine',\n source_url : 'https://diymag.com/2015/01/12/sleater-kinney-no-cities-to-love-album-review',\n listen_spotify : '7HDcY3h70X3zLjceUO874A',\n listen_apple_music : 'no-cities-to-love/927171224',\n listen_to : 'A New Wave',\n video_id : 'Kc1htX3q-F0',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 4,\n artist : 'Courtney Barnett',\n title : 'Sometimes I Sit and Think, and Sometimes I Just Sit',\n review : 'Gentle, subtle, poignant, Barnett is almost crooning as she talks disappointment and expectation, and she has a photographer’s eye for detail when it comes to the otherwise mundane.',\n source : 'The Guardian',\n source_url : 'https://www.theguardian.com/music/2015/mar/17/courtney-barnett-sometimes-i-sit-and-think-and-sometimes-i-just-sit-review',\n listen_spotify : '1InNVNQDbgjDG0uS1tjjLd',\n listen_apple_music : 'sometimes-i-sit-and-think-and-sometimes-i-just-sit/960342539',\n listen_to : 'Pedestrian at Best',\n video_id : 'o-nr1nNC3ds',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 5,\n artist : 'Belle and Sebastian',\n title : 'Girls in Peacetime Want to Dance',\n review : 'Girls In Peacetime Want To Dance is the purest expression of the big, bright sounds that have always been within the band, visions of Belle & Sebastian as Naked-era Talking Heads or an ABBA for 2015.',\n source : 'The A.V. Club',\n source_url : 'https://music.avclub.com/belle-sebastian-returns-with-its-purest-pop-yet-1798182456',\n listen_spotify : '46qAI9wnaEWwN6fwiGQ8k5',\n listen_apple_music : 'girls-in-peacetime-want-to-dance/927607113',\n listen_to : 'The Party Line',\n video_id : '3vS1Hf3CVGs',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 6,\n artist : 'Death Cab for Cutie',\n title : 'Kintsugi',\n review : 'Kintsugi is very much a companion piece to Codes And Keys, but where that album sounded like a group at ease with some emotional distance, the new record brings back the heartache and longing in a big way. ',\n source : 'The A.V. Club',\n source_url : 'https://music.avclub.com/on-kintsugi-death-cab-for-cutie-regains-intimacy-and-e-1798183275',\n listen_spotify : '6BK3muExDOuk0VnyMn9NVw',\n listen_apple_music : 'kintsugi/958998203',\n listen_to : 'The Ghosts of Beverly Drive',\n video_id : 'srvcc8izHSU',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 7,\n artist : 'Desaparecidos',\n title : 'Payola',\n review : 'Few bands can return after a 13-year absence and sound vital and fresh, transforming an old-school approach into a process that sounds original. That’s precisely what Desaparecidos have done, making Payola a welcome comeback surprise.',\n source : 'Consequence of Sound',\n source_url : 'https://consequenceofsound.net/2015/06/album-review-desaparecidos-payola/',\n listen_spotify : '0znk4I7BChCGG8SZ5nRneU',\n listen_apple_music : 'payola/1485061639',\n listen_to : 'Golden Parachutes',\n video_id : 'e-pniJRv35w',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 8,\n artist : 'The Decemberists',\n title : 'What a Terrible World, What a Beautiful World',\n review : 'What a Terrible World, What a Beautiful World explores a much wider range of topics than their previous literature/storyline-bound themes could have possibly covered, and the result is hands down the most emotive release of The Decemberists’ career.',\n source : 'Sputnikmusic',\n source_url : 'https://www.sputnikmusic.com/review/65743/The-Decemberists-What-A-Terrible-World,-What-A-Beautiful-World/',\n listen_spotify : '1xSKjJYIqHk9GVovuLmqAR',\n listen_apple_music : 'what-a-terrible-world-what-a-beautiful-world/1440850936',\n listen_to : 'Make You Better',\n video_id : 'Yb8oUbMrydk',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 9,\n artist : 'The Front Bottoms',\n title : 'Back on Top',\n review : 'The heart and intent behind the lyrics and music, the effort so clearly put forth is what is supposed to translate and it does. Most of the growth on this record comes in the form of more textured and dynamic instrumentals, and glossy, but not necessarily overtly “made for radio” production.',\n source : 'Chorus.fm',\n source_url : 'https://chorus.fm',\n listen_spotify : '2kPUTzKRpqY9mSPlHjL1OR',\n listen_apple_music : 'back-on-top/1022547223',\n listen_to : 'West Virginia',\n video_id : 'XII7af9SrLI',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n },\n {\n id : 10,\n artist : 'Ash',\n title : 'Kablammo!',\n review : 'As its name implies, Kablammo! is exuberant and energetic, from two-minute power-pop blasts (“Cocoon,” “Shutdown”) to the yelping “Hedonism” and the standout “Go! Fight! Win!,” which pairs stomping cheerleader chants with a ferocious, riff-happy guitar solo.',\n source : 'Alternative Press',\n source_url : 'https://www.altpress.com/reviews/review_ash_kablammo/',\n listen_spotify : '51tPUhRi6qdF0jcPCoRdyN',\n listen_apple_music : 'kablammo/1252357742',\n listen_to : 'Machinery',\n video_id : 'ietufIxAXzQ',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with pciture frames. Conor is peeling an orange, while Phoebe is talking into a banna.',\n photo_credit : ''\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'PJ Bond',\n title : 'Where Were You?',\n listen_to : 'Calm in the Corner',\n video_id : 'JRA3mSG_x6k'\n },\n {\n id : 12,\n artist : 'Frank Turner',\n title : 'Positive Songs for Negative People',\n listen_to : 'Get Better',\n video_id : 'tB4Avdlz3lk'\n },\n {\n id : 13,\n artist : 'A.W.',\n title : 'New Love',\n listen_to : 'Who We Are',\n video_id : 'QaWF8AOy5Ys'\n },\n {\n id : 14,\n artist : 'Drenge',\n title : 'Undertow',\n listen_to : 'The Woods',\n video_id : 'M7bLzcg-DBk'\n },\n {\n id : 15,\n artist : 'Idlewild',\n title : 'Everything Ever Written',\n listen_to : 'Every Little Means Trust',\n video_id : 'iLXDVE2U9TQ'\n },\n {\n id : 16,\n artist : 'The Libertines',\n title : 'Anthems for Doomed Youth',\n listen_to : 'Heart of the Matter',\n video_id : 'G-AC0VeRETc'\n },\n {\n id : 17,\n artist : 'Screaming Females',\n title : 'Rose Mountain',\n listen_to : 'Hopeless',\n video_id : 'ZIL6QUYoUes'\n },\n {\n id : 18,\n artist : 'Motion City Soundtrack',\n title : 'Panic Stations',\n listen_to : 'Lose Control',\n video_id : 'GQAxnDu4ZRc'\n },\n {\n id : 19,\n artist : 'Brandon Flowers',\n title : 'The Desired Effect',\n listen_to : 'Can’t Deny My Love',\n video_id : '9iiDlU4rhlY'\n },\n {\n id : 20,\n artist : 'Laura Stevenson',\n title : 'Cocksure',\n listen_to : 'Torch Song',\n video_id : 'tmBchlBfp-s'\n }\n ]\n};\n","export const year2016 = {\n id : 2016,\n title : 'Albums of 2016',\n description : 'As another great year for music draws to a close, it’s time for the obligatory end of year list. So here it is, my top albums/EPs of 2016. As always feel free to get on X to discuss, disagree with, or disparage my choices.',\n albums : [\n {\n id : 1,\n artist : 'Brian Fallon',\n title : 'Painkillers',\n review : 'Fallon’s story is far from finished. This guy is one of the best songwriters of his generation, in any genre, and if his future albums--solo or not--are as full of pleasures as Painkillers, we have nothing to worry about',\n source : 'Chorus.fm',\n source_url : 'https://chorus.fm/reviews/brian-fallon-painkillers/',\n listen_spotify : '1sRxBblIUXOLKdQzv2W5gL',\n listen_apple_music : 'painkillers/1440848146',\n listen_to : 'A Wonderful Life',\n video_id : '1OReOjoDaVQ',\n video_provider : 'youtube',\n alt : 'Portrait of Brian Fallon sat on a wooden block facing right against a white background.',\n photo_credit : 'Drew Gurian'\n },\n {\n id : 2,\n artist : 'Radiohead',\n title : 'A Moon Shaped Pool',\n review : 'Radiohead’s most melodically accessible collection, almost meditative in its ethereal mid-tempo loveliness, yet shot through with the kind of edgy details that never quite let a listener relax. It is chill-out music to put your nerves on edge.',\n source : 'The Telegraph',\n source_url : 'https://www.telegraph.co.uk/music/what-to-listen-to/radioheads-a-moon-shaped-pool-a-work-of-total-self-assurance/',\n listen_spotify : '2ix8vWvvSp2Yo7rKMiWpkg',\n listen_apple_music : 'a-moon-shaped-pool/1111577743',\n listen_to : 'Burn the Witch',\n video_id : 'yI2oS2hoL0k',\n video_provider : 'youtube',\n alt : 'Thom Yorke performing live with maracas in one hand and light strobes across his face.',\n photo_credit : 'Jim Dyson'\n },\n {\n id : 3,\n artist : 'Conor Oberst',\n title : 'Ruminations',\n review : '“Ruminations” is a vulnerable Conor Oberst cracked open, spilling his soul. Pain is its recurring theme and though Oberst comes close to wallowing in it, the gift is his ability to embrace and absorb it and make it something beautiful.',\n source : 'Entertainment Weekly',\n source_url : 'https://ew.com/article/2016/10/18/conor-oberst-ruminations-ew-review/',\n listen_spotify : '67hzZ19BcqT086ahgI9DIB',\n listen_apple_music : 'ruminations/1138528569',\n listen_to : 'Gossamer Thin',\n video_id : 'PuSJc4DXrRQ',\n video_provider : 'youtube',\n alt : 'Silhouette of Conor Oberst against a yellow wall sitting side on at a piano with a harmonica around his neck.',\n photo_credit : 'Amélie Raoul'\n },\n {\n id : 4,\n artist : 'Kevin Devine',\n title : 'Instigator',\n review : '“Instigator” is a vivid example of blending political and relevant themes. Kevin Devine has always had a political undertone; sometimes blunt, sometimes vague, and his latest album is Devine at his most direct and unforgiving.',\n source : 'Vulture Hound',\n source_url : 'https://vulturehound.co.uk/2016/11/kevin-devine-instigator-album-review',\n listen_spotify : '2tIXeWqYs9HVnmxGP5GWBc',\n listen_apple_music : 'instigator/1522455491',\n listen_to : 'Daydrunk',\n video_id : 'K0TQxB8b-7I',\n video_provider : 'youtube',\n alt : 'Portrait photo of Kevin Devine in front of a green doorway.',\n photo_credit : 'Ninelle Efremova'\n },\n {\n id : 5,\n artist : 'Jimmy Eat World',\n title : 'Integrity Blues',\n review : 'The dreamy sensation and emotional relevance of “Futures” is apparent here, and the catchier tracks sound as natural as they ever have.',\n source : 'Sputnikmusic',\n source_url : 'https://www.sputnikmusic.com/review/72033/Jimmy-Eat-World-Integrity-Blues/',\n listen_spotify : '03hVtUfmQW3fhMbYoliIod',\n listen_apple_music : 'integrity-blues/1147844543',\n listen_to : 'Get Right',\n video_id : 'EDeOhRsn7SY',\n video_provider : 'youtube',\n alt : 'Lead singer of Jimmy Eat World Jim Atkins performing live.',\n photo_credit : 'Sarah-Louise-Bennett'\n },\n {\n id : 6,\n artist : 'PJ Harvey',\n title : 'The Hope Six Demolition Project',\n review : 'Harvey set out to bring listeners and the underprivileged subjects of her record together, and the exciting thing is that that final moment should surely do that.',\n source : 'Under the Radar',\n source_url : 'http://www.undertheradarmag.com/reviews/pj_harvey_the_hope_six_demolition_project/',\n listen_spotify : '1Un5JM2tnlI7I9GBgylutb',\n listen_apple_music : 'the-hope-six-demolition-project/1213958088',\n listen_to : 'The Community of Hope',\n video_id : 'qsLqsqbObyg',\n video_provider : 'youtube',\n alt : 'Polly Jean Harvey sat on a tree trunk by the river edge with a pen in her hand and a notebook on her lap',\n photo_credit : 'Seamus Murphy'\n },\n {\n id : 7,\n artist : 'PUP',\n title : 'The Dream Is Over',\n review : 'Turning it up to eleven, PUP’s second album is a tongue-in-cheek rampage through everything that matters. The dream might not be what they thought it would be, but when they’re capable of a record as unrelenting as this one, then it’s certainly not over.',\n source : 'Line of Best Fit',\n source_url : 'https://www.thelineofbestfit.com/reviews/albums/pup-turn-ambition-into-exhilaration-on-the-dream-is-over',\n listen_spotify : '7mQSfTIli4awcQj1w1Fbou',\n listen_apple_music : 'the-dream-is-over/1455900783',\n listen_to : 'If This Tour Doesn’t Kill You, I Will',\n video_id : '8IM472k0Md8',\n video_provider : 'youtube',\n alt : 'Lead singer of PUP Stefan Babcock performing live.',\n photo_credit : 'Alden Bonecutter'\n },\n {\n id : 8,\n artist : 'Yellowcard',\n title : 'Yellowcard',\n review : '“Yellowcard” never feels treacly or forced. It’s emo for grownups and a proper close for a band that wanted to go out on its own terms.',\n source : 'AllMusic',\n source_url : 'https://www.allmusic.com/album/yellowcard-mw0002959365',\n listen_spotify : '06G6ULr2IdnBASwp282TiN',\n listen_apple_music : 'yellowcard/1120749893',\n listen_to : 'The Hurt Is Gone',\n video_id : '9m5Br9Jg50A',\n video_provider : 'youtube',\n alt : 'Portrait shot of the members of Yellowcard.',\n photo_credit : 'Joe Brady'\n },\n {\n id : 9,\n artist : 'Pixies',\n title : 'Head Carrier',\n review : 'Pixies’ full acceptance of the shifts in their schema only further solidify their inimitable identity. The exultant result: Head Carrier, a new classic.',\n source : 'American Songwriter',\n source_url : 'https://americansongwriter.com/pixies-head-carrier/',\n listen_spotify : '7oadUYM1zfPFjZYLavQkjL',\n listen_apple_music : 'head-carrier/1127941620',\n listen_to : 'Tenement Song',\n video_id : '-SLgXBLQA2M',\n video_provider : 'youtube',\n alt : 'Photo of the Pixies with their blue silhouettes casting against a white wall, Paz leans on Frank Black’s shoulder.',\n photo_credit : 'Travis Shinn'\n },\n {\n id : 10,\n artist : 'Nine Inch Nails',\n title : 'Not the Actual Events',\n review : 'In five tracks and just over 20 minutes, “Not the Actual Events” manages to build on Nine Inch Nails’ past while stepping resolutely into their future. And after 28 years, we’re still excited to see what comes next.',\n source : 'Line of Best Fit',\n source_url : 'https://www.thelineofbestfit.com/reviews/albums/nine-inch-nails-not-the-actual-events-ep',\n listen_spotify : '2fThnKRzs6iudIAzHP9VOa',\n listen_apple_music : 'not-the-actual-events/1188499362',\n listen_to : 'Burning Bright (Field On Fire)',\n video_id : 'cvyywDE67tY',\n video_provider : 'youtube',\n alt : 'Trent Reznor performing at the Saenger Theatre on November 23, 2018.',\n photo_credit : 'Fred Salinas'\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'The Rolling Stones',\n title : 'Blue & Lonesome',\n listen_to : 'Ride ’Em On Down',\n video_id : 'qEuV82GqQnE',\n video_provider : 'youtube'\n },\n {\n id : 12,\n artist : 'The Kills',\n title : 'Ash & Ice',\n listen_to : 'Impossible Tracks',\n video_id : 'haEqhj76z3I',\n video_provider : 'youtube'\n },\n {\n id : 13,\n artist : 'My Vitriol',\n title : 'The Secret Sessions',\n listen_to : 'It’s So Damn Easy',\n video_id : '4zhlcpIY4W0',\n video_provider : 'youtube'\n },\n {\n id : 14,\n artist : 'M. Ward',\n title : 'More Rain',\n listen_to : 'Girl From Conejo Valley',\n video_id : 't-xC6hOpNq4',\n video_provider : 'youtube'\n },\n {\n id : 15,\n artist : 'All Get Out',\n title : 'Nobody Likes a Quitter',\n listen_to : 'Get My Cut',\n video_id : 'HEnbYhfbuDc',\n video_provider : 'youtube'\n },\n {\n id : 16,\n artist : 'Biffy Clyro',\n title : 'Ellipsis',\n listen_to : 'Howl',\n video_id : 'ag_r4TFf7HQ',\n video_provider : 'youtube'\n },\n {\n id : 17,\n artist : 'Nice As Fuck',\n title : 'Nice As Fuck',\n listen_to : 'Door',\n video_id : 'NMnUPy4dp4k',\n video_provider : 'youtube'\n },\n {\n id : 18,\n artist : 'Weezer',\n title : ' The White Album',\n listen_to : 'King of the World',\n video_id : 'nGyBIQjU2Lk',\n video_provider : 'youtube'\n },\n {\n id : 19,\n artist : 'Feeder',\n title : 'All Bright Electric',\n listen_to : 'Eskimo',\n video_id : 'XQEXzjgykjE',\n video_provider : 'youtube'\n },\n {\n id : 20,\n artist : 'Angel Olsen',\n title : 'My Woman',\n listen_to : 'Shut Up Kiss Me',\n video_id : 'nleRCBhLr3k',\n video_provider : 'youtube'\n }\n ]\n};\n","export const year2017 = {\n id : 2017,\n title : 'Albums of 2017',\n description : 'As another great year for music draws to a close, it’s time for the obligatory end of year list. So here it is, my top albums/EPs of 2017. As always feel free to get on X to discuss, disagree with, or disparage my choices.',\n albums : [\n {\n id : 1,\n artist : 'Julien Baker',\n title : 'Turn Out the Lights',\n review : 'What elevates “Turn Out The Lights” is that it’s sensory as well as earnest, personally destabilising while artfully assured; it oscillates in the spilling synaesthesia of panic attacks, the dizzying clarity of epiphany, the paralysing futility of depressive episodes, the unfathomable locus of being okay.',\n source : 'The 405',\n source_url : 'https://www.thefourohfive.com/music/review/review-julien-baker-takes-a-vitally-human-approach-to-a-range-of-weighty-topics-on-her-striking-second-album-turn-out-the-lights-150',\n listen_spotify : '3AV0YFhIzY0LDeaJPU5x3O',\n listen_apple_music : 'turn-out-the-lights/1265246504?i=1265247119',\n listen_to : 'Turn Out the Lights',\n video_id : 'xV1dMqeb4_U',\n video_provider : 'youtube',\n alt : 'Black and white photo of Julien Baker facing left against a white brick wall.',\n photo_credit : 'Jake Cunningham'\n },\n {\n id : 2,\n artist : 'Courtney Barnett/Kurt Vile',\n title : 'Lotta Sea Lice',\n review : 'Courtney Barnett and Kurt Vile are brave to make something so gentle, natural and unguarded. They’ve managed to strive for an ideal informed by a real sense of pragmatism, and in the process, they’ve made one of the warmest, good-hearted records of the year.',\n source : 'music OMH',\n source_url : 'https://www.musicomh.com/reviews/albums/courtney-barnett-kurt-vile-lotta-sea-lice',\n listen_to : 'Over Everything',\n listen_spotify : '19tlLMhy5985btqv3jE8eG',\n listen_apple_music : 'lotta-sea-lice/1271791613',\n video_id : '3KNsBCf34fQ',\n video_provider : 'youtube',\n alt : 'Courtney Barnett and Kurt Vile leaning on a balcony railing, with a yellow and white brick wall behind them. Kurt is looking directly at the camera and Courtney looking up and to the right.',\n photo_credit : 'Krista Schlueter'\n },\n {\n id : 3,\n artist : 'Conor Oberst',\n title : 'Salutations',\n review : 'The result is probably the best work of the singer’s career, a wide-ranging survey of contemporary shortcomings in which the frequent bursts of offhand spite and bitterness are perfectly balanced by the warmth of the folk-rock arrangements.',\n source : 'Independent',\n source_url : 'http://www.independent.co.uk/arts-entertainment/music/reviews/album-reviews-conor-oberst-salutations-spoon-hot-thoughts-jarvis-cocker-and-chilly-gonzales-room-29-a7631676.html',\n listen_to : 'Barbary Coast (Later)',\n listen_spotify : '5YQGQfkjghbxW00eKy9YpJ',\n listen_apple_music : 'salutations/1192927046',\n video_id : 'qVJjNJ1-vOU',\n video_provider : 'youtube',\n alt : 'Conor Oberst sat in a leather chair in a living room, with a lamp to his left and a dog on the floor by his feet. The room is littered with books and records.',\n photo_credit : 'Amelie Raoul'\n },\n {\n id : 4,\n artist : 'Feist',\n title : 'Pleasure',\n review : 'Emerging from the murk and into the new-found quiet of middle age, Feist’s Pleasure is a document of stark beauty that’s entirely and unequivocally her own.',\n source : 'Clash Music',\n source_url : 'http://www.clashmusic.com/reviews/feist-pleasure',\n listen_to : 'Century',\n listen_spotify : '5DLqMDgi1dFGJP6Zxb2sVd',\n listen_apple_music : 'pleasure/1440891038',\n video_id : '0xQoem0ApXc',\n video_provider : 'youtube',\n alt : 'Leslie Feist with her flower pattern coat pulled up over her mouth so you can see her eyes.',\n photo_credit : 'Cass Bird'\n },\n {\n id : 5,\n artist : 'Laura Marling',\n title : 'Semper Femina',\n review : 'Semper Femina matches Laura Marling’s personal quest to unlock facets of her identity echoing with the wider struggle to clear a space for the feminine voice within society itself. With a triumphant new album it seems that this songwriter has found a room of her own.',\n source : 'Clash Music',\n source_url : 'http://www.clashmusic.com/reviews/laura-marling-semper-femina',\n listen_to : 'Soothing',\n listen_spotify : '3Z4NNeh0gf4oGquXZEU1NT',\n listen_apple_music : 'semper-femina/1179022496',\n video_id : 'eCS4OTgaHeM',\n video_provider : 'youtube',\n alt : 'Laura Marling sat on the floor in a white gown surrounded by plants and leaves, she has a red Semper Femina stamp on her upper leg.',\n photo_credit : 'Hollie Fernando'\n },\n {\n id : 6,\n artist : 'St. Vincent',\n title : 'Masseduction',\n review : 'The artists for whom Clark now carries the torch were never satisfied with their past accomplishments and were always pushing forward. Masseduction cements her in this camp.',\n source : 'Consequence of Sound',\n source_url : 'https://consequenceofsound.net/2017/10/album-review-st-vincent-masseduction/',\n listen_to : 'New York',\n listen_spotify : '4RoOGpdrgfiIUyv0kLaC4e',\n listen_apple_music : 'masseduction/1440947061',\n video_id : '4TPqUvy1vYU',\n video_provider : 'youtube',\n alt : 'Annie Clark holding a prosthetic hand towards her neck.',\n photo_credit : 'Catalina Kulczar'\n },\n {\n id : 7,\n artist : 'Paramore',\n title : 'After Laughter',\n review : 'Recorded last summer in Los Angeles, their debut 10-track album effortlessly showcases both Oberst’s and Bridgers’s strengths as songwriters who are unafraid of literate vulnerability as they explore subjects like loneliness, privilege and estranged family.',\n source : 'Now Magazine',\n source_url : 'https://nowtoronto.com/music/album-reviews/better-oblivion-community-centre-phoebe-bridgers-conor-oberst/',\n listen_to : 'Told You So',\n listen_spotify : '1c9Sx7XdXuMptGyfCB6hHs',\n listen_apple_music : 'after-laughter/1227049864',\n video_id : 'yw-RPm1uOM4',\n video_provider : 'youtube',\n alt : 'Portrait shot of the members of Paramore against a purple glow background.',\n photo_credit : 'Eric Ryan Anderson'\n },\n {\n id : 8,\n artist : 'Tigers Jaw',\n title : 'Spin',\n review : '“Spin” stacks up with just about anything in the Tigers Jaw canon, with melodic and memorable highlights with detailed flow and cohesion that invitingly solicits frequents listens.',\n source : 'Alt Press',\n source_url : 'https://www.altpress.com/reviews/entry/tigers_jaws_spin_picks_up_slack_from_departing_members',\n listen_to : 'June',\n listen_spotify : '2xSppFiPUTWqZ9cdF6CQnY',\n listen_apple_music : 'spin/1216756437',\n video_id : 'ecE4ytbuiVA',\n video_provider : 'youtube',\n alt : 'Group photo of the members of Tigers Saw in the center of a white room.',\n photo_credit : 'Rebecca-Lader'\n },\n {\n id : 9,\n artist : 'Beck',\n title : 'Colors',\n review : 'As both a quintessential entry into his catalog and a striking entry into mainstream popular culture, Colors once again cements Beck as a clever, ever-dynamic and enduring artist.',\n source : 'Paste Magazine',\n source_url : 'https://www.pastemagazine.com/articles/2017/10/beck-colors-review.html',\n listen_to : 'Up All Night',\n listen_spotify : '6BOQkxcHspMoRWEwEexf4l',\n listen_apple_music : 'colors/1440881121',\n video_id : 'Tj08Ni3tklw',\n video_provider : 'youtube',\n alt : 'Black and White photo of Beck Hansen in a white suit and sunglasses.',\n photo_credit : 'Lauren Dukoff'\n },\n {\n id : 10,\n artist : 'Arcade Fire',\n title : 'Everything Now',\n review : 'Recorded last summer in Los Angeles, their debut 10-track album effortlessly showcases both Oberst’s and Bridgers’s strengths as songwriters who are unafraid of literate vulnerability as they explore subjects like loneliness, privilege and estranged family.',\n source : 'Now Magazine',\n source_url : 'https://nowtoronto.com/music/album-reviews/better-oblivion-community-centre-phoebe-bridgers-conor-oberst/',\n listen_to : 'Electric Blue',\n listen_spotify : '1DNojVW079FU9YnAMk3Cgr',\n listen_apple_music : 'everything-now/1240796998',\n video_id : 'UymXRxJPOQo',\n video_provider : 'youtube',\n alt : 'The members of Arcade Fire outside a dollar store all wearing black suits and bow ties.',\n photo_credit : 'Anton Corbijn'\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Waxahatchee',\n title : 'Out in the Storm',\n listen_to : 'Recite Remorse',\n video_id : 'zDiIhwGBIig',\n video_provider : 'youtube'\n },\n {\n id : 12,\n artist : 'Billy Corgan',\n title : 'Ogilala',\n listen_to : 'Half-Life of an Autodidact',\n video_id : '5B9oh2Zohog',\n video_provider : 'youtube'\n },\n {\n id : 13,\n artist : 'Manchester Orchestra',\n title : 'A Black Mile to the Surface',\n listen_to : 'The Gold',\n video_id : 'qaeWss85_vg',\n video_provider : 'youtube'\n },\n {\n id : 14,\n artist : 'The National',\n title : 'Sleep Well Beast',\n listen_to : 'Walk It Back',\n video_id : 'xnZA52oTp6M',\n video_provider : 'youtube'\n },\n {\n id : 15,\n artist : 'Nine Inch Nails',\n title : 'Add Violence',\n listen_to : 'Less Than',\n video_id : 'gDV-dOvqKzQ',\n video_provider : 'youtube'\n },\n {\n id : 16,\n artist : 'Phoebe Bridgers',\n title : 'Stranger in the Alps',\n listen_to : 'Would You Rather',\n video_id : '_ToSPYgkwmw',\n video_provider : 'youtube'\n },\n {\n id : 17,\n artist : 'Jeff Tweedy',\n title : 'Together At Last',\n listen_to : 'I Am Trying to Break Your Heart',\n video_id : 'X24R6v_AoJQ',\n video_provider : 'youtube'\n },\n {\n id : 18,\n artist : 'Kevin Devine',\n title : 'We Are Who We’ve Always Been',\n listen_to : 'No History',\n video_id : 'PJEuksQeyQE',\n video_provider : 'youtube'\n },\n {\n id : 19,\n artist : 'The Front Bottoms',\n title : 'Going Grey',\n listen_to : 'Vacation Town',\n video_id : 'yVs-veVcOTM',\n video_provider : 'youtube'\n },\n {\n id : 20,\n artist : 'Noel Gallagher’s High Flying Birds',\n title : 'Who Built the Moon?',\n listen_to : 'Holy Mountain',\n video_id : 'BIQdUJ04iNY',\n video_provider : 'youtube'\n }\n ]\n};\n","export const year2018 = {\n id : 2018,\n title : 'Albums of 2018',\n description : 'As another great year for music draws to a close, it’s time for the obligatory end of year list. So here it is, my top albums/EPs of 2018. As always feel free to get on X to discuss, disagree with, or disparage my choices.',\n albums : [\n {\n id : 1,\n artist : 'Brian Fallon',\n title : 'Sleepwalkers',\n review : 'Overall, the record is recognisably Fallon’s; he takes his best ingredients of trademark likeability and searing emotional insight and transfers it while changing things up musically. It’s inspiring to see a musician like him take strides and experiment, not necessarily taking the safe route.',\n source : 'Drowned in Sound',\n source_url : 'http://drownedinsound.com/releases/20211/reviews/4151607',\n listen_spotify : '2e83VEEGLp4darqUMhqMVa',\n listen_apple_music : 'sleepwalkers/1440854744',\n listen_to : 'Forget Me Not',\n video_id : '1jf4qiIs2AU',\n alt : 'Side shot of Brian Fallon against a dark background with a jacket on and his tattooed hand on his face',\n photo_credit : ''\n },\n {\n id : 2,\n artist : 'Courtney Barnett',\n title : 'Tell Me How You Really Feel',\n review : 'It’s full of incessantly catchy guitar riffs; a keen, driving rhythm section; and the unparalleled witty lyrics with which Barnett made her name. But it also bursts with more contradictions and a wider variety of personal intimacies than ever before.',\n source : 'Under the Radar',\n source_url : 'http://www.undertheradarmag.com/reviews/courtney_barnett_tell_me_how_you_really_feel/',\n listen_spotify : '6dWD9BmFPTaOGP0SO7NJyM',\n listen_apple_music : 'tell-me-how-you-really-feel/1341943567',\n listen_to : 'Need a Little Time',\n video_id : 'TISIPNpRuoY',\n alt : 'Courtney Barnett sitting on the back of a pickup truck with her arms by her side, laughing.',\n photo_credit : 'LeAnn Mueller'\n },\n {\n id : 3,\n artist : 'Ash',\n title : 'Islands',\n review : 'This is a slick, confident, emotionally mature and balanced album, crammed with zingers, from a band who know their territory like the back of their hands.',\n source : 'Drowned in Sound',\n source_url : 'http://drownedinsound.com/releases/20354/reviews/4151841',\n listen_spotify : '48Ueqq8GF5OiiC6kVCJfcC',\n listen_apple_music : 'islands/1342756285',\n listen_to : 'Annabel',\n video_id : '3G57P8WWUSE',\n alt : 'The three members of Ash with their arms aloft high kicking the air',\n photo_credit : 'Alex John Beck'\n },\n {\n id : 4,\n artist : 'Belle and Sebastian',\n title : 'How to Solve Our Human Problems',\n review : 'Recording in his Glasgow hometown helps provide a vibrant, unhurried enthusiasm that’s contagious. Each track is enhanced with guests periodically contributing horns, woodwinds, strings, and even French horns and glockenspiels.',\n source : 'American Songwriter',\n source_url : 'https://americansongwriter.com/belle-sebastian-solve-human-problems/hal-horowitz/',\n listen_spotify : '4dA5KrLw6NHYJJus1tJVwa',\n listen_apple_music : 'how-to-solve-our-human-problems-parts-1-3/1355354227',\n listen_to : 'We Were Beautiful',\n video_id : 'qlAfus-n9-U',\n alt : 'The six members of Belle and Sebastian posed against a white tile wall.',\n photo_credit : ''\n },\n {\n id : 5,\n artist : 'boygenius',\n title : 'boygenius',\n review : 'Bridgers, Baker and Dacus pack a novel’s worth of narrative and as many masterful melodies (not to mention harmonies) into just 21 minutes that will leave you feeling as if you’ve had the wind knocked right out of you.',\n source : 'Paste Magazine',\n source_url : 'https://www.pastemagazine.com/articles/2018/11/boygenius-boygenius-review.html',\n listen_spotify : '6RjlLIuDFC8Dw91yRAdPz9',\n listen_apple_music : 'boygenius-ep/1438946531',\n listen_to : 'Me & My Dog',\n video_id : '3orY1la7AJE',\n alt : 'The members of boygenius posed in the same black clothes, Lucy Dacus and Phoebe Bridgers sit on a chaise lounge, while Julien Baker stands on a chair.',\n photo_credit : ''\n },\n {\n id : 6,\n artist : 'Death Cab for Cutie',\n title : 'Thank You For Today',\n review : 'Ultimately, Thank You for Today finds the Death Cab for Cutie of 2018 taking stock of their band, choosing to forge ahead by using the foundation of their back catalogue to harness their core identity and build upon it. The band’s shared vision is clear, encapsulated in this collection of songs.',\n source : 'Exclaim',\n source_url : 'https://exclaim.ca/music/article/death_cab_for_cutie-thank_you_for_today',\n listen_spotify : '6agCM9GJcebduMddgFmgsO',\n listen_apple_music : 'thank-you-for-today/1396106377',\n listen_to : 'Gold Rush',\n video_id : 'XTPZWG5eLf8',\n alt : 'Portrait photo of Death Cab for Cutie set against a black background, two band members are at the back with three in front.',\n photo_credit : 'Eliot Lee Hazel'\n },\n {\n id : 7,\n artist : 'The Decemberists',\n title : 'I’ll Be Your Girl',\n review : 'It shows a refreshed band, back on the chase to find new ways of songwriting, with strong melodies and intriguing lyrics remaining a constant. “I’ll Be Your Girl” is the start of this new chapter, and it’s a wonderful place for them to begin again.',\n source : 'No Ripcord',\n source_url : 'http://www.noripcord.com/reviews/music/decemberists/ill-be-your-girl',\n listen_spotify : '3htB3KH8JnsWK6A8Nfob5K',\n listen_apple_music : 'ill-be-your-girl/1428753976',\n listen_to : 'Severed',\n video_id : 'ksTFj6L0mao',\n alt : 'The members of The Decemberists sat in a car with Colin Meloy at the wheel. A large rock is on the roof of the car.',\n photo_credit : 'Holly Andres'\n },\n {\n id : 8,\n artist : 'Screaming Females',\n title : 'All at Once',\n review : 'There’s an artful use of simplicity here to the extent that these songs don’t sound simple at all- they are massive, moving, and multifaceted- but never are they bland. Rather, instead of punching note after note down our ears, Screaming Females make every pluck, every single thwap, single second, do something to advance the album. When every single element counts, the whole thing feels that much more important.',\n source : 'Punk News',\n source_url : 'https://www.punknews.org/review/15564/screaming-females-all-at-once',\n listen_spotify : '1fOxg0lovMu0CPUT2G1WCL',\n listen_apple_music : 'all-at-once/1294514201',\n listen_to : 'I’ll Make You Sorry',\n video_id : 'LhJ0n5G5jCo',\n alt : 'The members of Screaming Females stand on the shore with the water and trees in the distance.',\n photo_credit : 'Grace Winter'\n },\n {\n id : 9,\n artist : 'Nine Inch Nails',\n title : 'Bad Witch',\n review : 'It’s the sound of a band bolstering their already formidable palette. Free from the shackles of Reznor’s self-imposed trilogy of releases, the masters of melancholy sound rejuvenated, and ready for another 30-plus years as kings of the musical underworld.',\n source : 'NME',\n source_url : 'https://www.nme.com/reviews/album/nine-inch-nails-bad-witch-album-review',\n listen_spotify : '0Q2o6ioxIOlKPvRdG1K5da',\n listen_apple_music : 'bad-witch/1383304609',\n listen_to : 'God Break Down the Door',\n video_id : 'eeJ_DzRJUI4',\n alt : 'Trent Reznor performing live holding a microphone.',\n photo_credit : ''\n },\n {\n id : 10,\n artist : 'Jack White',\n title : 'Boarding House Reach',\n review : 'White does pretty much everything except what fans have learned to expect from him. It’s an ambitious, dizzying, and sometimes challenging listen, but overall makes for one of the most maniacally creative albums of the year.',\n source : 'The Boston Globe',\n source_url : 'https://www.bostonglobe.com/arts/2018/03/21/new-sounds-and-fresh-ambition-from-jack-white/EX9dsr6G28FM4099yPFiUI/story.html',\n listen_spotify : '3208qFUa85RHwTYQA8gZ3M',\n listen_apple_music : 'boarding-house-reach/1337879490',\n listen_to : 'Connected By Love',\n video_id : 'WyWqEFeKX2E',\n alt : 'Jack White standing wearing a dark t-shirt, holding a Gibson Thunderbird guitar in front of him.',\n photo_credit : 'David James Swanson'\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'St. Vincent',\n title : 'MassEducation',\n listen_to : 'Savior',\n video_id : 'qqNvRMAKj-c'\n },\n {\n id : 12,\n artist : 'Alkaline Trio',\n title : 'Is This Thing Cursed?',\n listen_to : 'Demon and Division',\n video_id : '_8WSncYS0U0'\n },\n {\n id : 13,\n artist : 'Saves the Day',\n title : '9',\n listen_to : 'Side by Side',\n video_id : 'hNXVRs1qctQ'\n },\n {\n id : 14,\n artist : 'Frank Turner',\n title : 'Be More Kind',\n listen_to : '1933',\n video_id : 'QWmnBcNijvo'\n },\n {\n id : 15,\n artist : 'Manic Street Preachers',\n title : 'Resistance is Futile',\n listen_to : 'International Blue',\n video_id : 'zcJ8BTAGqE0'\n },\n {\n id : 16,\n artist : 'Justin Courtney-Pierre',\n title : 'In the Drink',\n listen_to : 'Anchor',\n video_id : 'GLFnGLnem3c'\n },\n {\n id : 17,\n artist : 'LUMP',\n title : 'LUMP',\n listen_to : 'Curse of the Contemporary',\n video_id : '4MTyqoigiso'\n },\n {\n id : 18,\n artist : 'Kurt Vile',\n title : 'Bottle It In',\n listen_to : 'Loading Zones',\n video_id : '7mbh43HgT4U'\n },\n {\n id : 19,\n artist : 'Interpol',\n title : 'Marauder',\n listen_to : 'The Rover',\n video_id : 'cKDq5dc4wO8'\n },\n {\n id : 20,\n artist : 'Smashing Pumpkins',\n title : 'Shiny and Oh So Bright…',\n listen_to : 'Solara',\n video_id : 'Do3tSdZucyA'\n }\n ]\n};\n","export const year2019 = {\n id : 2019,\n title : 'Albums of 2019',\n description : 'As another great year for music draws to a close, it’s time for the obligatory end of year list. So here it is, my top albums/EPs of 2019. As always feel free to get on X to discuss, disagree with, or disparage my choices.',\n albums : [\n {\n id : 1,\n artist : 'Better Oblivion Community Center',\n title : 'Better Oblivion Community Center',\n review : 'Recorded last summer in Los Angeles, their debut 10-track album effortlessly showcases both Oberst’s and Bridgers’s strengths as songwriters who are unafraid of literate vulnerability as they explore subjects like loneliness, privilege and estranged family.',\n source : 'Now Magazine',\n source_url : 'https://nowtoronto.com/music/album-reviews/better-oblivion-community-centre-phoebe-bridgers-conor-oberst/',\n listen_spotify : '5622zSt4RLqNSPShdqmWpj',\n listen_apple_music : 'better-oblivion-community-center/1445912481',\n listen_to : 'Dylan Thomas',\n video_id : 'UXzReYLuavg',\n alt : 'Conor Oberst and Phoebe Bridgers sitting on a green sofa looking to the right, behind them is a wall covered with picture frames. Conor is peeling an orange, while Phoebe is talking into a banana.'\n },\n {\n id : 2,\n artist : 'Vampire Weekend',\n title : 'Father of the Bride',\n review : 'An album that could soundtrack an afternoon picnic or be used as fodder for a doctorate thesis on songwriting. It’s a beautifully realized cipher in an age of unsatisfying answers.',\n source : 'Variety',\n source_url : 'https://variety.com/2019/music/reviews/vampire-weekend-album-review-father-of-the-bride-1203203751/',\n listen_spotify : '1A3nVEWRJ8yvlPzawHI1pQ',\n listen_apple_music : 'father-of-the-bride/1454428976',\n listen_to : 'This Life',\n video_id : 'FwkrrU2WYKg',\n alt : 'Ezra Koenig sat on a hotel bed with a piece of watermelon in his hand. A breakfast tray and a folded copy of The Financial Times newspaper lie by his feet.'\n },\n\n {\n id : 3,\n artist : 'Jenny Lewis',\n title : 'On the Line',\n review : 'The final result on display in On the Line--from the somber waltz of “Do Si Do” to the swell of strings at the climax of “Taffy”--is a new high watermark for a musician who’s never been willing to let a little rain get the best of her.',\n source : 'Variety',\n source_url : 'https://variety.com/2019/music/reviews/jenny-lewis-on-the-line-album-review-1203168942/',\n listen_spotify : '2AHG3vkC3H7zqHbYdgCCcy',\n listen_apple_music : 'on-the-line/1449905465',\n listen_to : 'Red Bull & Hennessy',\n video_id : 'I9PjniODmbU',\n alt : 'Jenny Lewis in a pink outfit holding the reins of a white horse.'\n },\n {\n id : 4,\n artist : 'Jade Bird',\n title : 'Jade Bird',\n review : 'There’s no doubt Bird is the complete package: Deft songwriting, outstanding vocals that glide effortlessly between honey and hessian, plus oodles of attitude to boot.',\n source : 'Under the Radar',\n source_url : 'http://www.undertheradarmag.com/reviews/jade_bird/',\n listen_spotify : '34RIeuzZA8ySXCbsEd62jG',\n listen_apple_music : 'jade-bird/1446920412',\n listen_to : 'Uh Huh',\n video_id : 'Dx4CQa5tHaI',\n alt : 'Jade Bird performing live at Haldern Pop Festival, 2018 in Haldern.',\n photo_credit : 'Martin Schumann'\n },\n {\n id : 5,\n artist : 'Bad Books',\n title : 'III',\n review : 'III is a masterpiece of modern indie folk. Bad Books have in every way lived up to the potential of a so-called “supergroup”, combining the best aspects of Andy Hull’s and Kevin Devine’s artistry, with help in no small part from Robert McDowell’s atmospheric guitar wizardry. The songs themselves are rich, lush, and flourishing – yet totally simplistic.',\n source : 'Sputnikmusic',\n source_url : 'https://www.sputnikmusic.com/review/79710/Bad-Books-III/',\n listen_spotify : '3PvYiq2XPK1Kt9AAd1WscC',\n listen_apple_music : 'iii/1460724383',\n listen_to : 'UFO',\n video_id : 'xxc14_TnT50',\n alt : 'Kevin Devine, Andy Hull and Robert McDowell posed against the outside of a house, with tree foliage on the ground.'\n },\n {\n id : 6,\n artist : 'Bruce Springsteen',\n title : 'Western Stars',\n review : 'Despite the lower volume, Bruce Springsteen sounds positively invigorated on Western Stars. With a new sonic palette and renewed focus on the LP as a means of writing short stories.',\n source : 'Consequence of Sound',\n source_url : 'https://consequenceofsound.net/2019/06/album-review-bruce-springsteen-western-stars/',\n listen_spotify : '6BhqPpIgY83rqoZ2L78Lte',\n listen_apple_music : 'western-stars/1459884961',\n listen_to : 'Western Stars',\n video_id : '_IXzAAKrsFE',\n alt : 'Bruce Springsteen sat at a desk in dim room with a burgundy acoustic guitar on his lap and his hand on a notebook.'\n },\n {\n id : 7,\n artist : 'The Raconteurs',\n title : 'Help Us Stranger',\n review : 'The beauty of The Raconteurs is in the timeless joy of hearing two world-class songwriters, cut from two very different sides of a similar cloth, come together to make something if not greater, then at least as good as the sum of their considerable parts. And in that sense, Help Us Stranger succeeds, and then some.',\n source : 'DIY Magazine',\n source_url : 'http://diymag.com/2019/06/21/the-raconteurs-help-us-stranger-album-review',\n listen_spotify : '3AnV7qjEjoZVJk6pN5GmZM',\n listen_apple_music : 'help-us-stranger/1459212381',\n listen_to : 'Help Me Stranger',\n video_id : 'pDtIABGdc18',\n alt : 'The members of The Raconteurs sat on a sofa in a dilapidated house.'\n },\n {\n id : 8,\n artist : 'Jimmy Eat World',\n title : 'Surviving',\n review : 'It succeeds in bringing a 90s aesthetic kicking and screaming in to the 21st century, shedding the nostalgia in favour of contemporary pop pomp, all delivered with Jim Adkins’ trademark optimism and heart-on-sleeve lyricism.',\n source : 'Clash Music',\n source_url : 'https://www.clashmusic.com/reviews/jimmy-eat-world-surviving',\n listen_spotify : '5UqA5MH9Cpy2zz7OCwzK46',\n listen_apple_music : 'surviving/1480411285',\n listen_to : 'All the Way (Stay)',\n video_id : 'nwp9uDuxoiQ',\n alt : 'The members of Jimmy Eat World at night with bright lights shining off in the distance.'\n },\n {\n id : 9,\n artist : 'Sharon Van Etten',\n title : 'Remind Me Tomorrow',\n review : 'While it sounds different from anything Van Etten has ever done, it also never sounds like anyone but her: Her big, sweeping choruses and singer-songwritery melodies adapt surprisingly well to their new context, with heavy, synthetic basslines and sparkling electronic embellishments accenting her echo-laden, multi-tracked vocals.',\n source : 'Variety',\n source_url : 'https://variety.com/2019/music/reviews/album-review-sharon-van-ettens-remind-me-tomorrow-1203111170/',\n listen_spotify : '2dvXk4nacVRmDSnbKniwrS',\n listen_apple_music : 'remind-me-tomorrow/1436857685',\n listen_to : 'Seventeen',\n video_id : 'j7sTHoeH0eA',\n alt : 'Sharon Van Etten posing against a golden background.'\n },\n {\n id : 10,\n artist : 'Sleater Kinney',\n title : 'The Center Won’t Hold',\n review : 'It’s more polished than most S-K albums, but it’s still a flurry of frenetic chords, caustic drum beats and yelps and hisses from Carrie Brownstein and Corin Tucker. Clark gave The Center Won’t Hold a very modern filter and sheen, but Sleater-Kinney still set the tone.',\n source : 'Now Magazine',\n source_url : 'https://nowtoronto.com/music/album-reviews/sleater-kinney-center-wont-hold/',\n listen_spotify : '6ArjrXMlLegKiAPOp34K58',\n listen_apple_music : 'the-center-wont-hold/1463695430',\n listen_to : 'Can I Go On',\n video_id : 'pB08AUiTP3w',\n alt : 'Corin Tucker right and Carrie Brownstein left, pose against a white corrugated metal sheet.'\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Frank Turner',\n title : 'No Man’s Land',\n listen_to : 'Jinny Bingham’s Ghost',\n video_id : 'KtdbzIPI9GY'\n },\n {\n id : 12,\n artist : 'The Menzingers',\n title : 'Hello Exile',\n listen_to : 'Strangers Forever',\n video_id : '4sV46Eo5J10'\n },\n {\n id : 13,\n artist : 'Pixies',\n title : 'Beneath the Eyrie',\n listen_to : 'Catfish Kate',\n video_id : 'DzMff4KMf88'\n },\n {\n id : 14,\n artist : 'Lauara Stevenson',\n title : 'The Big Freeze',\n listen_to : 'Living Room, NY',\n video_id : 'Z0zcVEaAua0'\n },\n {\n id : 15,\n artist : 'The National',\n title : 'I Am Easy to Find',\n listen_to : 'Light Years',\n video_id : '5FQtSn_vak0'\n },\n {\n id : 16,\n artist : 'Tegan and Sara',\n title : 'Hey, I’m Just Like You',\n listen_to : 'I’ll Be Back Someday',\n video_id : '7PRtBDpm6zY'\n },\n {\n id : 17,\n artist : 'Idlewild',\n title : 'Interview Music',\n listen_to : 'Same Things Twice',\n video_id : 'XJj_D1qnWGY'\n },\n {\n id : 18,\n artist : 'Feeder',\n title : 'Tallulah',\n listen_to : 'Fear of Flying',\n video_id : 'VOHBh5NLfbY'\n },\n {\n id : 19,\n artist : 'PUP',\n title : 'Morbid Stuff',\n listen_to : 'Kids',\n video_id : '3iVrOOCYD80'\n },\n {\n id : 20,\n artist : 'Thom Yorke',\n title : 'Anima',\n listen_to : 'Not the News',\n video_id : 'IZfCj7tuZ-E'\n }\n ]\n};\n","export const year2020 = {\n id : 2020,\n title : 'Albums of 2020',\n description : 'A seismic, strange and difficult year for us all. Despite the lack of live music in these trying times we were thankfully still treated to a host of incredible new music. It was a year of great returns with Fiona Apple, Bright Eyes, and Bob Dylan all returning after long periods aways and Bruce Springsteen reuniting with the E-Street Band. While Waxahatchee, Brian Fallon and Jason Isbell continued their recent gold run.',\n albums : [\n {\n id : 1,\n artist : 'Fiona Apple',\n title : 'Fetch the Bolt Cutters',\n review : '“Fetch the Bolt Cutters” is daring in a new way, scrambling and shattering the pop-song structures that once grounded her… These songs make some breathtaking hairpin turns… It’s not just the wild craftsmanship of each song. It’s also that she’s fearless about what she’s doing: with sounds, with structures, with people’s expectations.',\n source : 'The New Your Times',\n source_url : 'https://www.nytimes.com/2020/04/17/arts/music/fiona-apple-fetch-the-bolt-cutters.html',\n listen_spotify : '0fO1KemWL2uCCQmM22iKlj',\n listen_apple_music : 'fetch-the-bolt-cutters/1507811635',\n listen_to : 'Shameika',\n video_id : 'yM63Tzv-uZg',\n video_provider : 'youtube',\n alt : 'Fiona Apple performing at the piano on stage.',\n photo_credit : 'Jack Plunkett'\n },\n {\n id : 2,\n artist : 'Waxahatchee',\n title : 'Saint Cloud',\n review : 'What songs these are, genuinely good enough to be compared with peak Dylan: like him, Crutchfield is adept at nestling into the almost comforting niche of heartache and hopping out again with a grin.',\n source : 'The Guardian',\n source_url : 'https://www.theguardian.com/music/2020/mar/27/waxahatchee-saint-cloud-review',\n listen_spotify : '04HMMwLmjkftjWy7xc6Bho',\n listen_apple_music : 'saint-cloud/1493459885',\n listen_to : 'Lilacs',\n video_id : 'OaA7I7B1pOk',\n video_provider : 'youtube',\n alt : 'Portrait photo of Katie Crutchfield looking off to the side.',\n photo_credit : 'Phil Smithies'\n },\n\n {\n id : 3,\n artist : 'Bright Eyes',\n title : 'Down in the Weeds, Where the World Once Was',\n review : 'Unlike the singer’s rootsy solo work, “Down in the Weeds…” is rich in what brought many of us to Bright Eyes in the first place: the drama… There’s the mature reflection he intertwines with his urgency. There’s his hard-fought optimism. And there’s the embrace of community, the sense that Oberst doesn’t want to stare down these songs alone.',\n source : 'The A.V. Club',\n source_url : 'https://music.avclub.com/bright-eyes-brings-the-drama-on-the-sad-lovely-down-in-1844781318',\n listen_spotify : '1GMHBkCYVzWqrrczVDBJKm',\n listen_apple_music : 'down-in-the-weeds-where-the-world-once-was/1516556868',\n listen_to : 'Mariana Trench',\n video_id : 'K4vO8gh6xdM',\n video_provider : 'youtube',\n alt : 'Press photo of the members of Bright Eyes against a bright pink background.',\n photo_credit : 'Shawn Brackbill'\n },\n {\n id : 4,\n artist : 'Brian Fallon',\n title : 'Local Honey',\n review : 'As well as being excellent, “Local Honey” is evidence that the man himself is able to adjust his songwriting to his circumstances without compromising in its quality. It all makes for a seriously sweet listen that reaffirms the Jersey boy as a storyteller and songwriter par excellence.',\n source : 'Kerrang',\n source_url : 'https://www.kerrang.com/reviews/album-review-brian-fallon-local-honey/',\n listen_spotify : '6WvuOTh1OKRSajaaoGMv1N',\n listen_apple_music : 'local-honey/1490021109',\n listen_to : 'You Have Stolen My Heart',\n video_id : 'Zw2wNUZFI9o',\n video_provider : 'youtube',\n alt : 'Black and white photo of Brian Fallon with his back to the camera holding onto a porch beam.',\n photo_credit : 'Kelsey Hunter Ayres'\n },\n {\n id : 5,\n artist : 'Bruce Springsteen',\n title : 'Letter to You',\n review : 'The live recording of this record really helps deliver that communal feeling. They feel so present and close that listeners might feel they’re violating the pandemic rules.',\n source : 'The Independent',\n source_url : 'https://www.independent.co.uk/arts-entertainment/music/reviews/bruce-springsteen-review-letter-to-you-album-trump-b1221105.html',\n listen_spotify : '5devPxQnSKVF2Ed0CVwQZh',\n listen_apple_music : 'letter-to-you/1529959055',\n listen_to : 'If I Was the Priest',\n video_id : '473867176',\n video_provider : 'vimeo',\n alt : 'Black and white photo of Bruce Springsteen surrounded by snow covered trees.',\n photo_credit : 'Danny Clinch'\n },\n {\n id : 6,\n artist : 'Bob Dylan',\n title : 'Rough and Rowdy Ways',\n review : '“Rough and Rowdy Ways” is a typically astounding, kaleidoscopic journey through the last half-century of American history… Dylan lapped us a long time ago. He’s still sprinting far ahead. And now he definitely can’t be caught.',\n source : 'Spin',\n source_url : 'https://www.spin.com/2020/06/bob-dylans-rough-and-rowdy-ways-paints-a-new-masterpiece/',\n listen_spotify : '1Qht64MPvWTWa0aMsqxegB',\n listen_apple_music : 'rough-and-rowdy-ways/1512248541',\n listen_to : 'Goodbye Jimmy Reed',\n video_id : 'W-DG3g-ggdg',\n video_provider : 'youtube',\n alt : 'Bob Dylan in an empty bar with a glass of whiskey, a pool table can be seen in the background.',\n photo_credit : 'Heavens Door'\n },\n {\n id : 7,\n artist : 'Laura Marling',\n title : 'Song for Our Daughter',\n review : '“Song for Our Daughter” is, well, so uncannily, unreasonably and astutely beautiful that it meticulously sets aside every last one of your emotional checks and balances to wrap your core in a firm embrace.',\n source : 'Record Collector',\n source_url : 'https://recordcollectormag.com/reviews/song-for-our-daughter',\n listen_spotify : '0ubXthGSkZfe30Nuj91lcu',\n listen_apple_music : 'song-for-our-daughter/1504725670',\n listen_to : 'Fortune',\n video_id : 'bpE7QQmCbc8',\n video_provider : 'youtube',\n alt : 'Portrait photo of Laura Marling looking at the camera.',\n photo_credit : 'Justin Tyler Close'\n },\n {\n id : 8,\n artist : 'The Front Bottoms',\n title : 'In Sickness & In Flames',\n review : '“In Sickness & In Flames” is one of The Front Bottoms’ most interesting records to date; it’s completely them – and obviously so – yet they change just enough to keep you guessing without alienation.',\n source : 'Beats Per Minute',\n source_url : 'https://beatsperminute.com/album-review-the-front-bottoms-in-sickness-in-flames/',\n listen_spotify : '5JCIlwUVfe5JJt3vHtu7Eo',\n listen_apple_music : 'in-sickness-in-flames/1521498241',\n listen_to : 'Montgomery Forever',\n video_id : 'qq277u8rr0g',\n video_provider : 'youtube',\n alt : 'Black and white photo of Brian Sella and Mat Uychich of The Front Bottoms against a stage curtain. Mat is standing while Brian is sat on a stool.',\n photo_credit : 'Mark Jaworski'\n },\n {\n id : 9,\n artist : 'Jason Isbell and The 400 Unit',\n title : 'Reunions',\n review : 'Seven albums on, Isbell’s achieved a rarified status, one that indulges a need for creativity as well as contemplation. “Reunions” reminds us that it’s the rare artist that succeeds at both.',\n source : 'American Songwriter',\n source_url : 'https://americansongwriter.com/jason-isbell-renunions-album-review-pre-order/',\n listen_spotify : '5XIafkwTpyvL7jjLJx1xKz',\n listen_apple_music : 'reunions/1496052578',\n listen_to : 'Be Afraid',\n video_id : 'Z_mI6V5Sx9Q',\n video_provider : 'youtube',\n alt : 'Jason Isbell staring out the windscreen of a pickup truck with his head on the wheel and resting on his chin.',\n photo_credit : 'Josh Goleman'\n },\n {\n id : 10,\n artist : 'Touché Amore',\n title : 'Lament',\n review : '“Lament” packs a truly heavy punch. There’s a crispness to the production that highlights every drum beat and crashing riff, providing the backdrop to Jeremy’s introspective lyrics.',\n source : 'DIY Magazine',\n source_url : 'https://diymag.com/2020/10/08/touche-amore-lament-album-review',\n listen_spotify : '6fA79mAHNeBhaUnuWBADwc',\n listen_apple_music : 'lament/1522647504',\n listen_to : 'Limelight',\n video_id : 'WAK4GB7LIkw',\n video_provider : 'youtube',\n alt : 'Black and white photo of the members of Touché Amore against a metal link fence.',\n photo_credit : 'Angela Owens'\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Holly Humberstone',\n title : 'Falling Asleep at the Wheel',\n listen_to : 'Vanilla',\n video_id : 'iKFXE6z8MWI',\n video_provider : 'youtube'\n },\n {\n id : 12,\n artist : 'Phoebe Bridgers',\n title : 'Punisher',\n listen_to : 'Kyoto',\n video_id : 'Tw0zYd0eIlk',\n video_provider : 'youtube'\n },\n {\n id : 13,\n artist : 'Brendan Benson',\n title : 'Dear Life',\n listen_to : 'Dear Life',\n video_id : 'gIuRWGqScD0',\n video_provider : 'youtube'\n },\n {\n id : 14,\n artist : 'Hayley Williams',\n title : 'Petals for Armor',\n listen_to : 'Dead Horse',\n video_id : 'eIZkVaM-0K8',\n video_provider : 'youtube'\n },\n {\n id : 15,\n artist : 'Mansions',\n title : 'Big Bad',\n listen_to : 'Black and White',\n video_id : 'LHx-db-OzHE',\n video_provider : 'youtube'\n },\n {\n id : 16,\n artist : 'EOB',\n title : 'Earth',\n listen_to : 'Brasil',\n video_id : 'xefWbfWUbrQ',\n video_provider : 'youtube'\n },\n {\n id : 17,\n artist : 'Green Day',\n title : 'Father of All…',\n listen_to : 'Oh Yeah',\n video_id : 'U3cpdkhtGx0',\n video_provider : 'youtube'\n },\n {\n id : 18,\n artist : 'M. Ward',\n title : 'Migration Stories',\n listen_to : 'Unreal City',\n video_id : '25VuklMFic4',\n video_provider : 'youtube'\n },\n {\n id : 19,\n artist : 'Nada Surf',\n title : 'Never Not Together',\n listen_to : 'So Much Love',\n video_id : 'SETkPwSEgNs',\n video_provider : 'youtube'\n },\n {\n id : 20,\n artist : 'Smashing Pumpkins',\n title : 'Cyr',\n listen_to : 'The Colour of Love',\n video_id : 'g8X8shmJPto',\n video_provider : 'youtube'\n }\n ]\n};\n","export const year2021 = {\n id : 2021,\n title : 'Albums of 2021',\n description : 'As the world emerged from global lockdowns due to the pandemic we got a glimpse into what our favourite musicians had been up to while bunkered down. In the case of many, that was working on some of their best and most personal music to date. Here’s my female dominated list of top albums/EPs of 2021.',\n albums : [\n {\n id : 1,\n artist : 'Tigers Jaw',\n title : 'I Won’t Care How You Remember Me',\n review : '“I Won’t Care How You Remember Me” marks the first true collaborative Tigers Jaw album. The result is a record that feels more emotionally nuanced than anything that’s come before it, and as such feels richer, and lusher than “Spin”.',\n source : 'The Line of Best Fit',\n source_url : 'https://www.thelineofbestfit.com/reviews/albums/tigers-jaw-i-wont-care-how-you-remember-me-album-review',\n listen_spotify : '4ZJsQTaRnAMmwAcTvVxxA7',\n listen_apple_music : 'i-wont-care-how-you-remember-me/1532980195',\n listen_to : 'Lemon Mouth',\n video_id : 'aU7hNbcym4o',\n video_provider : 'youtube',\n alt : 'The members of Tigers Jaw against a pink background with a kaleidoscope effect repeating the various band members.',\n photo_credit : 'Rebecca Lader'\n },\n {\n id : 2,\n artist : 'Julien Baker',\n title : 'Little Oblivions',\n review : 'With “Little Oblivions”, the singer-songwriter has made her most cohesive record yet. The resuscitation of a heavier sound works in Baker’s favour, while she still adds hints of the fragile gentleness that has captivated fans since her “Sprained Ankle” days.',\n source : 'The A.V. Club',\n source_url : 'https://www.avclub.com/julien-baker-s-little-oblivions-is-her-most-vulnerable-1846338748',\n listen_spotify : '3IQRHa9iVLsGlSuVHiHZ3A',\n listen_apple_music : 'little-oblivions/1586464816',\n listen_to : 'Hardline',\n video_id : '6pGBIAiJPF4',\n video_provider : 'youtube',\n alt : 'Julien Baker sat with her hands on her knees against a white background.',\n photo_credit : 'Alysse Gafkjen'\n },\n\n {\n id : 3,\n artist : 'Lucy Dacus',\n title : 'Home Video',\n review : 'At every moment “Home Video” presents a vivid snapshot into an upbringing that fundamentally defines Lucy Dacus’ adulthood. In each tale she finds both loss and hope, a musical representation of the intricate jigsaw of life.',\n source : 'The A.V. Club',\n source_url : 'https://diymag.com/2021/06/24/lucy-dacus-home-video-album-review',\n listen_spotify : '2nwfSapJ3YIq7Ofad4Vuh1',\n listen_apple_music : 'home-video/1586471742',\n listen_to : 'Brando',\n video_id : 'uuNoiAQSvHE',\n video_provider : 'youtube',\n alt : 'Lucy Dacus center picture against a blue background holding a red flower that covers her left eye',\n photo_credit : 'Ebru Yildiz'\n },\n {\n id : 4,\n artist : 'Hayley Williams',\n title : 'FLOWERS for VASES / descansos',\n review : 'Powerful, but in an entirely different way to its predecessor, it’s a record which further proves that the strength of Hayley Williams - as a songwriter, a vocalist, a woman - is still awe-inspiring.',\n source : 'DIY Magazine',\n source_url : 'https://diymag.com/2021/02/04/hayley-williams-flowers-for-vases-descansos-album-review',\n listen_spotify : '3JSvIZCtxK4fUywBK41129',\n listen_apple_music : 'flowers-for-vases-descansos/1551664124',\n listen_to : 'Trigger',\n video_id : 'mLg_dskrBrc',\n video_provider : 'youtube',\n alt : 'Hayley Williams posing facing to the left against a tree and fence with stickers of different colour shapes covering her face.',\n photo_credit : 'Lindsey Byrnes'\n },\n {\n id : 5,\n artist : 'Jade Bird',\n title : 'Different Kinds of Light',\n review : '“Different Kinds of Light,” is the proverbial big step forward, the one that conjures words like “maturity” and finds her becoming a seasoned performer, songwriter and especially singer.',\n source : 'Variety',\n source_url : 'https://variety.com/2021/music/album-reviews/jade-bird-different-kinds-of-light-album-review-1235040300/',\n listen_spotify : '33h7fEWP9jsMrn9OR5yZrJ',\n listen_apple_music : 'different-kinds-of-light/1565000654',\n listen_to : 'Open up the Heavens',\n video_id : 'ZtXjBMQjpLk',\n video_provider : 'youtube',\n alt : 'Jade Bird center picture wearing black in a yellow and orange lit box.',\n photo_credit : 'Colin Lane'\n },\n {\n id : 6,\n artist : 'Courtney Barnett',\n title : 'Things Take Time, Take Time',\n review : 'A fully realized crystallization of her melodic instincts and the themes that she’s previously explored. She wrote most of the album in 2020, holed up alone in a Melbourne apartment while riding out the Covid-19 pandemic, and as such a sense of solitariness permeates its 10 songs.',\n source : 'Slant Magazine',\n source_url : 'https://www.slantmagazine.com/music/courtney-barnett-things-take-time-take-time-album-review/',\n listen_spotify : '0bHIgWK4Ay5lPjYvokxBpz',\n listen_apple_music : 'things-take-time-take-time/1573663472',\n listen_to : 'Before You Gotta Go',\n video_id : 'q5RoMslC9YI',\n video_provider : 'youtube',\n alt : 'Courtney Barnet sat on a bed in a camper van staring out the window with an acoustic guitar in her hand.',\n photo_credit : 'Pooneh Ghana'\n },\n {\n id : 7,\n artist : 'Sleater-Kinney',\n title : 'Path of Wellness',\n review : '“Path Of Wellness” proves Corin Tucker and Carrie Brownstein haven’t forgotten the empowering, life-giving qualities of rock’n’roll fun. Sleater-Kinney are turning their reunion years into a reaffirmation of the importance of support and solidarity on a private, personal level.',\n source : 'Uncut',\n source_url : 'https://www.uncut.co.uk/reviews/album/sleater-kinney-path-of-wellness-132270/',\n listen_spotify : '2EQxYuMIrAs2SjeSZ4iwxA',\n listen_apple_music : 'path-of-wellness/1564473424',\n listen_to : 'Worry With You',\n video_id : '34XX_fg-R_4',\n video_provider : 'youtube',\n alt : 'Carrie Brownstein and Corin Tucker perched on the floor against a red background.',\n photo_credit : 'Nikko LaMere'\n },\n {\n id : 8,\n artist : 'Willy Mason',\n title : 'Already Dead',\n review : 'Mason calls “Already Dead” a spiritual state to aspire to where one is free from the trappings and inhibitions of ego, culture and mythology. It is all these things, and it’s also a really good record.',\n source : 'The Irish Times',\n source_url : 'https://www.irishtimes.com/culture/music/willy-mason-already-dead-a-comforting-hug-from-an-old-friend-1.4637039',\n listen_spotify : '3b21RhhOLcTI7rY6JdeFIM',\n listen_apple_music : 'already-dead/1553947316',\n listen_to : 'Outwit the Devil',\n video_id : 'eKvo8UnwaoA',\n video_provider : 'youtube',\n alt : 'Willy Mason in a dark grey suit sat on the stairs with one hand on the railing.',\n photo_credit : ''\n },\n {\n id : 9,\n artist : 'LUMP',\n title : 'Animal',\n review : 'From the bombastic earworm title track to the pulsating requiem that is “Paradise”, to the twisted pop spectacle “We Cannot Resist”, “Animal” is utterly intoxicating – something that cannot be contained. Surrender to it.',\n source : 'The Skinny',\n source_url : 'https://www.theskinny.co.uk/music/reviews/albums/lump-animal',\n listen_spotify : '1UiSJKr1F1Y3ZwbCw67JV2',\n listen_apple_music : 'animal/1565398489',\n listen_to : 'Animal',\n video_id : '7Ckt_SPTk5A',\n video_provider : 'youtube',\n alt : 'Laura Marling and Mike Lindsay of LUMP sat staring off camera in a living room with a bookshelf above them and window to the right',\n photo_credit : 'El Hardwick'\n },\n\n {\n id : 10,\n artist : 'Snail Mail',\n title : 'Valentine',\n review : 'Throughout “Valentine”, Jordan reaches a new height of expression that practically demands to be heard and felt… Over “Valentine”, Jordan takes turmoil and heartache and creates something beautiful from the mess.',\n source : 'The A.V. Club',\n source_url : 'https://www.avclub.com/snail-mail-s-valentine-is-a-soul-stirring-study-in-vuln-1847982017',\n listen_spotify : '0zNWhYDalgisc4uweLIGZJ',\n listen_apple_music : 'valentine/1581498462',\n listen_to : 'Ben Franklin',\n video_id : 'DUU9xxIb91g',\n video_provider : 'youtube',\n alt : 'Lindsey Jordan center picture in a pink suit against a red background.',\n photo_credit : 'Tina Tyrell'\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Manchester Orchestra',\n title : 'The Million Masks of God',\n listen_to : 'Bed Head',\n video_id : '-voZou1JllY',\n video_provider : 'youtube'\n },\n {\n id : 12,\n artist : 'Holly Humberstone',\n title : 'The Walls Are Way Too Thin - EP',\n listen_to : 'The Walls Are Way Too Thin',\n video_id : '36hmuTxo88U',\n video_provider : 'youtube'\n },\n {\n id : 13,\n artist : 'Foo Fighters',\n title : 'Medicine at Midnight',\n listen_to : 'No Son of Mine',\n video_id : 'xAVfdoovrIU',\n video_provider : 'youtube'\n },\n {\n id : 14,\n artist : 'St. Vincent',\n title : 'Daddy’s Home',\n listen_to : 'Down',\n video_id : 'VQ9iAlm-sJ8',\n video_provider : 'youtube'\n },\n {\n id : 15,\n artist : 'We Are Scientists',\n title : 'Huffy',\n listen_to : 'I Cut My Own Hair',\n video_id : 'JGsiLe3g724',\n video_provider : 'youtube'\n },\n {\n id : 16,\n artist : 'Laura Stevenson',\n title : 'Laura Stevenson',\n listen_to : 'Sky Blue, Bad News',\n video_id : 'PyvnSJU5bjQ',\n video_provider : 'youtube'\n },\n {\n id : 17,\n artist : 'Japanese Breakfast',\n title : 'Jubilee',\n listen_to : 'Be Sweet',\n video_id : '2ZfcZEIo6Bw',\n video_provider : 'youtube'\n },\n {\n id : 18,\n artist : 'Wolf Alice',\n title : 'Blue Weekend',\n listen_to : 'The Beach',\n video_id : '0xjD7KbxgGQ',\n video_provider : 'youtube'\n },\n {\n id : 19,\n artist : 'Brian Fallon',\n title : 'Night Divine',\n listen_to : 'Virgin Mary Had One Son',\n video_id : 'kJKCqINsdFE',\n video_provider : 'youtube'\n },\n {\n id : 20,\n artist : 'Manic Street Preachers',\n title : 'The Ultra Vivid Lament',\n listen_to : 'The Secret He Had Missed',\n video_id : '4Q3sDyp3mbo',\n video_provider : 'youtube'\n }\n ]\n};\n","export const year2022 = {\n id : 2022,\n title : 'Albums of 2022',\n description : 'This year saw some great comeback albums from some classic rock acts such as Wilco and Pixies and some pretty awesome supergroup team ups like The Smile and Plains. Here’s my list of top albums/EPs of 2022.',\n albums : [\n {\n id : 1,\n artist : 'Plains',\n title : 'I Walked With You a Ways',\n review : 'These are warm, lived-in songs, the sort that feel instantly classic, becoming canon without ever feeling like they’re trying all that hard to.',\n source : 'Beats Per Minute',\n source_url : 'https://beatsperminute.com/album-review-plains-i-walked-with-you-a-ways/',\n listen_spotify : '7mdK7vYHrLMzPHGeGXQN0h',\n listen_apple_music : 'i-walked-with-you-a-ways/1632419791',\n listen_to : 'Problem With It',\n video_id : 'YPNFSXjVH_o',\n video_provider : 'youtube',\n alt : 'Katie Crutchfield and Jess Williamson stand side by side against a deserted landscape.',\n photo_credit : 'Molly Matalon'\n },\n {\n id : 2,\n artist : 'The Smile',\n title : 'A Light for Attracting Attention',\n review : 'Brilliant stuff is still very much spooling out of Thom Yorke. His voice is revelatory on these tracks, better than ever, a peerless instrument; buttery and mellifluous in falsetto, snide and viperish on the growly bits. His magpie instincts for a tart one-liner remain razor sharp.',\n source : 'Clash Music',\n source_url : 'https://www.clashmusic.com/reviews/the-smile-a-light-for-attracting-attention/',\n listen_spotify : '009EjjwUjtdjvH7UP0wHzi',\n listen_apple_music : 'a-light-for-attracting-attention/1616902433',\n listen_to : 'Free in the Knowledge',\n video_id : 'CXbncoiKLn8',\n video_provider : 'youtube',\n alt : 'The members of The Smile against a blue background with frontman Thom Yorke looking down at the ground.',\n photo_credit : 'Alex Lake'\n },\n\n {\n id : 3,\n artist : 'Kevin Devine',\n title : 'Nothing’s Real, So Nothing’s Wrong',\n review : 'With crisp as-ever songwriting, stellar production, and fantastic sequencing, Kevin Devine’s “Nothing’s Real, So Nothing’s Wrong” is not only another classic in his discography but a work of art that shines in a dimming world.',\n source : 'Swim in to the Sound',\n source_url : 'https://swimintothesound.com/blog/2022/3/28/kevin-devine-nothings-real-so-nothings-wrong-album-review',\n listen_spotify : '03YlnELcEtOSHr8MBA9IBd',\n listen_apple_music : 'nothings-real-so-nothings-wrong/1599962401',\n listen_to : 'Albatross',\n video_id : 'H7L4HRJs4lI',\n video_provider : 'youtube',\n alt : 'Kevin Devine shot in black in white with his hands in his coat pockets.',\n photo_credit : 'Erik Tanner'\n },\n {\n id : 4,\n artist : 'Pixies',\n title : 'Doggerel',\n review : '“Doggerel”, in its hospitably decanted way, is every bit as transportive and absorbing as the early records, and further proof that Pixies’ music remains the alt-rock gold standard. Swill it around and savour.',\n source : 'NME',\n source_url : 'https://www.nme.com/reviews/album/pixies-doggerel-review-still-the-alt-rock-gold-standard-3319645',\n listen_spotify : '2Z7bVVJJrnoLILscuubJIU',\n listen_apple_music : 'doggerel/1626175011',\n listen_to : 'Vault of Heaven',\n video_id : 'csTJW6A1174',\n video_provider : 'youtube',\n alt : 'The members of Pixies in a red spotlight as frontman Frank Black looks up to the sky.',\n photo_credit : 'Travis Shinn'\n },\n {\n id : 5,\n artist : 'Frank Turner',\n title : 'FTHC',\n review : '“FTHC” is likely to hit hardest with those who have grown with Frank, witnessing his evolution and the ways in which it’s helped chronicle their own. That’s not to say there’s not much to enjoy for new fans, though, who will no doubt find an empathetic ally in a man whose honesty and anger and heart continue to inspire.',\n source : 'Kerrang',\n source_url : 'https://www.kerrang.com/album-review-frank-turner-fthc-hardcore-folk-punk',\n listen_spotify : '0iJXDWIGaGm6bLmhK6Efj8',\n listen_apple_music : 'fthc-deluxe/1584829782',\n listen_to : 'Non-Serviam',\n video_id : 'FutOmkhF9DY',\n video_provider : 'youtube',\n alt : 'Frank Turner in a white shirt and black tie performing live.',\n photo_credit : 'Nicole Gowan'\n },\n {\n id : 6,\n artist : 'Death Cab for Cutie',\n title : 'Asphalt Meadows',\n review : 'They’ve managed to create an album that feels fresh while also being the closest they’ve come to recreating the magic of earlier records. This is a band that has finally found a way to evolve without eliminating what it was that made them so special in the first place.',\n source : 'Exclaim',\n source_url : 'https://exclaim.ca/music/article/death_cab_for_cutie_asphalt_meadows_review',\n listen_spotify : '2PIWPTOIxbaVSjTnc30vXS',\n listen_apple_music : 'asphalt-meadows/1621735243',\n listen_to : 'Roman Candles',\n video_id : 'AE7Tt3gw8Aw',\n video_provider : 'youtube',\n alt : 'A group shot of Death Cab for Cutie against a cream background with frontman Ben Gibbard seated and looking to the side.',\n photo_credit : 'Jimmy Fontaine'\n },\n {\n id : 7,\n artist : 'Dashboard Confessional',\n title : 'All the Truth That I Can Tell',\n review : 'For listeners who miss the simpler early days, “All the Truth That I Can Tell” is a treasure trove of comfort and familiarity, an utterly relatable collection of growth and hope tempered by the starkness of reality.',\n source : 'AllMusic',\n source_url : 'https://www.allmusic.com/album/all-the-truth-that-i-can-tell-mw0003623985',\n listen_spotify : '7e8ZKs0jaBUKF0jHjbs0bD',\n listen_apple_music : 'all-the-truth-that-i-can-tell/1580384081',\n listen_to : 'Here’s to Moving On',\n video_id : 'cvXdAj2SOfo',\n video_provider : 'youtube',\n alt : 'Chris Carrabba of Dashboard Confessional facing the camera with one arm on the other shoulder against an orange background.',\n photo_credit : 'Lupe Bustos'\n },\n {\n id : 8,\n artist : 'Wilco',\n title : 'Cruel Country',\n review : '“Cruel Country” is neither ironic, nor frivolous: it’s a sprawling double-album that stands as one of Wilco’s best, an ever-moving meditation on the quest for connection in a country that’s often cruel but always worthy, in Tweedy’s eyes, of forgiveness.',\n source : 'Clash Music',\n source_url : 'https://www.clashmusic.com/reviews/wilco-cruel-country/',\n listen_spotify : '67GC6lWDvJ0lUc1aVBXTcT',\n listen_apple_music : 'cruel-country/1621315138',\n listen_to : 'A Lifetime to Find',\n video_id : 'lNeQQdIlL1A',\n video_provider : 'youtube',\n alt : 'Jeff Tweedy of Wilco performing live with an acoustic guitar against a mutli-coloured backdrop',\n photo_credit : 'Josh Brasted'\n },\n {\n id : 9,\n artist : 'Alex G',\n title : 'God Save the Animals',\n review : 'With “God Save the Animals”, these genre-resistant idiosyncrasies remain, though a few moments shine through with newfound clarity and vulnerability. Across the diverse and consistently excellent 13-track record, he hops between styles, perspectives and energies with abandon.',\n source : 'NME',\n source_url : 'https://www.nme.com/reviews/album/alex-g-god-save-the-animals-album-review-3311772',\n listen_spotify : '6TzgWk5HZItbFmMT7hH4bU',\n listen_apple_music : 'god-save-the-animals/1621299044',\n listen_to : 'Runner',\n video_id : 'JFaMCIVHz2I',\n video_provider : 'youtube',\n alt : 'Alex G in a green jumper sat in a white chair leaning on a white balcony.',\n photo_credit : 'Tonje Thilesen'\n },\n\n {\n id : 10,\n artist : 'Stella Donnelly',\n title : 'Flood',\n review : '“Flood” is a superb album, by an artist who hasn’t even given us a glimpse of her potential. It’s charming and enjoyable and engaging and attractive and all of the adjectives you could ever want out of an indie-pop record - and not only does it hold up to multiple listens, it actually seems to expand and grow in stature with each run-through.',\n source : 'The Line of Best Fit',\n source_url : 'https://www.thelineofbestfit.com/albums/stella-donnelly-flood-excellently-charming-engagin',\n listen_spotify : '3un2FDbZwuK5JidL4OFaTW',\n listen_apple_music : 'flood/1619791776',\n listen_to : 'How Was Your Day?',\n video_id : 'MyV1dN2efgU',\n video_provider : 'youtube',\n alt : 'Stella Donnelly stood in a red tartan coat in front of a wall of polaroid pictures.',\n photo_credit : 'Timothy Cochrane'\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Spoon',\n title : 'Lucifer on the Sofa',\n listen_to : 'Wild',\n video_id : 'eDPhsByCL_o',\n video_provider : 'youtube'\n },\n {\n id : 12,\n artist : 'Belle and Sebastian',\n title : 'A Bit of Previous',\n listen_to : 'Unnecessary Drama',\n video_id : 'h2-RZSVHNVQ',\n video_provider : 'youtube'\n },\n {\n id : 13,\n artist : 'Dan Andriano & The Bygones',\n title : 'Dear Darkness',\n listen_to : 'Dear Darkness',\n video_id : 'CXdCKuYFxL0',\n video_provider : 'youtube'\n },\n {\n id : 14,\n artist : 'Jack White',\n title : 'Entering Heaven Alive',\n listen_to : 'Love Is Selfish',\n video_id : 'Sul6nqGgjiE',\n video_provider : 'youtube'\n },\n {\n id : 15,\n artist : 'Yeah Yeah Yeahs',\n title : 'Cool It Down',\n listen_to : 'Burning',\n video_id : 'vSffKUyr0lk',\n video_provider : 'youtube'\n },\n {\n id : 16,\n artist : 'Mitski',\n title : 'Laurel Hell',\n listen_to : 'Love Me More',\n video_id : 'P4J3Z9xgjWQ',\n video_provider : 'youtube'\n },\n {\n id : 17,\n artist : 'Red Hot Chili Peppers',\n title : 'Unlimited Love',\n listen_to : 'Black Summer',\n video_id : 'OS8taasZl8k',\n video_provider : 'youtube'\n },\n {\n id : 18,\n artist : 'Big Thief',\n title : 'Dragon New Warm Mountain I Believe in You',\n listen_to : 'Red Moon',\n video_id : 'VMD2OGlgAEg',\n video_provider : 'youtube'\n },\n {\n id : 19,\n artist : 'The Dangerous Summer',\n title : 'Coming Home',\n listen_to : 'Coming Home',\n video_id : 'KT45VDlmsz4',\n video_provider : 'youtube'\n },\n {\n id : 20,\n artist : 'Soccer Mommy',\n title : 'Sometimes, Forever',\n listen_to : 'Shotgun',\n video_id : 'I1xOoqD8jkI',\n video_provider : 'youtube'\n }\n ]\n};\n","export const year2023 = {\n id : 2023,\n title : 'Albums of 2023',\n description : 'This year saw some great comeback albums from some classic rock acts such as The Gaslight Anthem, Ash, and Foo Fighters, while boygenius, Feist, Jenny Lewis and Jess Williamson continued to push their music in interesting new directions. Here’s my list of top albums/EPs of 2023.',\n albums : [\n {\n id : 1,\n artist : 'boygenius',\n title : 'the record',\n review : 'While all three women may continue on to even greater heights as individuals, “the record” offers something so much more than the sum of its parts. It’s a covenant between three soulmates, a trio of best friends ready to carry the torch for a new musical generation.',\n source : 'Consequence',\n source_url : 'https://consequence.net/2023/03/boygenius-the-record-review/',\n listen_spotify : '0e9GjrztzBw8oMC6n2CDeI',\n listen_apple_music : 'the-record/1666138312',\n listen_to : 'Not Strong Enough',\n video_id : 'bIX_ouNJsTs',\n video_provider : 'youtube',\n alt : 'The members of Boygenius in a line facing left with the sea in the background.',\n photo_credit : 'Matt Grubb'\n },\n {\n id : 2,\n artist : 'Feist',\n title : 'Multitudes',\n review : 'With “Multitudes” Feist has entered a new era in her artistry, one in which she makes space for reverie. Her grand realizations are beautifully stated.',\n source : 'The Line of Best Fit',\n source_url : 'https://www.thelineofbestfit.com/albums/feist-multitudes-fearless-courages',\n listen_spotify : '1p4Q0pUvvURdCwC842Abjn',\n listen_apple_music : 'multitudes/1667826684',\n listen_to : 'Borrow Trouble',\n video_id : 'FVx9TLR3XH0',\n video_provider : 'youtube',\n alt : 'Leslie Feist facing the camera in a beige wool jumper against a black backdrop.',\n photo_credit : 'Mary Rozzi'\n },\n\n {\n id : 3,\n artist : 'Jess Williamson',\n title : 'Time Ain’t Accidental',\n review : 'Even though many of the characters are heartbroken or wracked with anxiety, Williamson navigates modern life using timeless tropes that lend “Time Ain’t Accidental” an immense, gratifying confidence.',\n source : 'Pitchfork',\n source_url : 'https://pitchfork.com/reviews/albums/jess-williamson-time-aint-accidental/',\n listen_spotify : '1hh0GMMCLN9hYcLtOSWxTZ',\n listen_apple_music : 'time-aint-accidental/1659925124',\n listen_to : 'Time Ain’t Accidental',\n video_id : 'Jati994bBEU',\n video_provider : 'youtube',\n alt : 'Jess Williamson sat in the back of a pickup truck with a dog on her lap.',\n photo_credit : 'Jackie Lee Young'\n },\n {\n id : 4,\n artist : 'Ash',\n title : 'Race the Night',\n review : 'Five years on and Irish rockers Ash return with a bang on their first album for five years. Album number eight is a heady collection of anthems and proves they still have it after 30 years of nuclear sound.',\n source : 'Louder Than War',\n source_url : 'https://louderthanwar.com/ash-race-the-night-album-review/',\n listen_spotify : '5TmUKuohnkb7ndRNKdCgBE',\n listen_apple_music : 'race-the-night/1691910672',\n listen_to : 'Race the Night',\n video_id : 'EYXPIZfJAz0',\n video_provider : 'youtube',\n alt : 'The members of Ash against a pink and purple marble backdrop.',\n photo_credit : 'Steve Gullick'\n },\n {\n id : 5,\n artist : 'The Gaslight Anthem',\n title : 'History Books',\n review : '“History Books” picks up exactly where the band left off, but with a renewed wind in their sails. Big guitars, anthemic singalongs and bruised and bloodied ballads are in no short supply, while Fallon’s existential lyricism reveals a renewed nuance to his songwriting.',\n source : 'Clash Music',\n source_url : 'https://www.clashmusic.com/reviews/the-gaslight-anthem-history-books/',\n listen_spotify : '1GxcyEReAOxieTKZZcivlJ',\n listen_apple_music : 'history-books/1694394095',\n listen_to : 'Positive Charge',\n video_id : 'Rymbk5I_WlA',\n video_provider : 'youtube',\n alt : 'Brain Fallon performing live with a sunburst Fender Stratocaster guitar against a white and blue backdrop.',\n photo_credit : 'Taylor Hill'\n },\n {\n id : 6,\n artist : 'Paramore',\n title : 'This Is Why',\n review : 'It is an overall cohesive and grand statement of an album which opens with familiar sounds, and explores jutting, pointed off-shoots, before crescendoing with “Thick Skull”’s cataclysmic pop, all the while holding a relative level of self-involvement and privilege.',\n source : 'The Line of Best Fit',\n source_url : 'https://www.thelineofbestfit.com/albums/paramore-this-is-why-dance-away-stress',\n listen_spotify : '6tG8sCK4htJOLjlWwb7gZB',\n listen_apple_music : 'this-is-why/1646945378',\n listen_to : 'This Is Why',\n video_id : 'xIYJ7VaSxYY',\n video_provider : 'youtube',\n alt : 'Hayley Williams sat on a chair with the other band members leaning on her knees',\n photo_credit : 'Zachary Gray'\n },\n {\n id : 7,\n artist : 'Foo Fighters',\n title : 'But Here We Are',\n review : '“But Here We Are” is a beautiful, noisy celebration of brotherhood and a stark, painful exploration of loss. It is messy, gut-wrenching, ambitious and gorgeous, as the remaining members of Foo Fighters push themselves to their limits and beyond. Through it all, “But Here We Are” is an undeniable reminder of the healing, unifying power of music.',\n source : 'NME',\n source_url : 'https://www.nme.com/reviews/album/foo-fighters-but-here-we-are-review-3448438',\n listen_spotify : '4wp4aWWpoYfNcspimVAnel',\n listen_apple_music : 'album/but-here-we-are/1682993466',\n listen_to : 'Under You',\n video_id : 'ms6b2w9U_Kg',\n video_provider : 'youtube',\n alt : 'Dave Grohl performing live with his custom blue Gibson DG-335 guitar, against a dark blue backdrop.',\n photo_credit : 'Medios y Media'\n },\n {\n id : 8,\n artist : 'Jenny Lewis',\n title : 'Joy’All',\n review : '“Joy’All” is the sound of a woman who has accepted herself — her past and her present — and now just wants to cut loose. Her broken heart still bears bruises, but it has healed enough to keep her moving. When life hands Lewis lemons now, she makes Lynchburg lemonade.',\n source : 'Rolling Stone',\n source_url : 'https://www.rollingstone.com/music/music-album-reviews/jenny-lewis-joyall-review-1234765851/',\n listen_spotify : '2TF6deaYHbiP5xepwFYbd1',\n listen_apple_music : 'joyall/1677437609',\n listen_to : 'Psychos',\n video_id : 'vlNVtA6Lgu4',\n video_provider : 'youtube',\n alt : 'Jenny Lewis in a black and white jumpsuit, stood in a conservatory with a garden and plants visible through the windows.',\n photo_credit : 'Ariel Fisher'\n },\n {\n id : 9,\n artist : 'The Menzingers',\n title : 'Some Of It Was True',\n review : 'It’s all written with smartness, a rough, street poetry, and a huge dollop of Americana populated by burned-out restaurants and big cars and rock’n’roll dreamers and John Hughes suburbia.',\n source : 'Kerrang!',\n source_url : 'https://www.kerrang.com/album-review-the-menzingers-some-of-it-was-true',\n listen_spotify : '1haMGMoO3UjtVB1l3BHMFZ',\n listen_apple_music : 'some-of-it-was-true/1698521921',\n listen_to : 'Come on Heartache',\n video_id : 'KLJhGiaJPt8',\n video_provider : 'youtube',\n alt : 'The band members of The Menzingers in a white room.',\n photo_credit : 'Jess Flynn'\n },\n\n {\n id : 10,\n artist : 'Noel Gallagher’s High Flying Birds',\n title : 'Council Skies',\n review : 'The way these splashes of color and invention intertwine with the carefully sculpted ballads result in a testament to Gallagher’s enduring craft that’s unusually satisfying.',\n source : 'AllMusic',\n source_url : 'https://www.allmusic.com/album/council-skies-mw0003911844',\n listen_spotify : '3chNtIzZ4hmmMVeq723m3f',\n listen_apple_music : 'council-skies/1659899818',\n listen_to : 'Council Skies',\n video_id : 'awQYXYn1kWQ',\n video_provider : 'youtube',\n alt : 'Noel Gallagher live on stage playing a red Gibson ES-355 guitar against a dark blue backdrop.',\n photo_credit : 'Ross Gilmore'\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'The Front Bottoms',\n title : 'You Are Who You Hang Out With',\n listen_to : 'Outlook',\n video_id : 'hZtHMd0nAK4',\n video_provider : 'youtube'\n },\n {\n id : 12,\n artist : 'Belle and Sebastian',\n title : 'Late Developers',\n listen_to : 'I Don’t Know What You See in Me',\n video_id : 'dgao0WD5g48',\n video_provider : 'youtube'\n },\n {\n id : 13,\n artist : 'Screaming Females',\n title : 'Desire Pathway',\n listen_to : 'Mourning Dove',\n video_id : 'lZlPcJ6XcXI',\n video_provider : 'youtube'\n },\n {\n id : 14,\n artist : 'The Rolling Stones',\n title : 'Hackney Diamonds',\n listen_to : 'Mess It Up',\n video_id : 'vTUKj4e3vd4',\n video_provider : 'youtube'\n },\n {\n id : 15,\n artist : 'Rancid',\n title : 'Tomorrow Never Comes',\n listen_to : 'Devil in Disguise',\n video_id : 'hsdCQjmlUFE',\n video_provider : 'youtube'\n },\n {\n id : 16,\n artist : 'We Are Scientists',\n title : 'Lobes',\n listen_to : 'Turn It Up',\n video_id : 's8hPY9W-5ZU',\n video_provider : 'youtube'\n },\n {\n id : 17,\n artist : 'Mansions',\n title : 'Tuff Luff',\n listen_to : 'Something Sweet',\n video_id : 'OooS-CZIlY4',\n video_provider : 'youtube'\n },\n {\n id : 18,\n artist : 'Holly Humberstone',\n title : 'Paint My Bedroom Black',\n listen_to : 'Elvis Impersonators',\n video_id : '6_aSQ9G1WPo',\n video_provider : 'youtube'\n },\n {\n id : 19,\n artist : 'The National',\n title : 'First Two Pages of Frankenstein',\n listen_to : 'Eucalyptus',\n video_id : 'MSywJt3VlUM',\n video_provider : 'youtube'\n },\n {\n id : 20,\n artist : 'Blur',\n title : 'The Ballad of Darren',\n listen_to : 'St. Charles Square',\n video_id : 'OwReCTWEotU',\n video_provider : 'youtube'\n }\n ]\n};\n","export const year2024 = {\n id : 2024,\n title : 'Albums of 2024',\n description : '2024 was a year of epic comebacks from legendary rock bands like The Libertines, Pixies, and Jack White. Meanwhile, Waxahatchee, Maggie Rogers, and The Smile kept innovating and pushing their music to new heights. Here’s my list of the best albums and EPs of the year.',\n albums : [\n {\n id : 1,\n artist : 'Waxahatchee',\n title : 'Tigers Blood',\n review : 'Another beautiful slice of country-tinged magic that never descends into nostalgia.',\n source : 'Paste',\n source_url : 'https://www.pastemagazine.com/music/waxahatchee/tigers-blood-is-waxahatchees-latest-triumph-of-radical-clear-eyed-honesty',\n listen_spotify : '2n3HUMLmNl0Cm2atVwWSK6',\n listen_apple_music : 'tigers-blood/1721222332',\n listen_to : 'Right Back to It',\n video_id : 'YL3iHhERWJw',\n video_provider : 'youtube',\n alt : 'Katie Crutchfield in a baseball cap and green and blue check shirt against a red building.',\n photo_credit : 'Molly Matalon'\n },\n {\n id : 2,\n artist : 'Jack White',\n title : 'No Name',\n review : 'The playing here is terrific and as good as, if not better than, anything on De Stijl, Elephant and Icky Thump; the writing is locked in and the production sounds as consistent as anything he’s ever manned. Throughout the 43 minute-runtime of No Name, Jack White sounds like everything you need him to be.',\n source : 'Paste',\n source_url : 'https://www.pastemagazine.com/music/jack-white/jack-white-rewires-his-circuitry-on-no-name',\n listen_spotify : '4j6OkbZmVIqJYDLJbiWHbX',\n listen_apple_music : 'no-name/1760057427',\n listen_to : 'That’s How I’m Feeling',\n video_id : 'A3neCOTqfj8',\n video_provider : 'youtube',\n alt : 'Jack White sat on a light blue crapet against a dark blue wall with a Fender Triplecaster guitar.',\n photo_credit : 'David James Swanson'\n },\n {\n id : 3,\n artist : 'Vampire Weekend',\n title : 'Only God Was Above Us',\n review : 'When Only God Was Above Us isn’t shattering glass ceilings, it’s delivering some of the most beautiful but disquieting indie-rock in recent memory.',\n source : 'Sputnikmusic',\n source_url : 'https://www.sputnikmusic.com/review/88416/Vampire-Weekend-Only-God-Was-Above-Us/',\n listen_spotify : '1W04wu2W4OIcuiNc5AMB3y',\n listen_apple_music : 'only-god-was-above-us/1728945682',\n listen_to : 'Capricorn',\n video_id : '8lCmyFCj580',\n video_provider : 'youtube',\n alt : 'The members of Vampire Weekend against a grey background. Ezra is holding a brown dog.',\n photo_credit : 'Jennifer McCord'\n },\n {\n id : 4,\n artist : 'Maggie Rogers',\n title : 'Don’t Forget Me',\n review : 'Each note feels necessary, each word feels heartfelt – in chipping away at the excess to reveal these personal snapshots, Maggie Rogers has unlocked something very special indeed.',\n source : 'Clash Music',\n source_url : 'https://www.clashmusic.com/reviews/maggie-rogers-dont-forget-me/ ',\n listen_spotify : '3q149oaxOiW9EoHXqM5nvO',\n listen_apple_music : 'dont-forget-me/1727422029',\n listen_to : 'Don’t Forget Me',\n video_id : 'JHh3w5xgSkc',\n video_provider : 'youtube',\n alt : 'Reflection of Maggie Rogers in a bathroom mirror taking a photo of herself.',\n photo_credit : 'Maggie Rogers'\n },\n {\n id : 5,\n artist : 'The Smile',\n title : 'Wall of Eyes / Cutouts',\n review : 'It’s wonderful to find so many moreish layers in music that was, apparently, composed so quickly. Grab yourself a bean bag and settle in for the long haul with this one.',\n source : 'Independent',\n source_url : 'https://www.independent.co.uk/arts-entertainment/music/reviews/the-smile-wall-of-eyes-radiohead-b2484698.html',\n listen_spotify : '6PdPOv5ybKZ9ZuGMk5iGZd',\n listen_apple_music : 'wall-of-eyes/1711359135',\n listen_to : 'Zero Sum',\n video_id : 'TJ4lG5Szr50',\n video_provider : 'youtube',\n alt : 'The members of The Smile posing in front of a river surrounded by greenery and shrubs.',\n photo_credit : 'Frank LeBon'\n },\n {\n id : 6,\n artist : 'Feeder',\n title : 'Black / Red',\n review : 'Feeder are still more than capable of springing a surprise – lord alone knows what odds you’d have got on the poignant “Soldiers of Love” sporting a bagpipes intro, 30 years after they first blasted out of South Wales.',\n source : 'Kerrang',\n source_url : 'https://www.kerrang.com/album-review-feeder-black-red',\n listen_spotify : '5OEuYee2wiiEIUZ9SWwi50',\n listen_apple_music : 'black-red/1707441808',\n listen_to : 'Hey You',\n video_id : 'b2LfjJS7nNg',\n video_provider : 'youtube',\n alt : 'Grant and Taka from Feeder in front of a grey concrete wall',\n photo_credit : 'Steve Gullick'\n },\n {\n id : 7,\n artist : 'Bright Eyes',\n title : 'Five Dice, All Threes',\n review : 'Five Dices, All Three is more than a body of music, it is a declaration of wisdom and creative expression with the type of artistry that leaves the listeners with revelations or suspicions of the world around them.',\n source : 'Under the Radar',\n source_url : 'https://www.undertheradarmag.com/reviews/five_dice_all_threes_bright_eyes',\n listen_spotify : '7fA59NGyyUumdoTH3HmWav',\n listen_apple_music : 'five-dice-all-threes/1750048157',\n listen_to : 'Rainbow Overpass',\n video_id : 'ahveZUbrvHo',\n video_provider : 'youtube',\n alt : 'The three members of Bright Eyes leaning against arcade machines with Conor Oberst sat on the floor.',\n photo_credit : 'Nik Freitas'\n },\n {\n id : 8,\n artist : 'Pixies',\n title : 'The Night the Zombies Came',\n review : '“The Night the Zombies Came” isn’t an album for the uninspired or your average Joe – it’s a bible for the daydreaming visionary who finds beauty in the mundane.',\n source : 'Clash Music',\n source_url : 'https://www.clashmusic.com/reviews/pixies-the-night-the-zombies-came/',\n listen_spotify : '2kL3JicKZpvBfIeDeDPDUX',\n listen_apple_music : 'the-night-the-zombies-came/1752673463',\n listen_to : 'Motoroller',\n video_id : 'UmZMaqS_-dU',\n video_provider : 'youtube',\n alt : 'The four members of Pixies in a black room with a spotlight on them.',\n photo_credit : 'Liam Maxwell'\n },\n {\n id : 9,\n artist : 'The Libertines',\n title : 'All Quiet On The Eastern Esplanade',\n review : 'Variously embracing fado, jazzy whiskey-bar blues and tensile, grandiose strings, “All Quiet On The Eastern Esplanade” is easily The Libertines’ most expansive and ambitious record.',\n source : 'Independent',\n source_url : 'https://www.independent.co.uk/arts-entertainment/music/reviews/libertines-black-keys-review-b2522515.html',\n listen_spotify : '0RQPuyaKyrEG8lSkl089zC',\n listen_apple_music : 'all-quiet-on-the-eastern-esplanade/1710572856',\n listen_to : 'Night of the Hunter',\n video_id : '3Z5_Hq8uvio',\n video_provider : 'youtube',\n alt : 'The four members of The Libertines sat on the stairs in a black room.',\n photo_credit : 'Ed Cooke'\n },\n\n {\n id : 10,\n artist : 'Frank Turner',\n title : 'Undefeated',\n review : 'Raw, in fact, is a good way to describe much of this album. Likely a result of the self-production, it feels very real and close to who Frank truly is – especially on the gentle penultimate track, “Somewhere Inbetween”, another song which seems to reference the perception people on the outside have of him',\n source : 'Kerrang',\n source_url : 'https://www.kerrang.com/album-review-frank-turner-undefeated',\n listen_spotify : '5htcBxqWfEWaZ7CCETXcH9',\n listen_apple_music : 'undefeated/1721089275',\n listen_to : 'Somewhere Inbetween',\n video_id : 'YoRhB6tG4qo',\n video_provider : 'youtube',\n alt : 'Frank Turner sat in an old room looking out the window with a lamp and books on the side table.',\n photo_credit : 'Shannon Shumaker'\n }\n ],\n kudosAlbums : [\n {\n id : 11,\n artist : 'Alkaline Trio',\n title : 'Blood, Hair, and Eyeballs',\n listen_to : 'Bad Time',\n video_id : 'UX6CmPG2Cjs',\n video_provider : 'youtube'\n },\n {\n id : 12,\n artist : 'Sleater Kinney',\n title : 'Little Rope',\n listen_to : 'Say It Like You Mean It',\n video_id : 'Vp2z1cL6qoU',\n video_provider : 'youtube'\n },\n {\n id : 13,\n artist : 'The Decemberists',\n title : 'As It Ever Was, So It Will Be Again',\n listen_to : 'Oh No!',\n video_id : 'pAmJYu2UVyU',\n video_provider : 'youtube'\n },\n {\n id : 14,\n artist : 'Laura Marling',\n title : 'Patterns in Repeat',\n listen_to : 'Patterns',\n video_id : 'tSeJqLyeCeE',\n video_provider : 'youtube'\n },\n {\n id : 15,\n artist : 'Adrianne Lenker',\n title : 'Bright Future',\n listen_to : 'Evol',\n video_id : 'PzS2zeI5rq4',\n video_provider : 'youtube'\n },\n {\n id : 16,\n artist : 'J Mascis',\n title : 'What Do We Do Now',\n listen_to : 'Can’t Believe We’re Here',\n video_id : 'SOgibRJxp8g',\n video_provider : 'youtube'\n },\n {\n id : 17,\n artist : 'Green Day',\n title : 'Saviors',\n listen_to : 'Look Ma, No Brains!',\n video_id : 'jH3wmjaoADY',\n video_provider : 'youtube'\n },\n {\n id : 18,\n artist : 'The Black Keys',\n title : 'Ohio Players',\n listen_to : 'Beautiful People (Stay High)',\n video_id : 'iWz9H3MPgqI',\n video_provider : 'youtube'\n },\n {\n id : 19,\n artist : 'St. Vincent',\n title : 'All Born Screaming',\n listen_to : 'Big Time Nothing',\n video_id : 'nWW4tFuzxGE',\n video_provider : 'youtube'\n },\n {\n id : 20,\n artist : 'Nada Surf',\n title : 'Moon Mirror',\n listen_to : 'In Front of Me Now',\n video_id : 'f5aToiQ3co4',\n video_provider : 'youtube'\n }\n ]\n};\n","import { computed } from 'vue';\nimport { year2010 } from '../data/2010';\nimport { year2011 } from '../data/2011';\nimport { year2012 } from '../data/2012';\nimport { year2013 } from '../data/2013';\nimport { year2014 } from '../data/2014';\nimport { year2015 } from '../data/2015';\nimport { year2016 } from '../data/2016';\nimport { year2017 } from '../data/2017';\nimport { year2018 } from '../data/2018';\nimport { year2019 } from '../data/2019';\nimport { year2020 } from '../data/2020';\nimport { year2021 } from '../data/2021';\nimport { year2022 } from '../data/2022';\nimport { year2023 } from '../data/2023';\nimport { year2024 } from '../data/2024';\n\nexport function useAlbumData () {\n\n // Combine all the yearly countdowns into one giant data object of objects\n const allAlbumYears = computed(() => {\n return {\n 2024 : year2024,\n 2023 : year2023,\n 2022 : year2022,\n 2021 : year2021,\n 2020 : year2020,\n 2019 : year2019,\n 2018 : year2018,\n 2017 : year2017,\n 2016 : year2016,\n 2015 : year2015,\n 2014 : year2014,\n 2013 : year2013,\n 2012 : year2012,\n 2011 : year2011,\n 2010 : year2010\n }\n });\n\n /**\n * Return only the album data for the passed in year\n *\n * @param year Year to get album data dor\n */\n function getSpecificAlbumYear (year: string) {\n\n // @ts-ignore\n return allAlbumYears.value[year];\n };\n\n return {\n allAlbumYears,\n getSpecificAlbumYear\n };\n}\n","\n\n\n","\n\n\n","\n\n\n","\n\n\n"],"names":["ACTIVE_YEAR","CURRENT_PAGE","injectStrict","key","fallback","resolved","inject","activeYear","_sfc_main","value","event","entry","_createElementBlock","_renderSlot","_ctx","_createElementVNode","calculateAspectRatio","width","height","greatestCommonDivisor","b","divisor","IntersectionObserver","item","_hoisted_1","_createBlock","_component_IntersectionObserver","$options","_withCtx","_createVNode","_Transition","$props","$data","_normalizeClass","_cache","$event","_createCommentVNode","checkIfHasSpecificClassName","element","className","addClassName","removeClassName","reg","HTML5_VIDEOS","pauseHTML5Video","videos","PAUSE_VIDEOS","video","playHTML5Video","PLAY_VIDEOS","trapKeyboardFocus","filteredFocusableElements","el","firstFocusableElement","lastFocusableElement","e","focusable","isOpen","args","_withModifiers","PROVIDER_YOUTUBE","PROVIDER_VIMEO","props","__props","ref","iframeSrc","computed","convertToSlug","text","kudosAlbums","year2010","year2011","year2012","year2013","year2014","year2015","year2016","year2017","year2018","year2019","year2020","year2021","year2022","year2023","year2024","useAlbumData","allAlbumYears","getSpecificAlbumYear","year","currentPage","albums","currentYear","route","useRoute","assertive","useAnnouncer","useRouterFocus","useRouterTitle","useRouterAccessibilityPattern","provide","metaTitle","metaDescription","routeAnnouncement","pageURL","useHead","watch","to","toMeta"],"mappings":"qUAGa,MAAAA,EAA+C,OAAO,aAAa,EACnEC,EAAkD,OAAO,cAAc,ECFpE,SAAAC,EAAiBC,EAAsBC,EAAc,CAC3D,MAAAC,EAAWC,EAAOH,EAAKC,CAAQ,EAErC,GAAI,CAACC,EACD,MAAM,IAAI,MAAM,qBAAqBF,EAAI,WAAW,EAAE,EAGnD,OAAAE,CACX,8PCuBU,MAAAE,EAAaL,EAAaF,CAAW,m2BCtBtCQ,GAAU,CACX,MAAQ,CAOJ,uBAAyB,CACrB,KAAO,QACP,SAAW,GACX,QAAU,EACb,EAOD,KAAO,CACH,KAAO,OACP,SAAW,GACX,QAAU,KACV,UAAWC,EAAO,CACd,OAAOA,aAAiB,SAAWA,aAAiB,YACxD,CACH,EASD,WAAa,CACT,KAAO,OACP,SAAW,GACX,QAAU,iBACb,EAaD,UAAY,CACR,KAAO,CAAC,OAAQ,KAAK,EACrB,SAAW,GACX,QAAU,CACd,CACH,EAED,MAAQ,CACJ,MAAO,CACH,SAAW,IACd,CACJ,EAED,MAAQ,CACJ,YACA,OACH,EAMD,SAAW,CACP,KAAK,SAAW,IAAI,qBAAqB,KAAK,YAAa,CACvD,KAAO,KAAK,KACZ,WAAa,KAAK,WAClB,UAAY,KAAK,SACrB,CAAC,EAED,KAAK,SAAS,QAAQ,KAAK,GAAG,CACjC,EAMD,WAAa,CACT,KAAK,SAAS,WAAY,EAC1B,KAAK,SAAW,IACnB,EAED,QAAU,CAON,YAAaC,EAAO,CAChB,MAAMC,EAAQD,EAAM,KAAKC,GAASA,EAAM,cAAc,EAElDA,GACA,KAAK,MAAM,YAAa,CAAE,MAAAA,EAAO,MAAAD,CAAI,CAAG,EASpC,KAAK,wBACL,KAAK,SAAS,WAAY,GAG9B,KAAK,MAAM,QAAS,CAAE,MAAAA,CAAM,CAAC,CAErC,CACJ,CACH,sCAnIHE,EAMM,MAAA,KAAA,CAJJC,EAEOC,sBAFP,IAEO,aADLC,EAAW,MAAA,KAAA,KAAA,EAAA,sCCQXC,GAAuB,CAACC,EAAeC,IAAmB,CACtD,MAAAC,EAAwB,CAAC,EAAWC,IAC/BA,EACDD,EAAsBC,EAAG,EAAIA,CAAC,EAC9B,EAGJC,EAAUF,EAAsBF,EAAOC,CAAM,EAEnD,MAAO,GAAGD,EAAQI,CAAO,MAAMH,EAASG,CAAO,EACnD,ECKSb,GAAU,CACX,WAAa,CACTc,qBAAAA,EACH,EAED,MAAQ,CAOJ,IAAM,CACF,KAAO,OACP,QAAU,GACV,SAAW,EACd,EAQD,SAAW,CACP,KAAO,OACP,SAAW,EACd,EAGD,gBAAkB,CACd,KAAO,OACP,SAAW,GACX,QAAU,YACb,EAGD,OAAS,CACL,KAAO,OACP,SAAW,EACd,EAwBD,MAAQ,CACJ,KAAO,OACP,SAAW,EACd,EAUD,IAAM,CACF,KAAO,OACP,SAAW,EACd,EAiBD,OAAS,CACL,KAAO,OACP,SAAW,EACd,EAGD,MAAQ,CACJ,KAAO,OACP,SAAW,EACf,CACH,EAED,MAAQ,CACJ,MAAO,CACH,iBAAmB,GACnB,YAAc,EACjB,CACJ,EAED,SAAW,CASP,aAAe,CACX,OAAQ,KAAK,OAAS,KAAK,MAAS,GACvC,EAQD,gBAAkB,CACd,OAAON,GAAqB,KAAK,MAAO,KAAK,MAAM,CACvD,CACH,EAED,QAAU,CACN,qBAAuB,CAMnB,KAAK,iBAAmB,GAexB,KAAK,UAAU,IAAM,CACjB,MAAMO,EAAO,KAAK,MAAM,MAExBA,EAAK,IAAMA,EAAK,QAAQ,IACxBA,EAAK,gBAAgB,UAAU,CACnC,CAAC,CACL,CACJ,CACH,EArMLC,GAAA,CAAA,MAAA,WAAA,SAAA,QAAA,QAAA,QAAA,wEAEEC,EAkBuBC,EAAA,CAlBA,YAAWC,EAAmB,qBAAA,CAFvD,QAAAC,EAII,IAca,CAdbC,EAcaC,EAAA,CAdA,KAAMC,EAAe,eAAA,EAAA,CAJtC,QAAAH,EAMM,IAUoC,CAT1BI,EAAgB,sBAD1BpB,EAUoC,MAAA,CAhB1C,IAAA,EAQU,IAAI,QACH,MATXqB,EASkBF,EAAQ,QAAA,EACf,IAAKA,EAAG,IACR,WAAUA,EAAG,IACb,OAAQA,EAAM,OACd,MAAOA,EAAK,MACZ,MAAOA,EAAK,MACZ,OAAQA,EAAM,OAfzB,WAAAG,EAAA,CAAA,IAAAA,EAAA,CAAA,EAAAC,GAgBsBH,EAAW,YAAA,GAhBjC,EAAA,KAAA,GAAAR,EAAA,GAAAY,EAAA,GAAA,EAAA,IAAA,EAAA,iBAAA,EAAA,oDCWMC,EAA8B,CAACC,EAAsBC,IACnDD,EAAQ,UACDA,EAAQ,UAAU,SAASC,CAAS,EAGxC,CAAC,CAACD,EAAQ,UAAU,MAAM,IAAI,OAAO,UAAUC,CAAS,SAAS,CAAC,ECHvEC,GAAe,CAACF,EAAsBC,IAAsB,CAC1DD,EAAQ,UACAA,EAAA,UAAU,IAAIC,CAAS,EACvBF,EAA4BC,EAASC,CAAS,IAC9CD,EAAA,WAAa,IAAIC,CAAS,GAE1C,ECPME,GAAkB,CAACH,EAAsBC,IAAsB,CACjE,GAAID,EAAQ,UACAA,EAAA,UAAU,OAAOC,CAAS,UAC3BF,EAA4BC,EAASC,CAAS,EAAG,CACxD,MAAMG,EAAM,IAAI,OAAO,UAAUH,CAAS,SAAS,EACnDD,EAAQ,UAAYA,EAAQ,UAAU,QAAQI,EAAK,GAAG,CAAA,CAE9D,ECnBMC,GAAe,SAAS,qBAAqB,OAAO,EAWpDC,GAAmBC,GAAiC,CAChD,MAAAC,EAAiCH,GAEnCG,GACA,MAAM,KAAKA,CAAY,EAAE,QAASC,GAAU,CACxCA,EAAM,MAAM,CAAA,CACf,CAET,ECnBMJ,GAAe,SAAS,qBAAqB,OAAO,EAWpDK,GAAkBH,GAAiC,CAC/C,MAAAI,EAAgCN,GAElCM,GACA,MAAM,KAAKA,CAAW,EAAE,QAASF,GAAU,CACvCA,EAAM,KAAK,CAAA,CACd,CAET,ECTMG,GAAoB,CAACZ,EAAc5B,IAAyB,CAMxD,MAAAyC,EAA4B,CAAC,GAHTb,EAAQ,iBAAiB,oaAAoa,CAGha,EAAE,OAAOc,GAAM,iBAAiBA,CAAE,EAAE,UAAY,MAAM,EAGvGC,EAAwBF,EAA0B,CAAC,EAGnDG,EAAuBH,EAA0BA,EAA0B,OAAS,CAAC,EAEvFzC,EAAM,SACF,SAAS,gBAAkB2C,IAC3BC,EAAqB,MAAM,EAC3B5C,EAAM,eAAe,GAElB,SAAS,gBAAkB4C,IAClCD,EAAsB,MAAM,EAC5B3C,EAAM,eAAe,EAE7B,ECWSF,GAAU,CACX,MAAQ,CACJ,OAAS,CACL,KAAO,QACP,SAAW,EACd,EAED,WAAa,CACT,KAAO,QACP,SAAW,GACX,QAAU,EACb,EAED,oBAAsB,CAClB,KAAO,QACP,QAAU,EACb,EAED,WAAa,CACT,KAAO,OACP,SAAW,GACX,QAAU,SACb,EAGD,aAAe,CACX,KAAO,OACP,SAAW,EACd,EAGD,qBAAuB,CACnB,KAAO,OACP,SAAW,GACX,QAAU,YACd,CACH,EAED,MAAQ,CACJ,MAAO,CACH,oBAAsB,IACzB,CACJ,EAED,SAAW,CACP,eAAiB,CACb,OAAO,OAAO,WAAW,kCAAkC,EAAE,OACjE,CACH,EAED,QAAU,CACN,QAAU,CAGN,KAAK,oBAAsB,SAAS,cAGpC,KAAK,WAAW,UAAU,0CAA0C,EAGpE,SAAS,iBAAiB,QAAS,KAAK,MAAM,EAG9C,SAAS,iBAAiB,UAAW,KAAK,QAAQ,EAGlD,sBAAsB,IAAM,CACxBgC,GAAa,SAAS,KAAM,cAAc,CAC9C,CAAC,EAGDI,GAAiB,EAGjB,KAAK,UAAU,IAAM,CACjB,KAAK,0BAA2B,CACpC,CAAC,CACJ,EAED,SAAW,CAGP,KAAK,WAAW,UAAU,qBAAqB,EAG/C,SAAS,oBAAoB,QAAS,KAAK,MAAM,EAGjD,SAAS,oBAAoB,UAAW,KAAK,QAAQ,EAGrD,sBAAsB,IAAM,CACxBH,GAAgB,SAAS,KAAM,cAAc,CACjD,CAAC,EAGI,KAAK,eACNO,GAAgB,EAShB,KAAK,qBAAuB,KAAK,qBACjC,KAAK,oBAAoB,MAAO,CAEvC,EAED,OAAQO,EAAG,CACHA,EAAE,UAAY,IACd,KAAK,MAAO,CAEnB,EAED,OAAS,CACL,KAAK,MAAM,OAAO,CACrB,EAGD,SAAUA,EAAG,EACLA,EAAE,MAAQ,OAASA,EAAE,UAAY,IACjCL,GAAkB,KAAK,IAAKK,CAAC,CAEpC,EAED,2BAA6B,CACzB,MAAMC,EAAY,KAAK,IAAI,iBAAiB,gDAAgD,EAGxFA,EAAU,OAAS,GACnBA,EAAU,CAAC,EAAE,MAAO,CAE5B,CACH,EAED,MAAQ,CACJ,OAAQC,EAAQ,CACXA,EAAU,KAAK,OAAM,EAAK,KAAK,QAAS,CAC7C,CACJ,CACH,sCA1LHhC,EAiCaK,EAAA,CAhCR,KAAMC,EAAU,WAChB,4BAAajB,EAAK,MAAA,yBAAA,GAClB,4BAAaA,EAAK,MAAA,yBAAA,KAJzB,QAAAc,EAMI,IA0BM,CAzBIG,EAAM,YADhBnB,EA0BM,MAAA,CAhCV,IAAA,EAQQ,KAAK,SACJ,MATTqB,cAS6BF,EAAoB,oBAAA,EAAA,EACxC,4BAAOJ,EAAK,OAAAA,EAAA,MAAA,GAAA+B,CAAA,KAEf3C,EAMM,MAAA,CALD,MAbXkB,EAakBF,EAAY,YAAA,EACnB,QAAKG,EAAA,CAAA,IAAAA,EAAA,CAAA,EAdhByB,EAcU,IAAW,CAAA,EAAA,CAAA,MAAA,CAAA,KAEb9C,EAAaC,EAAA,OAAA,SAAA,MAKLiB,EAAU,WADpBlB,EAUOC,EAAA,OAAA,eAAA,CA9Bb,IAAA,CAAA,EAoBM,IAUO,aANLC,EAIS,SAAA,CAHL,KAAK,SACL,MAAM,cACL,aAAY,2BA3BzBqB,EAAA,GAAA,EAAA,OAAAA,EAAA,GAAA,EAAA,IAAA,EAAA,8CCAawB,GAAmB,UACnBC,GAAiB,kHCuC1B,MAAMC,EAAQC,EAERN,EAASO,EAAI,EAAK,EAElBC,EAAYC,EAAS,IAAM,CAC7B,OAAQJ,EAAM,SAAU,CACpB,KAAKD,GACM,MAAA,kCAAkCC,EAAM,OAAO,wBAE1D,KAAKF,GACM,MAAA,iCAAiCE,EAAM,OAAO,2IAAA,CAC7D,CACH,sdCtCCK,EAAiBC,GACZA,EAAK,WAAW,YAAY,EAG9B,QAAQ,OAAQ,GAAG,EAGnB,QAAQ,KAAM,GAAG,EAGjB,QAAQ,YAAa,EAAE,EAGvB,QAAQ,SAAU,GAAG,EAGrB,QAAQ,MAAO,EAAE,EAGjB,QAAQ,MAAO,EAAE,qkBCuDhB,MAAA7D,EAAaL,EAAaF,CAAW,EAErCqE,EAAcH,EAAS,IAClB3D,EAAW,MAAM,WAC3B,6nCC5FQ+D,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,SAAW,UACX,WAAa,UACb,YAAc,wSACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,sBACT,MAAQ,iBACR,OAAS,sLACT,OAAS,QACT,WAAa,2EACb,eAAiB,yBACjB,mBAAqB,4BACrB,UAAY,cACZ,SAAW,cACX,IAAM,kGACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,YACR,OAAS,mTACT,OAAS,UACT,WAAa,kLACb,eAAiB,yBACjB,mBAAqB,gDACrB,UAAY,2BACZ,SAAW,cACX,IAAM,8IACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,sBACT,MAAQ,mBACR,OAAS,oHACT,OAAS,aACT,WAAa,qGACb,eAAiB,yBACjB,mBAAqB,8BACrB,UAAY,2BACZ,SAAW,cACX,IAAM,mHACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,qBACR,OAAS,mTACT,OAAS,UACT,WAAa,kLACb,eAAiB,yBACjB,mBAAqB,+BACrB,UAAY,0BACZ,SAAW,cACX,IAAM,yKACN,aAAe,YACnB,EACA,CACI,GAAK,EACL,OAAS,yBACT,MAAQ,mBACR,OAAS,gQACT,OAAS,YACT,WAAa,qEACb,eAAiB,yBACjB,mBAAqB,6BACrB,UAAY,4CACZ,SAAW,cACX,IAAM,0GACN,aAAe,WACnB,EACA,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,SACR,OAAS,uMACT,OAAS,UACT,WAAa,kLACb,eAAiB,yBACjB,mBAAqB,uCACrB,UAAY,UACZ,SAAW,cACX,IAAM,4FACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,gBACT,MAAQ,wBACR,OAAS,0LACT,OAAS,eACT,WAAa,gFACb,eAAiB,yBACjB,mBAAqB,+BACrB,UAAY,gBACZ,SAAW,cACX,IAAM,yFACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,cACR,OAAS,6RACT,OAAS,MACT,WAAa,2CACb,eAAiB,yBACjB,mBAAqB,4CACrB,UAAY,iBACZ,SAAW,cACX,IAAM,6GACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,MACT,MAAQ,iBACR,OAAS,mTACT,OAAS,UACT,WAAa,kLACb,eAAiB,yBACjB,mBAAqB,2BACrB,UAAY,cACZ,SAAW,cACX,IAAM,mEACN,aAAe,EACnB,EACA,CACI,GAAK,GACL,OAAS,mBACT,MAAQ,qBACR,OAAS,qPACT,OAAS,eACT,WAAa,8DACb,eAAiB,yBACjB,mBAAqB,8BACrB,UAAY,WACZ,SAAW,cACX,IAAM,2IACN,aAAe,EAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,cACR,UAAY,eACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,WACR,UAAY,iBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,8BACT,MAAQ,0BACR,UAAY,0BACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,iBACR,UAAY,kBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,cACT,MAAQ,cACR,UAAY,cACZ,SAAW,aACf,EAAG,CACC,GAAK,GACL,OAAS,gCACT,MAAQ,6BACR,UAAY,6BACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,QACT,MAAQ,eACR,UAAY,aACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,gBACT,MAAQ,iBACR,UAAY,iBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,yBACT,MAAQ,6BACR,UAAY,sCACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,OACR,UAAY,QACZ,SAAW,aAAA,CACf,CAER,EC3NaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,SAAW,UACX,WAAa,OACb,YAAc,wSACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,eACT,MAAQ,kCACR,OAAS,mTACT,OAAS,UACT,WAAa,kLACb,eAAiB,yBACjB,mBAAqB,yCACrB,UAAY,kCACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,sBACT,MAAQ,QACR,OAAS,mFACT,OAAS,eACT,WAAa,uEACb,eAAiB,yBACjB,mBAAqB,mBACrB,UAAY,uBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,mBACT,MAAQ,mBACR,OAAS,8KACT,OAAS,gBACT,WAAa,sHACb,eAAiB,yBACjB,mBAAqB,6BACrB,UAAY,gBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,mBACR,OAAS,mWACT,OAAS,mBACT,WAAa,4DACb,eAAiB,yBACjB,mBAAqB,4BACrB,UAAY,eACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,gBACT,MAAQ,WACR,OAAS,4RACT,OAAS,WACT,WAAa,uDACb,eAAiB,yBACjB,mBAAqB,sBACrB,UAAY,uBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,QACT,MAAQ,SACR,OAAS,6HACT,OAAS,QACT,WAAa,qDACb,eAAiB,yBACjB,mBAAqB,oBACrB,UAAY,8BACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,gBACR,OAAS,yKACT,OAAS,eACT,WAAa,gFACb,eAAiB,yBACjB,mBAAqB,0BACrB,UAAY,cACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,oBACR,OAAS,mTACT,OAAS,UACT,WAAa,kLACb,eAAiB,yBACjB,mBAAqB,+BACrB,UAAY,eACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,aACT,MAAQ,wCACR,OAAS,qLACT,OAAS,aACT,WAAa,wFACb,eAAiB,yBACjB,mBAAqB,+DACrB,UAAY,2BACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,wBACR,OAAS,8IACT,OAAS,eACT,WAAa,gFACb,eAAiB,yBACjB,mBAAqB,kDACrB,UAAY,kBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,uBACT,MAAQ,cACR,UAAY,cACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,sBACT,MAAQ,iBACR,UAAY,yBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,gBACT,MAAQ,0BACR,UAAY,SACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,SACT,MAAQ,oBACR,UAAY,UACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,sBACT,MAAQ,kBACR,UAAY,aACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,UACR,UAAY,sCACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,uBACT,MAAQ,YACR,UAAY,YACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,WACT,MAAQ,kBACR,UAAY,mBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,qBACT,MAAQ,sBACR,UAAY,mBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,qCACT,MAAQ,mBACR,UAAY,gBACZ,SAAW,aAAA,CACf,CAER,EC5NaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,SAAW,UACX,WAAa,UACb,YAAc,wSACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,cACT,MAAQ,oBACR,OAAS,uIACT,OAAS,kBACT,WAAa,uHACb,eAAiB,yBACjB,mBAAqB,mEACrB,UAAY,qBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,aACT,MAAQ,cACR,OAAS,uHACT,OAAS,OACT,WAAa,8BACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,oBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,sBACT,MAAQ,cACR,OAAS,mKACT,OAAS,eACT,WAAa,8DACb,eAAiB,yBACjB,mBAAqB,wCACrB,UAAY,KACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,oBACT,MAAQ,gBACR,OAAS,sGACT,OAAS,gBACT,WAAa,+EACb,eAAiB,yBACjB,mBAAqB,0BACrB,UAAY,eACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,KACR,OAAS,sMACT,OAAS,iBACT,WAAa,wEACb,eAAiB,yBACjB,mBAAqB,gBACrB,UAAY,kBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,UACR,OAAS,qJACT,OAAS,sBACT,WAAa,oDACb,eAAiB,yBACjB,mBAAqB,oBACrB,UAAY,mBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,oBACT,MAAQ,OACR,OAAS,qGACT,OAAS,gBACT,WAAa,6DACb,eAAiB,yBACjB,mBAAqB,iBACrB,UAAY,uBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,4BACT,MAAQ,kBACR,OAAS,wQACT,OAAS,kBACT,WAAa,2DACb,eAAiB,yBACjB,mBAAqB,4BACrB,UAAY,MACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,aACT,MAAQ,UACR,OAAS,mTACT,OAAS,UACT,WAAa,kLACb,eAAiB,yBACjB,mBAAqB,wCACrB,UAAY,sCACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,GACL,OAAS,6BACT,MAAQ,+BACR,OAAS,mTACT,OAAS,UACT,WAAa,kLACb,eAAiB,yBACjB,mBAAqB,yCACrB,UAAY,gCACZ,SAAW,cACX,IAAM,sMACN,aAAe,EAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,aACT,MAAQ,eACR,UAAY,gBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,aACR,UAAY,UACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,cACT,MAAQ,WACR,UAAY,aACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,qBACR,UAAY,yBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,mBACT,MAAQ,QACR,UAAY,eACZ,SAAW,aACf,EAAG,CACC,GAAK,GACL,OAAS,mBACT,MAAQ,eACR,UAAY,mBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,UACT,MAAQ,wBACR,UAAY,4BACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,yBACT,MAAQ,KACR,UAAY,eACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,mBACR,UAAY,iBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,SACT,MAAQ,uBACR,UAAY,UACZ,SAAW,aAAA,CACf,CAER,EC3NaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,wSACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,8BACR,OAAS,qLACT,OAAS,WACT,WAAa,0EACb,eAAiB,yBACjB,mBAAqB,wCACrB,UAAY,cACZ,SAAW,cACX,IAAM,sMACN,aAAe,aACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,wBACR,OAAS,6JACT,OAAS,eACT,WAAa,8DACb,eAAiB,yBACjB,mBAAqB,uBACrB,UAAY,mBACZ,SAAW,cACX,IAAM,sMACN,aAAe,gBACnB,EACA,CACI,GAAK,EACL,OAAS,gBACT,MAAQ,gBACR,OAAS,0SACT,OAAS,oBACT,WAAa,gEACb,eAAiB,yBACjB,mBAAqB,0BACrB,UAAY,oBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,SACR,OAAS,mNACT,OAAS,eACT,WAAa,oEACb,eAAiB,yBACjB,mBAAqB,mBACrB,UAAY,wBACZ,SAAW,cACX,IAAM,sMACN,aAAe,gBACnB,EACA,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,mBACR,OAAS,uOACT,OAAS,gBACT,WAAa,uEACb,eAAiB,yBACjB,mBAAqB,6BACrB,UAAY,oBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,WACT,MAAQ,YACR,OAAS,mTACT,OAAS,UACT,WAAa,kLACb,eAAiB,yBACjB,mBAAqB,uBACrB,UAAY,sBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,gBACT,MAAQ,sBACR,OAAS,qJACT,OAAS,gBACT,WAAa,6GACb,eAAiB,yBACjB,mBAAqB,gCACrB,UAAY,gBACZ,SAAW,cACX,IAAM,sMACN,aAAe,oBACnB,EACA,CACI,GAAK,EACL,OAAS,oBACT,MAAQ,oBACR,OAAS,sGACT,OAAS,WACT,WAAa,gEACb,eAAiB,yBACjB,mBAAqB,+BACrB,UAAY,uBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,uBACR,OAAS,mQACT,OAAS,gBACT,WAAa,wEACb,eAAiB,yBACjB,mBAAqB,iCACrB,UAAY,iBACZ,SAAW,cACX,IAAM,sMACN,aAAe,kBACnB,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,KACR,OAAS,gKACT,OAAS,MACT,WAAa,kEACb,eAAiB,yBACjB,mBAAqB,eACrB,UAAY,YACZ,SAAW,cACX,IAAM,sMACN,aAAe,EAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,eACT,MAAQ,kBACR,UAAY,uBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,OACT,MAAQ,oBACR,UAAY,cACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,QACR,UAAY,WACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,8BACT,MAAQ,uBACR,UAAY,oBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,QACT,MAAQ,iBACR,UAAY,eACZ,SAAW,aACf,EAAG,CACC,GAAK,GACL,OAAS,gBACT,MAAQ,mBACR,UAAY,eACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,0BACR,UAAY,4BACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,qBACT,MAAQ,mBACR,UAAY,YACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,kBACR,UAAY,SACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,yBACT,MAAQ,kBACR,UAAY,qBACZ,SAAW,aAAA,CACf,CAER,ECzNaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,wSACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,eACT,MAAQ,uBACR,OAAS,0KACT,OAAS,QACT,WAAa,6FACb,eAAiB,yBACjB,mBAAqB,iCACrB,UAAY,8BACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,cACR,OAAS,6JACT,OAAS,OACT,WAAa,wDACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,eACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,cACR,OAAS,mQACT,OAAS,YACT,WAAa,+DACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,mBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,cACR,OAAS,yHACT,OAAS,YACT,WAAa,iEACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,QACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,mBACT,MAAQ,gBACR,OAAS,sIACT,OAAS,sBACT,WAAa,sEACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,8BACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,UACR,OAAS,4RACT,OAAS,WACT,WAAa,sDACb,eAAiB,yBACjB,mBAAqB,oBACrB,UAAY,cACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,aACT,MAAQ,YACR,OAAS,6MACT,OAAS,gBACT,WAAa,8FACb,eAAiB,yBACjB,mBAAqB,sBACrB,UAAY,+BACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,uBACT,MAAQ,OACR,OAAS,oGACT,OAAS,YACT,WAAa,kEACb,eAAiB,yBACjB,mBAAqB,iCACrB,UAAY,YACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,aACT,MAAQ,qBACR,OAAS,0IACT,OAAS,oBACT,WAAa,kEACb,eAAiB,yBACjB,mBAAqB,gCACrB,UAAY,2BACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,GACL,OAAS,aACT,MAAQ,cACR,OAAS,4HACT,OAAS,YACT,WAAa,oDACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,mBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,SACT,MAAQ,cACR,UAAY,SACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,sBACT,MAAQ,aACR,UAAY,UACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,aACT,MAAQ,UACR,UAAY,MACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,sBACT,MAAQ,WACR,UAAY,WACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,SACT,MAAQ,wCACR,UAAY,UACZ,SAAW,aACf,EAAG,CACC,GAAK,GACL,OAAS,oBACT,MAAQ,aACR,UAAY,uBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,wBACR,UAAY,cACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,yBACT,MAAQ,aACR,UAAY,yBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,mBACR,UAAY,aACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,gBACT,MAAQ,gCACR,UAAY,oBACZ,SAAW,aAAA,CACf,CAER,ECzNaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,wSACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,eACT,MAAQ,iBACR,OAAS,mLACT,OAAS,OACT,WAAa,gEACb,eAAiB,yBACjB,mBAAqB,4BACrB,UAAY,YACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,gBACT,MAAQ,cACR,OAAS,yJACT,OAAS,cACT,WAAa,+DACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,uBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,iBACT,MAAQ,mBACR,OAAS,sLACT,OAAS,eACT,WAAa,8EACb,eAAiB,yBACjB,mBAAqB,8BACrB,UAAY,aACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,mBACT,MAAQ,sDACR,OAAS,wLACT,OAAS,eACT,WAAa,2HACb,eAAiB,yBACjB,mBAAqB,+DACrB,UAAY,qBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,sBACT,MAAQ,mCACR,OAAS,0MACT,OAAS,gBACT,WAAa,sFACb,eAAiB,yBACjB,mBAAqB,6CACrB,UAAY,iBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,sBACT,MAAQ,WACR,OAAS,iNACT,OAAS,gBACT,WAAa,6FACb,eAAiB,yBACjB,mBAAqB,qBACrB,UAAY,8BACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,gBACT,MAAQ,SACR,OAAS,6OACT,OAAS,uBACT,WAAa,4EACb,eAAiB,yBACjB,mBAAqB,oBACrB,UAAY,oBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,mBACT,MAAQ,gDACR,OAAS,4PACT,OAAS,eACT,WAAa,4GACb,eAAiB,yBACjB,mBAAqB,0DACrB,UAAY,kBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,oBACT,MAAQ,cACR,OAAS,uSACT,OAAS,YACT,WAAa,oBACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,gBACZ,SAAW,cACX,IAAM,sMACN,aAAe,EACnB,EACA,CACI,GAAK,GACL,OAAS,MACT,MAAQ,YACR,OAAS,qQACT,OAAS,oBACT,WAAa,wDACb,eAAiB,yBACjB,mBAAqB,sBACrB,UAAY,YACZ,SAAW,cACX,IAAM,sMACN,aAAe,EAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,UACT,MAAQ,kBACR,UAAY,qBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,qCACR,UAAY,aACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,OACT,MAAQ,WACR,UAAY,aACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,SACT,MAAQ,WACR,UAAY,YACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,WACT,MAAQ,0BACR,UAAY,2BACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,2BACR,UAAY,sBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,gBACR,UAAY,WACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,yBACT,MAAQ,iBACR,UAAY,eACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,qBACR,UAAY,qBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,WACR,UAAY,aACZ,SAAW,aAAA,CACf,CAER,EC1NaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,wSACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,eACT,MAAQ,cACR,OAAS,+NACT,OAAS,YACT,WAAa,sDACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,mBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,0FACN,aAAe,aACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,qBACR,OAAS,sPACT,OAAS,gBACT,WAAa,oHACb,eAAiB,yBACjB,mBAAqB,gCACrB,UAAY,iBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,yFACN,aAAe,WACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,cACR,OAAS,8OACT,OAAS,uBACT,WAAa,wEACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,gBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,gHACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,aACR,OAAS,qOACT,OAAS,gBACT,WAAa,0EACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,WACZ,SAAW,cACX,eAAiB,UACjB,IAAM,8DACN,aAAe,kBACnB,EACA,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,kBACR,OAAS,0IACT,OAAS,eACT,WAAa,6EACb,eAAiB,yBACjB,mBAAqB,6BACrB,UAAY,YACZ,SAAW,cACX,eAAiB,UACjB,IAAM,6DACN,aAAe,sBACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,kCACR,OAAS,qKACT,OAAS,kBACT,WAAa,qFACb,eAAiB,yBACjB,mBAAqB,6CACrB,UAAY,wBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,2GACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,MACT,MAAQ,oBACR,OAAS,iQACT,OAAS,mBACT,WAAa,2GACb,eAAiB,yBACjB,mBAAqB,+BACrB,UAAY,wCACZ,SAAW,cACX,eAAiB,UACjB,IAAM,qDACN,aAAe,kBACnB,EACA,CACI,GAAK,EACL,OAAS,aACT,MAAQ,aACR,OAAS,0IACT,OAAS,WACT,WAAa,yDACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,mBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,8CACN,aAAe,WACnB,EACA,CACI,GAAK,EACL,OAAS,SACT,MAAQ,eACR,OAAS,2JACT,OAAS,sBACT,WAAa,sDACb,eAAiB,yBACjB,mBAAqB,0BACrB,UAAY,gBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,qHACN,aAAe,cACnB,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,wBACR,OAAS,0NACT,OAAS,mBACT,WAAa,2FACb,eAAiB,yBACjB,mBAAqB,mCACrB,UAAY,iCACZ,SAAW,cACX,eAAiB,UACjB,IAAM,uEACN,aAAe,cAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,qBACT,MAAQ,kBACR,UAAY,mBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,YACT,MAAQ,YACR,UAAY,oBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,aACT,MAAQ,sBACR,UAAY,oBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,UACT,MAAQ,YACR,UAAY,0BACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,cACT,MAAQ,yBACR,UAAY,aACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,cACT,MAAQ,WACR,UAAY,OACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,eACR,UAAY,OACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,SACT,MAAQ,mBACR,UAAY,oBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,SACT,MAAQ,sBACR,UAAY,SACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,cACT,MAAQ,WACR,UAAY,kBACZ,SAAW,cACX,eAAiB,SAAA,CACrB,CAER,EC9OaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,wSACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,eACT,MAAQ,sBACR,OAAS,qTACT,OAAS,UACT,WAAa,kLACb,eAAiB,yBACjB,mBAAqB,8CACrB,UAAY,sBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,gFACN,aAAe,iBACnB,EACA,CACI,GAAK,EACL,OAAS,6BACT,MAAQ,iBACR,OAAS,qQACT,OAAS,YACT,WAAa,oFACb,UAAY,kBACZ,eAAiB,yBACjB,mBAAqB,4BACrB,SAAW,cACX,eAAiB,UACjB,IAAM,gMACN,aAAe,kBACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,cACR,OAAS,mPACT,OAAS,cACT,WAAa,kLACb,UAAY,wBACZ,eAAiB,yBACjB,mBAAqB,yBACrB,SAAW,cACX,eAAiB,UACjB,IAAM,iKACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,QACT,MAAQ,WACR,OAAS,+JACT,OAAS,cACT,WAAa,mDACb,UAAY,UACZ,eAAiB,yBACjB,mBAAqB,sBACrB,SAAW,cACX,eAAiB,UACjB,IAAM,8FACN,aAAe,WACnB,EACA,CACI,GAAK,EACL,OAAS,gBACT,MAAQ,gBACR,OAAS,8QACT,OAAS,cACT,WAAa,gEACb,UAAY,WACZ,eAAiB,yBACjB,mBAAqB,2BACrB,SAAW,cACX,eAAiB,UACjB,IAAM,sIACN,aAAe,iBACnB,EACA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,eACR,OAAS,gLACT,OAAS,uBACT,WAAa,+EACb,UAAY,WACZ,eAAiB,yBACjB,mBAAqB,0BACrB,SAAW,cACX,eAAiB,UACjB,IAAM,0DACN,aAAe,kBACnB,EACA,CACI,GAAK,EACL,OAAS,WACT,MAAQ,iBACR,OAAS,oQACT,OAAS,eACT,WAAa,4GACb,UAAY,cACZ,eAAiB,yBACjB,mBAAqB,4BACrB,SAAW,cACX,eAAiB,UACjB,IAAM,6EACN,aAAe,oBACnB,EACA,CACI,GAAK,EACL,OAAS,aACT,MAAQ,OACR,OAAS,uLACT,OAAS,YACT,WAAa,gGACb,UAAY,OACZ,eAAiB,yBACjB,mBAAqB,kBACrB,SAAW,cACX,eAAiB,UACjB,IAAM,0EACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,OACT,MAAQ,SACR,OAAS,sLACT,OAAS,iBACT,WAAa,yEACb,UAAY,eACZ,eAAiB,yBACjB,mBAAqB,oBACrB,SAAW,cACX,eAAiB,UACjB,IAAM,uEACN,aAAe,eACnB,EACA,CACI,GAAK,GACL,OAAS,cACT,MAAQ,iBACR,OAAS,oQACT,OAAS,eACT,WAAa,4GACb,UAAY,gBACZ,eAAiB,yBACjB,mBAAqB,4BACrB,SAAW,cACX,eAAiB,UACjB,IAAM,0FACN,aAAe,eAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,cACT,MAAQ,mBACR,UAAY,iBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,UACR,UAAY,6BACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,uBACT,MAAQ,8BACR,UAAY,WACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,mBACR,UAAY,eACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,eACR,UAAY,YACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,uBACR,UAAY,mBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,cACT,MAAQ,mBACR,UAAY,kCACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,+BACR,UAAY,aACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,aACR,UAAY,gBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,qCACT,MAAQ,sBACR,UAAY,gBACZ,SAAW,cACX,eAAiB,SAAA,CACrB,CAER,EC9OaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,wSACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,eACT,MAAQ,eACR,OAAS,wSACT,OAAS,mBACT,WAAa,2DACb,eAAiB,yBACjB,mBAAqB,0BACrB,UAAY,gBACZ,SAAW,cACX,IAAM,yGACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,mBACT,MAAQ,8BACR,OAAS,6PACT,OAAS,kBACT,WAAa,wFACb,eAAiB,yBACjB,mBAAqB,yCACrB,UAAY,qBACZ,SAAW,cACX,IAAM,8FACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,MACT,MAAQ,UACR,OAAS,8JACT,OAAS,mBACT,WAAa,2DACb,eAAiB,yBACjB,mBAAqB,qBACrB,UAAY,UACZ,SAAW,cACX,IAAM,sEACN,aAAe,gBACnB,EACA,CACI,GAAK,EACL,OAAS,sBACT,MAAQ,kCACR,OAAS,sOACT,OAAS,sBACT,WAAa,oFACb,eAAiB,yBACjB,mBAAqB,uDACrB,UAAY,oBACZ,SAAW,cACX,IAAM,0EACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,YACR,OAAS,6NACT,OAAS,iBACT,WAAa,iFACb,eAAiB,yBACjB,mBAAqB,0BACrB,UAAY,cACZ,SAAW,cACX,IAAM,yJACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,sBACT,MAAQ,sBACR,OAAS,2SACT,OAAS,UACT,WAAa,2EACb,eAAiB,yBACjB,mBAAqB,iCACrB,UAAY,YACZ,SAAW,cACX,IAAM,8HACN,aAAe,iBACnB,EACA,CACI,GAAK,EACL,OAAS,mBACT,MAAQ,oBACR,OAAS,2PACT,OAAS,aACT,WAAa,uEACb,eAAiB,yBACjB,mBAAqB,8BACrB,UAAY,UACZ,SAAW,cACX,IAAM,sHACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,oBACT,MAAQ,cACR,OAAS,kaACT,OAAS,YACT,WAAa,sEACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,sBACZ,SAAW,cACX,IAAM,gGACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,YACR,OAAS,kQACT,OAAS,MACT,WAAa,2EACb,eAAiB,yBACjB,mBAAqB,uBACrB,UAAY,0BACZ,SAAW,cACX,IAAM,qDACN,aAAe,EACnB,EACA,CACI,GAAK,GACL,OAAS,aACT,MAAQ,uBACR,OAAS,mOACT,OAAS,mBACT,WAAa,8HACb,eAAiB,yBACjB,mBAAqB,kCACrB,UAAY,oBACZ,SAAW,cACX,IAAM,mGACN,aAAe,qBAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,cACT,MAAQ,gBACR,UAAY,SACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,gBACT,MAAQ,wBACR,UAAY,qBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,gBACT,MAAQ,IACR,UAAY,eACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,eACR,UAAY,OACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,yBACT,MAAQ,uBACR,UAAY,qBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,yBACT,MAAQ,eACR,UAAY,SACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,OACT,MAAQ,OACR,UAAY,4BACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,YACT,MAAQ,eACR,UAAY,gBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,WACT,MAAQ,WACR,UAAY,YACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,0BACR,UAAY,SACZ,SAAW,aAAA,CACf,CAER,EC1NaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,wSACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,mCACT,MAAQ,mCACR,OAAS,oQACT,OAAS,eACT,WAAa,4GACb,eAAiB,yBACjB,mBAAqB,8CACrB,UAAY,eACZ,SAAW,cACX,IAAM,sMACV,EACA,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,sBACR,OAAS,uLACT,OAAS,UACT,WAAa,sGACb,eAAiB,yBACjB,mBAAqB,iCACrB,UAAY,YACZ,SAAW,cACX,IAAM,6JACV,EAEA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,cACR,OAAS,8OACT,OAAS,UACT,WAAa,0FACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,sBACZ,SAAW,cACX,IAAM,kEACV,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,YACR,OAAS,0KACT,OAAS,kBACT,WAAa,qDACb,eAAiB,yBACjB,mBAAqB,uBACrB,UAAY,SACZ,SAAW,cACX,IAAM,sEACN,aAAe,iBACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,MACR,OAAS,qWACT,OAAS,eACT,WAAa,2DACb,eAAiB,yBACjB,mBAAqB,iBACrB,UAAY,MACZ,SAAW,cACX,IAAM,oHACV,EACA,CACI,GAAK,EACL,OAAS,oBACT,MAAQ,gBACR,OAAS,wLACT,OAAS,uBACT,WAAa,uFACb,eAAiB,yBACjB,mBAAqB,2BACrB,UAAY,gBACZ,SAAW,cACX,IAAM,oHACV,EACA,CACI,GAAK,EACL,OAAS,iBACT,MAAQ,mBACR,OAAS,+TACT,OAAS,eACT,WAAa,4EACb,eAAiB,yBACjB,mBAAqB,8BACrB,UAAY,mBACZ,SAAW,cACX,IAAM,qEACV,EACA,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,YACR,OAAS,mOACT,OAAS,cACT,WAAa,+DACb,eAAiB,yBACjB,mBAAqB,uBACrB,UAAY,qBACZ,SAAW,cACX,IAAM,yFACV,EACA,CACI,GAAK,EACL,OAAS,mBACT,MAAQ,qBACR,OAAS,8UACT,OAAS,UACT,WAAa,uGACb,eAAiB,yBACjB,mBAAqB,gCACrB,UAAY,YACZ,SAAW,cACX,IAAM,sDACV,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,wBACR,OAAS,gRACT,OAAS,eACT,WAAa,8EACb,eAAiB,yBACjB,mBAAqB,kCACrB,UAAY,cACZ,SAAW,cACX,IAAM,6FAAA,CAEd,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,eACT,MAAQ,gBACR,UAAY,wBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,cACR,UAAY,oBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,SACT,MAAQ,oBACR,UAAY,eACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,mBACT,MAAQ,iBACR,UAAY,kBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,oBACR,UAAY,cACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,yBACR,UAAY,uBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,WACT,MAAQ,kBACR,UAAY,oBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,SACT,MAAQ,WACR,UAAY,iBACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,MACT,MAAQ,eACR,UAAY,OACZ,SAAW,aACf,EACA,CACI,GAAK,GACL,OAAS,aACT,MAAQ,QACR,UAAY,eACZ,SAAW,aAAA,CACf,CAER,EClNaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,0aACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,cACT,MAAQ,yBACR,OAAS,kVACT,OAAS,qBACT,WAAa,wFACb,eAAiB,yBACjB,mBAAqB,oCACrB,UAAY,WACZ,SAAW,cACX,eAAiB,UACjB,IAAM,gDACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,cACR,OAAS,0MACT,OAAS,eACT,WAAa,+EACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,SACZ,SAAW,cACX,eAAiB,UACjB,IAAM,+DACN,aAAe,eACnB,EAEA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,8CACR,OAAS,yVACT,OAAS,gBACT,WAAa,6FACb,eAAiB,yBACjB,mBAAqB,wDACrB,UAAY,iBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,8EACN,aAAe,iBACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,cACR,OAAS,iSACT,OAAS,UACT,WAAa,yEACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,2BACZ,SAAW,cACX,eAAiB,UACjB,IAAM,+FACN,aAAe,qBACnB,EACA,CACI,GAAK,EACL,OAAS,oBACT,MAAQ,gBACR,OAAS,+KACT,OAAS,kBACT,WAAa,kIACb,eAAiB,yBACjB,mBAAqB,2BACrB,UAAY,sBACZ,SAAW,YACX,eAAiB,QACjB,IAAM,+EACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,uBACR,OAAS,qOACT,OAAS,OACT,WAAa,yFACb,eAAiB,yBACjB,mBAAqB,kCACrB,UAAY,qBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,iGACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,gBACT,MAAQ,wBACR,OAAS,gNACT,OAAS,mBACT,WAAa,+DACb,eAAiB,yBACjB,mBAAqB,mCACrB,UAAY,UACZ,SAAW,cACX,eAAiB,UACjB,IAAM,yDACN,aAAe,oBACnB,EACA,CACI,GAAK,EACL,OAAS,oBACT,MAAQ,0BACR,OAAS,0MACT,OAAS,mBACT,WAAa,mFACb,eAAiB,yBACjB,mBAAqB,mCACrB,UAAY,qBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,oJACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,gCACT,MAAQ,WACR,OAAS,iMACT,OAAS,sBACT,WAAa,gFACb,eAAiB,yBACjB,mBAAqB,sBACrB,UAAY,YACZ,SAAW,cACX,eAAiB,UACjB,IAAM,gHACN,aAAe,cACnB,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,SACR,OAAS,wLACT,OAAS,eACT,WAAa,iEACb,eAAiB,yBACjB,mBAAqB,oBACrB,UAAY,YACZ,SAAW,cACX,eAAiB,UACjB,IAAM,mFACN,aAAe,cAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,8BACR,UAAY,UACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,WACR,UAAY,QACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,YACR,UAAY,YACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,mBACR,UAAY,aACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,WACT,MAAQ,UACR,UAAY,kBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,MACT,MAAQ,QACR,UAAY,SACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,YACT,MAAQ,iBACR,UAAY,UACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,UACT,MAAQ,oBACR,UAAY,cACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,YACT,MAAQ,qBACR,UAAY,eACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,MACR,UAAY,qBACZ,SAAW,cACX,eAAiB,SAAA,CACrB,CAER,EC/OaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,gTACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,aACT,MAAQ,mCACR,OAAS,4OACT,OAAS,uBACT,WAAa,0GACb,eAAiB,yBACjB,mBAAqB,6CACrB,UAAY,cACZ,SAAW,cACX,eAAiB,UACjB,IAAM,qHACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,mBACR,OAAS,qQACT,OAAS,gBACT,WAAa,2FACb,eAAiB,yBACjB,mBAAqB,8BACrB,UAAY,WACZ,SAAW,cACX,eAAiB,UACjB,IAAM,2EACN,aAAe,gBACnB,EAEA,CACI,GAAK,EACL,OAAS,aACT,MAAQ,aACR,OAAS,mOACT,OAAS,gBACT,WAAa,mEACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,SACZ,SAAW,cACX,eAAiB,UACjB,IAAM,oGACN,aAAe,aACnB,EACA,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,gCACR,OAAS,0MACT,OAAS,eACT,WAAa,yFACb,eAAiB,yBACjB,mBAAqB,yCACrB,UAAY,UACZ,SAAW,cACX,eAAiB,UACjB,IAAM,iIACN,aAAe,gBACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,2BACR,OAAS,6LACT,OAAS,UACT,WAAa,2GACb,eAAiB,yBACjB,mBAAqB,sCACrB,UAAY,sBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,yEACN,aAAe,YACnB,EACA,CACI,GAAK,EACL,OAAS,mBACT,MAAQ,8BACR,OAAS,4RACT,OAAS,iBACT,WAAa,gGACb,eAAiB,yBACjB,mBAAqB,wCACrB,UAAY,sBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,2GACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,iBACT,MAAQ,mBACR,OAAS,yRACT,OAAS,QACT,WAAa,gFACb,eAAiB,yBACjB,mBAAqB,8BACrB,UAAY,iBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,oFACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,eACR,OAAS,4MACT,OAAS,kBACT,WAAa,kHACb,eAAiB,yBACjB,mBAAqB,0BACrB,UAAY,mBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,kFACN,aAAe,EACnB,EACA,CACI,GAAK,EACL,OAAS,OACT,MAAQ,SACR,OAAS,+NACT,OAAS,aACT,WAAa,+DACb,eAAiB,yBACjB,mBAAqB,oBACrB,UAAY,SACZ,SAAW,cACX,eAAiB,UACjB,IAAM,qIACN,aAAe,aACnB,EAEA,CACI,GAAK,GACL,OAAS,aACT,MAAQ,YACR,OAAS,uNACT,OAAS,gBACT,WAAa,4FACb,eAAiB,yBACjB,mBAAqB,uBACrB,UAAY,eACZ,SAAW,cACX,eAAiB,UACjB,IAAM,yEACN,aAAe,aAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,uBACT,MAAQ,2BACR,UAAY,WACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,kCACR,UAAY,6BACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,uBACR,UAAY,iBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,cACT,MAAQ,eACR,UAAY,OACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,QACR,UAAY,oBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,kBACR,UAAY,qBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,qBACT,MAAQ,UACR,UAAY,WACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,aACT,MAAQ,eACR,UAAY,YACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,eACR,UAAY,0BACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,yBACT,MAAQ,yBACR,UAAY,2BACZ,SAAW,cACX,eAAiB,SAAA,CACrB,CAER,EChPaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,iNACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,SACT,MAAQ,2BACR,OAAS,kJACT,OAAS,mBACT,WAAa,2EACb,eAAiB,yBACjB,mBAAqB,sCACrB,UAAY,kBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,yFACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,mCACR,OAAS,6RACT,OAAS,cACT,WAAa,iFACb,eAAiB,yBACjB,mBAAqB,8CACrB,UAAY,wBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,0GACN,aAAe,WACnB,EAEA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,qCACR,OAAS,qOACT,OAAS,uBACT,WAAa,wGACb,eAAiB,yBACjB,mBAAqB,6CACrB,UAAY,YACZ,SAAW,cACX,eAAiB,UACjB,IAAM,0EACN,aAAe,aACnB,EACA,CACI,GAAK,EACL,OAAS,SACT,MAAQ,WACR,OAAS,oNACT,OAAS,MACT,WAAa,oGACb,eAAiB,yBACjB,mBAAqB,sBACrB,UAAY,kBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,wFACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,OACR,OAAS,oUACT,OAAS,UACT,WAAa,4EACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,cACZ,SAAW,cACX,eAAiB,UACjB,IAAM,+DACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,sBACT,MAAQ,kBACR,OAAS,gRACT,OAAS,UACT,WAAa,8EACb,eAAiB,yBACjB,mBAAqB,6BACrB,UAAY,gBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,2HACN,aAAe,gBACnB,EACA,CACI,GAAK,EACL,OAAS,yBACT,MAAQ,gCACR,OAAS,0NACT,OAAS,WACT,WAAa,4EACb,eAAiB,yBACjB,mBAAqB,2CACrB,UAAY,sBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,8HACN,aAAe,aACnB,EACA,CACI,GAAK,EACL,OAAS,QACT,MAAQ,gBACR,OAAS,iQACT,OAAS,cACT,WAAa,0DACb,eAAiB,yBACjB,mBAAqB,2BACrB,UAAY,qBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,iGACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,SACT,MAAQ,uBACR,OAAS,uRACT,OAAS,MACT,WAAa,qFACb,eAAiB,yBACjB,mBAAqB,kCACrB,UAAY,SACZ,SAAW,cACX,eAAiB,UACjB,IAAM,4EACN,aAAe,gBACnB,EAEA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,QACR,OAAS,2VACT,OAAS,uBACT,WAAa,6FACb,eAAiB,yBACjB,mBAAqB,mBACrB,UAAY,oBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,sFACN,aAAe,kBAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,QACT,MAAQ,sBACR,UAAY,OACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,sBACT,MAAQ,oBACR,UAAY,oBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,6BACT,MAAQ,gBACR,UAAY,gBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,aACT,MAAQ,wBACR,UAAY,kBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,eACR,UAAY,UACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,SACT,MAAQ,cACR,UAAY,eACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,wBACT,MAAQ,iBACR,UAAY,eACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,YACT,MAAQ,4CACR,UAAY,WACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,uBACT,MAAQ,cACR,UAAY,cACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,qBACR,UAAY,UACZ,SAAW,cACX,eAAiB,SAAA,CACrB,CAER,EChPaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,0RACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,YACT,MAAQ,aACR,OAAS,6QACT,OAAS,cACT,WAAa,+DACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,oBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,iFACN,aAAe,YACnB,EACA,CACI,GAAK,EACL,OAAS,QACT,MAAQ,aACR,OAAS,0JACT,OAAS,uBACT,WAAa,6EACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,iBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,kFACN,aAAe,YACnB,EAEA,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,wBACR,OAAS,0MACT,OAAS,YACT,WAAa,6EACb,eAAiB,yBACjB,mBAAqB,kCACrB,UAAY,wBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,2EACN,aAAe,kBACnB,EACA,CACI,GAAK,EACL,OAAS,MACT,MAAQ,iBACR,OAAS,iNACT,OAAS,kBACT,WAAa,6DACb,eAAiB,yBACjB,mBAAqB,4BACrB,UAAY,iBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,gEACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,sBACT,MAAQ,gBACR,OAAS,+QACT,OAAS,cACT,WAAa,wEACb,eAAiB,yBACjB,mBAAqB,2BACrB,UAAY,kBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,6GACN,aAAe,aACnB,EACA,CACI,GAAK,EACL,OAAS,WACT,MAAQ,cACR,OAAS,4QACT,OAAS,uBACT,WAAa,iFACb,eAAiB,yBACjB,mBAAqB,yBACrB,UAAY,cACZ,SAAW,cACX,eAAiB,UACjB,IAAM,kFACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,eACT,MAAQ,kBACR,OAAS,6VACT,OAAS,MACT,WAAa,gFACb,eAAiB,yBACjB,mBAAqB,mCACrB,UAAY,YACZ,SAAW,cACX,eAAiB,UACjB,IAAM,sGACN,aAAe,gBACnB,EACA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,UACR,OAAS,8QACT,OAAS,gBACT,WAAa,+FACb,eAAiB,yBACjB,mBAAqB,oBACrB,UAAY,UACZ,SAAW,cACX,eAAiB,UACjB,IAAM,2HACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,iBACT,MAAQ,sBACR,OAAS,8LACT,OAAS,WACT,WAAa,0EACb,eAAiB,yBACjB,mBAAqB,iCACrB,UAAY,oBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,sDACN,aAAe,YACnB,EAEA,CACI,GAAK,GACL,OAAS,qCACT,MAAQ,gBACR,OAAS,gLACT,OAAS,WACT,WAAa,4DACb,eAAiB,yBACjB,mBAAqB,2BACrB,UAAY,gBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,gGACN,aAAe,cAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,gCACR,UAAY,UACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,sBACT,MAAQ,kBACR,UAAY,kCACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,iBACR,UAAY,gBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,qBACT,MAAQ,mBACR,UAAY,aACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,SACT,MAAQ,uBACR,UAAY,oBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,QACR,UAAY,aACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,WACT,MAAQ,YACR,UAAY,kBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,oBACT,MAAQ,yBACR,UAAY,sBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,kCACR,UAAY,aACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,OACT,MAAQ,uBACR,UAAY,qBACZ,SAAW,cACX,eAAiB,SAAA,CACrB,CAER,EChPaC,GAAW,CACpB,GAAK,KACL,MAAQ,iBACR,YAAc,+QACd,OAAS,CACL,CACI,GAAK,EACL,OAAS,cACT,MAAQ,eACR,OAAS,sFACT,OAAS,QACT,WAAa,4HACb,eAAiB,yBACjB,mBAAqB,0BACrB,UAAY,mBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,6FACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,aACT,MAAQ,UACR,OAAS,oTACT,OAAS,QACT,WAAa,6FACb,eAAiB,yBACjB,mBAAqB,qBACrB,UAAY,yBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,oGACN,aAAe,qBACnB,EACA,CACI,GAAK,EACL,OAAS,kBACT,MAAQ,wBACR,OAAS,sJACT,OAAS,eACT,WAAa,mFACb,eAAiB,yBACjB,mBAAqB,mCACrB,UAAY,YACZ,SAAW,cACX,eAAiB,UACjB,IAAM,yFACN,aAAe,iBACnB,EACA,CACI,GAAK,EACL,OAAS,gBACT,MAAQ,kBACR,OAAS,sLACT,OAAS,cACT,WAAa,qEACb,eAAiB,yBACjB,mBAAqB,4BACrB,UAAY,kBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,8EACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,YACT,MAAQ,yBACR,OAAS,4KACT,OAAS,cACT,WAAa,gHACb,eAAiB,yBACjB,mBAAqB,0BACrB,UAAY,WACZ,SAAW,cACX,eAAiB,UACjB,IAAM,yFACN,aAAe,aACnB,EACA,CACI,GAAK,EACL,OAAS,SACT,MAAQ,cACR,OAAS,6NACT,OAAS,UACT,WAAa,wDACb,eAAiB,yBACjB,mBAAqB,uBACrB,UAAY,UACZ,SAAW,cACX,eAAiB,UACjB,IAAM,8DACN,aAAe,eACnB,EACA,CACI,GAAK,EACL,OAAS,cACT,MAAQ,wBACR,OAAS,yNACT,OAAS,kBACT,WAAa,4EACb,eAAiB,yBACjB,mBAAqB,kCACrB,UAAY,mBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,uGACN,aAAe,aACnB,EACA,CACI,GAAK,EACL,OAAS,SACT,MAAQ,6BACR,OAAS,mKACT,OAAS,cACT,WAAa,wEACb,eAAiB,yBACjB,mBAAqB,wCACrB,UAAY,aACZ,SAAW,cACX,eAAiB,UACjB,IAAM,uEACN,aAAe,cACnB,EACA,CACI,GAAK,EACL,OAAS,iBACT,MAAQ,qCACR,OAAS,wLACT,OAAS,cACT,WAAa,4GACb,eAAiB,yBACjB,mBAAqB,gDACrB,UAAY,sBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,wEACN,aAAe,UACnB,EAEA,CACI,GAAK,GACL,OAAS,eACT,MAAQ,aACR,OAAS,qTACT,OAAS,UACT,WAAa,+DACb,eAAiB,yBACjB,mBAAqB,wBACrB,UAAY,sBACZ,SAAW,cACX,eAAiB,UACjB,IAAM,kGACN,aAAe,kBAAA,CAEvB,EACA,YAAc,CACV,CACI,GAAK,GACL,OAAS,gBACT,MAAQ,4BACR,UAAY,WACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,cACR,UAAY,0BACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,mBACT,MAAQ,sCACR,UAAY,SACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,gBACT,MAAQ,qBACR,UAAY,WACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,kBACT,MAAQ,gBACR,UAAY,OACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,WACT,MAAQ,oBACR,UAAY,2BACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,YACT,MAAQ,UACR,UAAY,sBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,iBACT,MAAQ,eACR,UAAY,+BACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,cACT,MAAQ,qBACR,UAAY,mBACZ,SAAW,cACX,eAAiB,SACrB,EACA,CACI,GAAK,GACL,OAAS,YACT,MAAQ,cACR,UAAY,qBACZ,SAAW,cACX,eAAiB,SAAA,CACrB,CAER,EC9NO,SAASC,GAAgB,CAGtB,MAAAC,EAAgBpB,EAAS,KACpB,CACH,KAAOkB,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,GACP,KAAOD,EACX,EACH,EAOD,SAASiB,EAAsBC,EAAc,CAGlC,OAAAF,EAAc,MAAME,CAAI,CAAA,CAG5B,MAAA,CACH,cAAAF,EACA,qBAAAC,CACJ,CACJ,+PCNU,KAAA,CAAE,cAAAD,CAAc,EAAID,EAAa,EAEjCI,EAAcvF,EAAaD,CAAY,8oDCuFvC,MAAAM,EAAaL,EAAaF,CAAW,EAErC0F,EAASxB,EAAS,IACb3D,EAAW,MAAM,OAAO,QAAQ,CAC1C;;i7CCtHD,MAAMoF,EAAc,IAAI,KAAK,EAAE,YAAY,kZCI3C,MAAMC,EAAQC,EAAS,EAGjB,CAAE,UAAAC,CAAU,EAAIC,EAAa,EAC7B,CAAE,eAAAC,EAAgB,eAAAC,CAAe,EAAIC,EAA8B,EACnE,CAAE,qBAAAX,CAAqB,EAAIF,EAAa,EAGxCI,EAAcvB,EAAS,IAClB0B,EAAM,OAAO,IACvB,EAGKrF,EAAa2D,EAAS,IACjBqB,EAAqBE,EAAY,KAAK,CAChD,EAGDU,EAAQnG,EAAaO,CAAU,EAC/B4F,EAAQlG,EAAcwF,CAAW,EAO1B,MAAAW,EAAYlC,EAAS,IACjB,GAAG3D,EAAW,MAAM,KAAK,qBACnC,EAOM8F,EAAkBnC,EAAS,IACvB,0DAA0DuB,EAAY,KAAK,GACrF,EAOMa,EAAoBpC,EAAS,IACzB,GAAG3D,EAAW,MAAM,KAAK,kBACnC,EAGKgG,EAAUrC,EAAS,IACd,OAAO,SAAS,IAC1B,EAEO,OAAAsC,EAAA,CACJ,KAAO,CACH,CACI,KAAO,cACP,QAAUH,EAAgB,KAC9B,EACA,CACI,KAAO,WACP,QAAUD,EAAU,MACpB,GAAK,UACT,EACA,CACI,KAAO,iBACP,QAAUC,EAAgB,MAC1B,GAAK,gBACT,EACA,CACI,KAAO,SACP,QAAUE,EAAQ,MAClB,GAAK,QAAA,CAEb,EAEA,KAAO,CAAC,CACJ,IAAM,YACN,KAAOA,EAAQ,KAClB,CAAA,CAAA,CACJ,EAGKE,EAAA,IAAMb,EAAQc,GAAO,CAGvB,MAAMC,EAAwBD,EAAG,KAGlBT,EAAAU,EAAQP,EAAU,KAAK,EAGvBJ,EAAA,EAGfF,EAAUQ,EAAkB,KAAK,CAAA,EAClC,CAAE,UAAY,GAAM"}