CINXE.COM
Home - BBC Reel
<!DOCTYPE html> <html lang="en" class="b-header--dark-grey--grey b-footer--dark-grey--grey b-reith-sans-font orb-js id-svg b-reith-sans-loaded b-pw-1280 orb-more-loaded se-touch n-touchevents"> <head><script type="text/javascript" src="https://web-static.archive.org/_static/js/bundle-playback.js?v=7YQSqjSh" charset="utf-8"></script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.bbc.com/reel","20211103091808","https://web.archive.org/","web","https://web-static.archive.org/_static/", "1635931088"); </script> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/banner-styles.css?v=p7PEIJWi" /> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <meta charset="utf-8"> <link rel="prefetch" href="https://web.archive.org/web/20211103091808/https://cdn.optimizely.com/public/4621041136/s/reel_prod.js"> <link rel="preconnect" href="//web.archive.org/web/20211103091808/https://logx.optimizely.com/"> <!-- Reel: 1.41.0_bd1116c08d2c4d3ee68eb3a8d2b749979d3f1dac --> <!-- Orbit: 3.0.0-1719.65af99a0 --> <!-- Environment: live --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> :root { --bbc-font: ReithSans, Arial, Helvetica, freesans, sans-serif; --bbc-font-legacy: Arial, Helvetica, freesans, sans-serif; } </style> <link rel="stylesheet" href="https://web.archive.org/web/20211103091808cs_/https://static.files.bbci.co.uk/orbit/0b0a71ff229422fc63da1ec4b9726123/css/orb-ltr.min.css"> <script src="https://web.archive.org/web/20211103091808js_/https://static.files.bbci.co.uk/orbit/0b0a71ff229422fc63da1ec4b9726123/js/require.min.js"></script> <script> // nav-orbit-pollyfills // Promise polyfill from https://github.com/bramstein/promis (function(){'use strict';var f,g=[];function l(a){g.push(a);1==g.length&&f()}function m(){for(;g.length;)g[0](),g.shift()}f=function(){setTimeout(m)};function n(a){this.a=p;this.b=void 0;this.f=[];var b=this;try{a(function(a){q(b,a)},function(a){r(b,a)})}catch(c){r(b,c)}}var p=2;function t(a){return new n(function(b,c){c(a)})}function u(a){return new n(function(b){b(a)})}function q(a,b){if(a.a==p){if(b==a)throw new TypeError;var c=!1;try{var d=b&&b.then;if(null!=b&&"object"==typeof b&&"function"==typeof d){d.call(b,function(b){c||q(a,b);c=!0},function(b){c||r(a,b);c=!0});return}}catch(e){c||r(a,e);return}a.a=0;a.b=b;v(a)}} function r(a,b){if(a.a==p){if(b==a)throw new TypeError;a.a=1;a.b=b;v(a)}}function v(a){l(function(){if(a.a!=p)for(;a.f.length;){var b=a.f.shift(),c=b[0],d=b[1],e=b[2],b=b[3];try{0==a.a?"function"==typeof c?e(c.call(void 0,a.b)):e(a.b):1==a.a&&("function"==typeof d?e(d.call(void 0,a.b)):b(a.b))}catch(h){b(h)}}})}n.prototype.g=function(a){return this.c(void 0,a)};n.prototype.c=function(a,b){var c=this;return new n(function(d,e){c.f.push([a,b,d,e]);v(c)})}; function w(a){return new n(function(b,c){function d(c){return function(d){h[c]=d;e+=1;e==a.length&&b(h)}}var e=0,h=[];0==a.length&&b(h);for(var k=0;k<a.length;k+=1)u(a[k]).c(d(k),c)})}function x(a){return new n(function(b,c){for(var d=0;d<a.length;d+=1)u(a[d]).c(b,c)})};window.Promise||(window.Promise=n,window.Promise.resolve=u,window.Promise.reject=t,window.Promise.race=x,window.Promise.all=w,window.Promise.prototype.then=n.prototype.c,window.Promise.prototype["catch"]=n.prototype.g);}()); // Polyfill Event constructor for IE ref: ORBITEN-919 // see: https://stackoverflow.com/questions/26596123 (function () { if (typeof window.CustomEvent === "function") { return false; } function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: undefined }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.Event = CustomEvent; })(); //Element.prototype.matches polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill if (!Element.prototype.matches) { Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; } //NodeList.forEach Polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Polyfill if (window.NodeList && !NodeList.prototype.forEach) { NodeList.prototype.forEach = Array.prototype.forEach; } // Object.assign polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Polyfill if (typeof Object.assign != 'function') { // Must be writable: true, enumerable: false, configurable: true Object.defineProperty(Object, "assign", { value: function assign(target, varArgs) { // .length of function is 2 'use strict'; if (target == null) { // TypeError if undefined or null throw new TypeError('Cannot convert undefined or null to object'); } var to = Object(target); for (var index = 1; index < arguments.length; index++) { var nextSource = arguments[index]; if (nextSource != null) { // Skip over if undefined or null for (var nextKey in nextSource) { // Avoid bugs when hasOwnProperty is shadowed if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) { to[nextKey] = nextSource[nextKey]; } } } } return to; }, writable: true, configurable: true }); } // window.fetch polyfill https://github.com/github/fetch/blob/v0.11.0/fetch.js - chosen for IE9 compatibility if(typeof window.fetch !== 'function') { (function(self){"use strict";if(self.fetch){return}function normalizeName(name){if(typeof name!=="string"){name=String(name)}if(/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(name)){throw new TypeError("Invalid character in header field name")}return name.toLowerCase()}function normalizeValue(value){if(typeof value!=="string"){value=String(value)}return value}function Headers(headers){this.map={};if(headers instanceof Headers){headers.forEach(function(value,name){this.append(name,value)},this)}else if(headers){Object.getOwnPropertyNames(headers).forEach(function(name){this.append(name,headers[name])},this)}}Headers.prototype.append=function(name,value){name=normalizeName(name);value=normalizeValue(value);var list=this.map[name];if(!list){list=[];this.map[name]=list}list.push(value)};Headers.prototype["delete"]=function(name){delete this.map[normalizeName(name)]};Headers.prototype.get=function(name){var values=this.map[normalizeName(name)];return values?values[0]:null};Headers.prototype.getAll=function(name){return this.map[normalizeName(name)]||[]};Headers.prototype.has=function(name){return this.map.hasOwnProperty(normalizeName(name))};Headers.prototype.set=function(name,value){this.map[normalizeName(name)]=[normalizeValue(value)]};Headers.prototype.forEach=function(callback,thisArg){Object.getOwnPropertyNames(this.map).forEach(function(name){this.map[name].forEach(function(value){callback.call(thisArg,value,name,this)},this)},this)};function consumed(body){if(body.bodyUsed){return Promise.reject(new TypeError("Already read"))}body.bodyUsed=true}function fileReaderReady(reader){return new Promise(function(resolve,reject){reader.onload=function(){resolve(reader.result)};reader.onerror=function(){reject(reader.error)}})}function readBlobAsArrayBuffer(blob){var reader=new FileReader;reader.readAsArrayBuffer(blob);return fileReaderReady(reader)}function readBlobAsText(blob){var reader=new FileReader;reader.readAsText(blob);return fileReaderReady(reader)}var support={blob:"FileReader"in self&&"Blob"in self&&function(){try{new Blob;return true}catch(e){return false}}(),formData:"FormData"in self,arrayBuffer:"ArrayBuffer"in self};function Body(){this.bodyUsed=false;this._initBody=function(body){this._bodyInit=body;if(typeof body==="string"){this._bodyText=body}else if(support.blob&&Blob.prototype.isPrototypeOf(body)){this._bodyBlob=body}else if(support.formData&&FormData.prototype.isPrototypeOf(body)){this._bodyFormData=body}else if(!body){this._bodyText=""}else if(support.arrayBuffer&&ArrayBuffer.prototype.isPrototypeOf(body)){}else{throw new Error("unsupported BodyInit type")}if(!this.headers.get("content-type")){if(typeof body==="string"){this.headers.set("content-type","text/plain;charset=UTF-8")}else if(this._bodyBlob&&this._bodyBlob.type){this.headers.set("content-type",this._bodyBlob.type)}}};if(support.blob){this.blob=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return Promise.resolve(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as blob")}else{return Promise.resolve(new Blob([this._bodyText]))}};this.arrayBuffer=function(){return this.blob().then(readBlobAsArrayBuffer)};this.text=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return readBlobAsText(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as text")}else{return Promise.resolve(this._bodyText)}}}else{this.text=function(){var rejected=consumed(this);return rejected?rejected:Promise.resolve(this._bodyText)}}if(support.formData){this.formData=function(){return this.text().then(decode)}}this.json=function(){return this.text().then(JSON.parse)};return this}var methods=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function normalizeMethod(method){var upcased=method.toUpperCase();return methods.indexOf(upcased)>-1?upcased:method}function Request(input,options){options=options||{};var body=options.body;if(Request.prototype.isPrototypeOf(input)){if(input.bodyUsed){throw new TypeError("Already read")}this.url=input.url;this.credentials=input.credentials;if(!options.headers){this.headers=new Headers(input.headers)}this.method=input.method;this.mode=input.mode;if(!body){body=input._bodyInit;input.bodyUsed=true}}else{this.url=input}this.credentials=options.credentials||this.credentials||"omit";if(options.headers||!this.headers){this.headers=new Headers(options.headers)}this.method=normalizeMethod(options.method||this.method||"GET");this.mode=options.mode||this.mode||null;this.referrer=null;if((this.method==="GET"||this.method==="HEAD")&&body){throw new TypeError("Body not allowed for GET or HEAD requests")}this._initBody(body)}Request.prototype.clone=function(){return new Request(this)};function decode(body){var form=new FormData;body.trim().split("&").forEach(function(bytes){if(bytes){var split=bytes.split("=");var name=split.shift().replace(/\+/g," ");var value=split.join("=").replace(/\+/g," ");form.append(decodeURIComponent(name),decodeURIComponent(value))}});return form}function headers(xhr){var head=new Headers;var pairs=xhr.getAllResponseHeaders().trim().split("\n");pairs.forEach(function(header){var split=header.trim().split(":");var key=split.shift().trim();var value=split.join(":").trim();head.append(key,value)});return head}Body.call(Request.prototype);function Response(bodyInit,options){if(!options){options={}}this.type="default";this.status=options.status;this.ok=this.status>=200&&this.status<300;this.statusText=options.statusText;this.headers=options.headers instanceof Headers?options.headers:new Headers(options.headers);this.url=options.url||"";this._initBody(bodyInit)}Body.call(Response.prototype);Response.prototype.clone=function(){return new Response(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Headers(this.headers),url:this.url})};Response.error=function(){var response=new Response(null,{status:0,statusText:""});response.type="error";return response};var redirectStatuses=[301,302,303,307,308];Response.redirect=function(url,status){if(redirectStatuses.indexOf(status)===-1){throw new RangeError("Invalid status code")}return new Response(null,{status:status,headers:{location:url}})};self.Headers=Headers;self.Request=Request;self.Response=Response;self.fetch=function(input,init){return new Promise(function(resolve,reject){var request;if(Request.prototype.isPrototypeOf(input)&&!init){request=input}else{request=new Request(input,init)}var xhr=new XMLHttpRequest;function responseURL(){if("responseURL"in xhr){return xhr.responseURL}if(/^X-Request-URL:/m.test(xhr.getAllResponseHeaders())){return xhr.getResponseHeader("X-Request-URL")}return}xhr.onload=function(){var status=xhr.status===1223?204:xhr.status;if(status<100||status>599){reject(new TypeError("Network request failed"));return}var options={status:status,statusText:xhr.statusText,headers:headers(xhr),url:responseURL()};var body="response"in xhr?xhr.response:xhr.responseText;resolve(new Response(body,options))};xhr.onerror=function(){reject(new TypeError("Network request failed"))};xhr.open(request.method,request.url,true);if(request.credentials==="include"){xhr.withCredentials=true}if("responseType"in xhr&&support.blob){xhr.responseType="blob"}request.headers.forEach(function(value,name){xhr.setRequestHeader(name,value)});xhr.send(typeof request._bodyInit==="undefined"?null:request._bodyInit)})};self.fetch.polyfill=true})(typeof self!=="undefined"?self:this); } if (typeof window.CustomEvent !== 'function') { function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: null }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.CustomEvent = CustomEvent; } </script> <script> window.orbitData = {}; var additionalPageProperties = {}; additionalPageProperties['custom_var_9'] = '1' || null; window.orbitData.userProfileUrl = "https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/userprofile"; window.page = { name: 'reel.page' || null, destination: 'FEATURE_SITES_GNL' || null, producer: 'REEL' || null, section: '' || null, site: '' || null, contentId: '' || null, contentType: 'index-home' || null, edition: '' || null, additionalProperties: additionalPageProperties }; window.page.language = 'en'; window.page.language = 'en'; window.page.modal = false; !function(){var t={3053:function(t,r,e){function n(t,r){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(t,r).enumerable}))),e.push.apply(e,n)}return e}function o(t){for(var r=1;r<arguments.length;r++){var e=null!=arguments[r]?arguments[r]:{};r%2?n(Object(e),!0).forEach((function(r){i(t,r,e[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):n(Object(e)).forEach((function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(e,r))}))}return t}function i(t,r,e){return r in t?Object.defineProperty(t,r,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[r]=e,t}var u=e(1391),c=e(9135);window.bbcpage=u.init(o({},window.page)),window.page=void 0,window.bbcuser=c.init(window,o({},window.user))},1391:function(t){function r(t,r){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(t,r).enumerable}))),e.push.apply(e,n)}return e}function e(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?r(Object(o),!0).forEach((function(r){n(t,r,o[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):r(Object(o)).forEach((function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(o,r))}))}return t}function n(t,r,e){return r in t?Object.defineProperty(t,r,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[r]=e,t}t.exports={init:function(t){var r=e({},t);return document.addEventListener("bbc-page-reset",(function(t){var e;t.detail&&t.detail.page&&(e=t.detail.page,r=Object.assign(r,e)),document.dispatchEvent(new Event("bbc-page-updated"))})),{getName:function(){return Promise.resolve(r.name||function(){if("file:"===window.location.protocol)return"local.file";var t=window.location.pathname.replace(/\/$/,"").replace(/^\//,"").replace(/\//g,".");return"".concat(t,".page")}())},getLanguage:function(){return Promise.resolve(r.language)},getDestination:function(){return Promise.resolve(r.destination)},getProducer:function(){return Promise.resolve(r.producer)},getSection:function(){return Promise.resolve(r.section)},getContentType:function(){return Promise.resolve(r.contentType)},getContentId:function(){return Promise.resolve(r.contentId)},getReferrer:function(){return Promise.resolve(window.orb&&null!==window.orb.referrer&&void 0!==window.orb.referrer?window.orb.referrer:document.referrer)},getAdditionalProperties:function(){return Promise.resolve(e({},r.additionalProperties))},loadCSS:function(t){return new Promise((function(r,e){var n=document.createElement("link");n.type="text/css",n.rel="stylesheet",n.onload=function(){r()},n.href=t,document.getElementsByTagName("head")[0].appendChild(n)}))},isModal:function(){return Promise.resolve(r.modal)}}}}},9135:function(t){function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function e(t,r){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(t,r).enumerable}))),e.push.apply(e,n)}return e}function n(t){for(var r=1;r<arguments.length;r++){var n=null!=arguments[r]?arguments[r]:{};r%2?e(Object(n),!0).forEach((function(r){o(t,r,n[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):e(Object(n)).forEach((function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))}))}return t}function o(t,r,e){return r in t?Object.defineProperty(t,r,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[r]=e,t}function i(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function u(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function c(t){var r="function"==typeof Map?new Map:void 0;return(c=function(t){if(null===t||(e=t,-1===Function.toString.call(e).indexOf("[native code]")))return t;var e;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==r){if(r.has(t))return r.get(t);r.set(t,n)}function n(){return a(t,arguments,l(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),f(n,t)})(t)}function a(t,r,e){return(a=s()?Reflect.construct:function(t,r,e){var n=[null];n.push.apply(n,r);var o=new(Function.bind.apply(t,n));return e&&f(o,e.prototype),o}).apply(null,arguments)}function s(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}function f(t,r){return(f=Object.setPrototypeOf||function(t,r){return t.__proto__=r,t})(t,r)}function l(t){return(l=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var p=function(t){!function(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),r&&f(t,r)}(o,t);var r,e,n=(r=o,e=s(),function(){var t,n=l(r);if(e){var o=l(this).constructor;t=Reflect.construct(n,arguments,o)}else t=n.apply(this,arguments);return u(this,t)});function o(){return i(this,o),n.apply(this,arguments)}return o}(c(Error));function h(t){return new Promise((function(r,e){window.require(t,(function(){r.apply(this,arguments)}),(function(t){e(t)}))}))}t.exports={init:function(t,r){var e,o=n({},r),i=null;function u(){if(["X-Country","X-Ip_is_advertise_combined","X-Ip_is_uk_combined"].every((function(t){return!!o[t]})))return Promise.resolve(o);if(!i){var r=t.location.hostname.endsWith(".com")?"com":"co.uk";i=t.fetch("https://web.archive.org/web/20211103091808/https://www.bbc.".concat(r,"/userinfo")).then((function(t){return t.json()}))}return i}function c(t){if(t.status>=200&&t.status<300)return t;var r=new Error(t.statusText);throw r.response=t,r}function a(t){return t.json()}function s(){if(o.ageBand)return Promise.resolve(o);if(!e){if("undefined"==typeof XMLHttpRequest||!("withCredentials"in new XMLHttpRequest))return Promise.resolve(o);e=h(["idcta-v2/idcta-1"]).then((function(r){return r.initiateTokenRefresh().then((function(){return t.fetch(t.orbitData.userProfileUrl,{credentials:"include"}).then(c).then(a).then((function(t){return o=n(n({},o),t)}))}))}))}return e}var f={getHashedId:function(){return h(["idcta-v2/idcta-1"]).then((function(t){return t.getCookieInstance().getHidFromCookie()}))},isSignedIn:function(){return h(["idcta-v2/idcta-1"]).then((function(t){return t&&t.getCookieInstance().hasCookie()}))},getCountry:function(){return u().then((function(t){return t["X-Country"]||"gb"}))},isUKCombined:function(){return u().then((function(t){if(!t["X-Ip_is_uk_combined"])throw new p("missing isUKCombined from userinfo response");return"yes"===t["X-Ip_is_uk_combined"].toLowerCase()}))},canSeeAdverts:function(){return u().then((function(t){if(!t["X-Ip_is_advertise_combined"])throw new p("missing canSeeAdverts from userinfo response");return"yes"===t["X-Ip_is_advertise_combined"].toLowerCase()}))},getAgeBand:function(){return u().then((function(t){return t["X-Age-Band"]?Promise.resolve(t["X-Age-Band"]):f.isSignedIn().then((function(t){if(t)return s().then((function(t){return o["X-Age-Band"]=t["X-Age-Band"],o["X-Age-Band"]||void 0})).catch((function(){return o["X-Age-Band"]||void 0}))}))}))},allowsPerformanceCookies:function(){return h(["orb/cookies"]).then((function(t){return!!t.cookiesEnabled()&&!!t.readPolicy("performance")}))},allowsFunctionalCookies:function(){return h(["orb/cookies"]).then((function(t){return!!t.cookiesEnabled()&&!!t.readPolicy("personalisation")}))},getCookieValue:function(t){return h(["orb/cookies"]).then((function(r){return r.get(t)}))}};return f},BBCUserError:p}},7633:function(t,r,e){e(9170),e(6992),e(1539),e(8674),e(7922),e(4668),e(7727),e(8783);var n=e(857);t.exports=n.Promise},1111:function(t,r,e){e(1539),e(4916),e(4953),e(8992),e(9841),e(4506),e(7852),e(2023),e(4723),e(6373),e(6528),e(3112),e(2481),e(5306),e(8757),e(4765),e(3123),e(3157),e(3650),e(3210),e(5674),e(8702),e(8783),e(5218),e(4475),e(7929),e(915),e(9253),e(2125),e(8830),e(8734),e(9254),e(7268),e(7397),e(86),e(623);var n=e(857);t.exports=n.String},9662:function(t,r,e){var n=e(7854),o=e(614),i=e(6330),u=n.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not a function")}},9483:function(t,r,e){var n=e(7854),o=e(4411),i=e(6330),u=n.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not a constructor")}},6077:function(t,r,e){var n=e(7854),o=e(614),i=n.String,u=n.TypeError;t.exports=function(t){if("object"==typeof t||o(t))return t;throw u("Can't set "+i(t)+" as a prototype")}},1223:function(t,r,e){var n=e(5112),o=e(30),i=e(3070),u=n("unscopables"),c=Array.prototype;null==c[u]&&i.f(c,u,{configurable:!0,value:o(null)}),t.exports=function(t){c[u][t]=!0}},1530:function(t,r,e){"use strict";var n=e(8710).charAt;t.exports=function(t,r,e){return r+(e?n(t,r).length:1)}},5787:function(t,r,e){var n=e(7854),o=e(7976),i=n.TypeError;t.exports=function(t,r){if(o(r,t))return t;throw i("Incorrect invocation")}},9670:function(t,r,e){var n=e(7854),o=e(111),i=n.String,u=n.TypeError;t.exports=function(t){if(o(t))return t;throw u(i(t)+" is not an object")}},1318:function(t,r,e){var n=e(5656),o=e(1400),i=e(6244),u=function(t){return function(r,e,u){var c,a=n(r),s=i(a),f=o(u,s);if(t&&e!=e){for(;s>f;)if((c=a[f++])!=c)return!0}else for(;s>f;f++)if((t||f in a)&&a[f]===e)return t||f||0;return!t&&-1}};t.exports={includes:u(!0),indexOf:u(!1)}},206:function(t,r,e){var n=e(1702);t.exports=n([].slice)},7072:function(t,r,e){var n=e(5112)("iterator"),o=!1;try{var i=0,u={next:function(){return{done:!!i++}},return:function(){o=!0}};u[n]=function(){return this},Array.from(u,(function(){throw 2}))}catch(t){}t.exports=function(t,r){if(!r&&!o)return!1;var e=!1;try{var i={};i[n]=function(){return{next:function(){return{done:e=!0}}}},t(i)}catch(t){}return e}},4326:function(t,r,e){var n=e(1702),o=n({}.toString),i=n("".slice);t.exports=function(t){return i(o(t),8,-1)}},648:function(t,r,e){var n=e(7854),o=e(1694),i=e(614),u=e(4326),c=e(5112)("toStringTag"),a=n.Object,s="Arguments"==u(function(){return arguments}());t.exports=o?u:function(t){var r,e,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,r){try{return t[r]}catch(t){}}(r=a(t),c))?e:s?u(r):"Object"==(n=u(r))&&i(r.callee)?"Arguments":n}},7741:function(t,r,e){var n=e(1702),o=e(206),i=n("".replace),u=n("".split),c=n([].join),a=String(Error("zxcasd").stack),s=/\n\s*at [^:]*:[^\n]*/,f=s.test(a),l=/@[^\n]*\n/.test(a)&&!/zxcasd/.test(a);t.exports=function(t,r){if("string"!=typeof t)return t;if(f)for(;r--;)t=i(t,s,"");else if(l)return c(o(u(t,"\n"),r),"\n");return t}},9920:function(t,r,e){var n=e(2597),o=e(3887),i=e(1236),u=e(3070);t.exports=function(t,r){for(var e=o(r),c=u.f,a=i.f,s=0;s<e.length;s++){var f=e[s];n(t,f)||c(t,f,a(r,f))}}},4964:function(t,r,e){var n=e(5112)("match");t.exports=function(t){var r=/./;try{"/./"[t](r)}catch(e){try{return r[n]=!1,"/./"[t](r)}catch(t){}}return!1}},8544:function(t,r,e){var n=e(7293);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},4230:function(t,r,e){var n=e(1702),o=e(4488),i=e(1340),u=/"/g,c=n("".replace);t.exports=function(t,r,e,n){var a=i(o(t)),s="<"+r;return""!==e&&(s+=" "+e+'="'+c(i(n),u,""")+'"'),s+">"+a+"</"+r+">"}},4994:function(t,r,e){"use strict";var n=e(3383).IteratorPrototype,o=e(30),i=e(9114),u=e(8003),c=e(7497),a=function(){return this};t.exports=function(t,r,e){var s=r+" Iterator";return t.prototype=o(n,{next:i(1,e)}),u(t,s,!1,!0),c[s]=a,t}},8880:function(t,r,e){var n=e(9781),o=e(3070),i=e(9114);t.exports=n?function(t,r,e){return o.f(t,r,i(1,e))}:function(t,r,e){return t[r]=e,t}},9114:function(t){t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},654:function(t,r,e){"use strict";var n=e(2109),o=e(6916),i=e(1913),u=e(6530),c=e(614),a=e(4994),s=e(9518),f=e(7674),l=e(8003),p=e(8880),h=e(1320),d=e(5112),v=e(7497),y=e(3383),g=u.PROPER,b=u.CONFIGURABLE,m=y.IteratorPrototype,x=y.BUGGY_SAFARI_ITERATORS,w=d("iterator"),O="keys",E="values",S="entries",j=function(){return this};t.exports=function(t,r,e,u,d,y,P){a(e,r,u);var T,_,A,I=function(t){if(t===d&&B)return B;if(!x&&t in k)return k[t];switch(t){case O:case E:case S:return function(){return new e(this,t)}}return function(){return new e(this)}},R=r+" Iterator",L=!1,k=t.prototype,C=k[w]||k["@@iterator"]||d&&k[d],B=!x&&C||I(d),D="Array"==r&&k.entries||C;if(D&&(T=s(D.call(new t)))!==Object.prototype&&T.next&&(i||s(T)===m||(f?f(T,m):c(T[w])||h(T,w,j)),l(T,R,!0,!0),i&&(v[R]=j)),g&&d==E&&C&&C.name!==E&&(!i&&b?p(k,"name",E):(L=!0,B=function(){return o(C,this)})),d)if(_={values:I(E),keys:y?B:I(O),entries:I(S)},P)for(A in _)(x||L||!(A in k))&&h(k,A,_[A]);else n({target:r,proto:!0,forced:x||L},_);return i&&!P||k[w]===B||h(k,w,B,{name:d}),v[r]=B,_}},9781:function(t,r,e){var n=e(7293);t.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:function(t,r,e){var n=e(7854),o=e(111),i=n.document,u=o(i)&&o(i.createElement);t.exports=function(t){return u?i.createElement(t):{}}},8324:function(t){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:function(t,r,e){var n=e(317)("span").classList,o=n&&n.constructor&&n.constructor.prototype;t.exports=o===Object.prototype?void 0:o},7871:function(t){t.exports="object"==typeof window},1528:function(t,r,e){var n=e(8113),o=e(7854);t.exports=/ipad|iphone|ipod/i.test(n)&&void 0!==o.Pebble},6833:function(t,r,e){var n=e(8113);t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)},5268:function(t,r,e){var n=e(4326),o=e(7854);t.exports="process"==n(o.process)},1036:function(t,r,e){var n=e(8113);t.exports=/web0s(?!.*chrome)/i.test(n)},8113:function(t,r,e){var n=e(5005);t.exports=n("navigator","userAgent")||""},7392:function(t,r,e){var n,o,i=e(7854),u=e(8113),c=i.process,a=i.Deno,s=c&&c.versions||a&&a.version,f=s&&s.v8;f&&(o=(n=f.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!o&&u&&(!(n=u.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=u.match(/Chrome\/(\d+)/))&&(o=+n[1]),t.exports=o},748:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2914:function(t,r,e){var n=e(7293),o=e(9114);t.exports=!n((function(){var t=Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",o(1,7)),7!==t.stack)}))},2109:function(t,r,e){var n=e(7854),o=e(1236).f,i=e(8880),u=e(1320),c=e(3505),a=e(9920),s=e(4705);t.exports=function(t,r){var e,f,l,p,h,d=t.target,v=t.global,y=t.stat;if(e=v?n:y?n[d]||c(d,{}):(n[d]||{}).prototype)for(f in r){if(p=r[f],l=t.noTargetGet?(h=o(e,f))&&h.value:e[f],!s(v?f:d+(y?".":"#")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;a(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),u(e,f,p,t)}}},7293:function(t){t.exports=function(t){try{return!!t()}catch(t){return!0}}},7007:function(t,r,e){"use strict";e(4916);var n=e(1702),o=e(1320),i=e(2261),u=e(7293),c=e(5112),a=e(8880),s=c("species"),f=RegExp.prototype;t.exports=function(t,r,e,l){var p=c(t),h=!u((function(){var r={};return r[p]=function(){return 7},7!=""[t](r)})),d=h&&!u((function(){var r=!1,e=/a/;return"split"===t&&((e={}).constructor={},e.constructor[s]=function(){return e},e.flags="",e[p]=/./[p]),e.exec=function(){return r=!0,null},e[p](""),!r}));if(!h||!d||e){var v=n(/./[p]),y=r(p,""[t],(function(t,r,e,o,u){var c=n(t),a=r.exec;return a===i||a===f.exec?h&&!u?{done:!0,value:v(r,e,o)}:{done:!0,value:c(e,r,o)}:{done:!1}}));o(String.prototype,t,y[0]),o(f,p,y[1])}l&&a(f[p],"sham",!0)}},2104:function(t){var r=Function.prototype,e=r.apply,n=r.bind,o=r.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?o.bind(e):function(){return o.apply(e,arguments)})},9974:function(t,r,e){var n=e(1702),o=e(9662),i=n(n.bind);t.exports=function(t,r){return o(t),void 0===r?t:i?i(t,r):function(){return t.apply(r,arguments)}}},6916:function(t){var r=Function.prototype.call;t.exports=r.bind?r.bind(r):function(){return r.apply(r,arguments)}},6530:function(t,r,e){var n=e(9781),o=e(2597),i=Function.prototype,u=n&&Object.getOwnPropertyDescriptor,c=o(i,"name"),a=c&&"something"===function(){}.name,s=c&&(!n||n&&u(i,"name").configurable);t.exports={EXISTS:c,PROPER:a,CONFIGURABLE:s}},1702:function(t){var r=Function.prototype,e=r.bind,n=r.call,o=e&&e.bind(n);t.exports=e?function(t){return t&&o(n,t)}:function(t){return t&&function(){return n.apply(t,arguments)}}},5005:function(t,r,e){var n=e(7854),o=e(614),i=function(t){return o(t)?t:void 0};t.exports=function(t,r){return arguments.length<2?i(n[t]):n[t]&&n[t][r]}},1246:function(t,r,e){var n=e(648),o=e(8173),i=e(7497),u=e(5112)("iterator");t.exports=function(t){if(null!=t)return o(t,u)||o(t,"@@iterator")||i[n(t)]}},8554:function(t,r,e){var n=e(7854),o=e(6916),i=e(9662),u=e(9670),c=e(6330),a=e(1246),s=n.TypeError;t.exports=function(t,r){var e=arguments.length<2?a(t):r;if(i(e))return u(o(e,t));throw s(c(t)+" is not iterable")}},8173:function(t,r,e){var n=e(9662);t.exports=function(t,r){var e=t[r];return null==e?void 0:n(e)}},647:function(t,r,e){var n=e(1702),o=e(7908),i=Math.floor,u=n("".charAt),c=n("".replace),a=n("".slice),s=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,f=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,r,e,n,l,p){var h=e+t.length,d=n.length,v=f;return void 0!==l&&(l=o(l),v=s),c(p,v,(function(o,c){var s;switch(u(c,0)){case"$":return"$";case"&":return t;case"`":return a(r,0,e);case"'":return a(r,h);case"<":s=l[a(c,1,-1)];break;default:var f=+c;if(0===f)return o;if(f>d){var p=i(f/10);return 0===p?o:p<=d?void 0===n[p-1]?u(c,1):n[p-1]+u(c,1):o}s=n[f-1]}return void 0===s?"":s}))}},7854:function(t,r,e){var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof e.g&&e.g)||function(){return this}()||Function("return this")()},2597:function(t,r,e){var n=e(1702),o=e(7908),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,r){return i(o(t),r)}},3501:function(t){t.exports={}},842:function(t,r,e){var n=e(7854);t.exports=function(t,r){var e=n.console;e&&e.error&&(1==arguments.length?e.error(t):e.error(t,r))}},490:function(t,r,e){var n=e(5005);t.exports=n("document","documentElement")},4664:function(t,r,e){var n=e(9781),o=e(7293),i=e(317);t.exports=!n&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:function(t,r,e){var n=e(7854),o=e(1702),i=e(7293),u=e(4326),c=n.Object,a=o("".split);t.exports=i((function(){return!c("z").propertyIsEnumerable(0)}))?function(t){return"String"==u(t)?a(t,""):c(t)}:c},2788:function(t,r,e){var n=e(1702),o=e(614),i=e(5465),u=n(Function.toString);o(i.inspectSource)||(i.inspectSource=function(t){return u(t)}),t.exports=i.inspectSource},8340:function(t,r,e){var n=e(111),o=e(8880);t.exports=function(t,r){n(r)&&"cause"in r&&o(t,"cause",r.cause)}},9909:function(t,r,e){var n,o,i,u=e(8536),c=e(7854),a=e(1702),s=e(111),f=e(8880),l=e(2597),p=e(5465),h=e(6200),d=e(3501),v="Object already initialized",y=c.TypeError,g=c.WeakMap;if(u||p.state){var b=p.state||(p.state=new g),m=a(b.get),x=a(b.has),w=a(b.set);n=function(t,r){if(x(b,t))throw new y(v);return r.facade=t,w(b,t,r),r},o=function(t){return m(b,t)||{}},i=function(t){return x(b,t)}}else{var O=h("state");d[O]=!0,n=function(t,r){if(l(t,O))throw new y(v);return r.facade=t,f(t,O,r),r},o=function(t){return l(t,O)?t[O]:{}},i=function(t){return l(t,O)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(r){var e;if(!s(r)||(e=o(r)).type!==t)throw y("Incompatible receiver, "+t+" required");return e}}}},7659:function(t,r,e){var n=e(5112),o=e(7497),i=n("iterator"),u=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||u[i]===t)}},614:function(t){t.exports=function(t){return"function"==typeof t}},4411:function(t,r,e){var n=e(1702),o=e(7293),i=e(614),u=e(648),c=e(5005),a=e(2788),s=function(){},f=[],l=c("Reflect","construct"),p=/^\s*(?:class|function)\b/,h=n(p.exec),d=!p.exec(s),v=function(t){if(!i(t))return!1;try{return l(s,f,t),!0}catch(t){return!1}};t.exports=!l||o((function(){var t;return v(v.call)||!v(Object)||!v((function(){t=!0}))||t}))?function(t){if(!i(t))return!1;switch(u(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return d||!!h(p,a(t))}:v},4705:function(t,r,e){var n=e(7293),o=e(614),i=/#|\.prototype\./,u=function(t,r){var e=a[c(t)];return e==f||e!=s&&(o(r)?n(r):!!r)},c=u.normalize=function(t){return String(t).replace(i,".").toLowerCase()},a=u.data={},s=u.NATIVE="N",f=u.POLYFILL="P";t.exports=u},111:function(t,r,e){var n=e(614);t.exports=function(t){return"object"==typeof t?null!==t:n(t)}},1913:function(t){t.exports=!1},7850:function(t,r,e){var n=e(111),o=e(4326),i=e(5112)("match");t.exports=function(t){var r;return n(t)&&(void 0!==(r=t[i])?!!r:"RegExp"==o(t))}},2190:function(t,r,e){var n=e(7854),o=e(5005),i=e(614),u=e(7976),c=e(3307),a=n.Object;t.exports=c?function(t){return"symbol"==typeof t}:function(t){var r=o("Symbol");return i(r)&&u(r.prototype,a(t))}},408:function(t,r,e){var n=e(7854),o=e(9974),i=e(6916),u=e(9670),c=e(6330),a=e(7659),s=e(6244),f=e(7976),l=e(8554),p=e(1246),h=e(9212),d=n.TypeError,v=function(t,r){this.stopped=t,this.result=r},y=v.prototype;t.exports=function(t,r,e){var n,g,b,m,x,w,O,E=e&&e.that,S=!(!e||!e.AS_ENTRIES),j=!(!e||!e.IS_ITERATOR),P=!(!e||!e.INTERRUPTED),T=o(r,E),_=function(t){return n&&h(n,"normal",t),new v(!0,t)},A=function(t){return S?(u(t),P?T(t[0],t[1],_):T(t[0],t[1])):P?T(t,_):T(t)};if(j)n=t;else{if(!(g=p(t)))throw d(c(t)+" is not iterable");if(a(g)){for(b=0,m=s(t);m>b;b++)if((x=A(t[b]))&&f(y,x))return x;return new v(!1)}n=l(t,g)}for(w=n.next;!(O=i(w,n)).done;){try{x=A(O.value)}catch(t){h(n,"throw",t)}if("object"==typeof x&&x&&f(y,x))return x}return new v(!1)}},9212:function(t,r,e){var n=e(6916),o=e(9670),i=e(8173);t.exports=function(t,r,e){var u,c;o(t);try{if(!(u=i(t,"return"))){if("throw"===r)throw e;return e}u=n(u,t)}catch(t){c=!0,u=t}if("throw"===r)throw e;if(c)throw u;return o(u),e}},3383:function(t,r,e){"use strict";var n,o,i,u=e(7293),c=e(614),a=e(30),s=e(9518),f=e(1320),l=e(5112),p=e(1913),h=l("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=s(s(i)))!==Object.prototype&&(n=o):d=!0),null==n||u((function(){var t={};return n[h].call(t)!==t}))?n={}:p&&(n=a(n)),c(n[h])||f(n,h,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:d}},7497:function(t){t.exports={}},6244:function(t,r,e){var n=e(7466);t.exports=function(t){return n(t.length)}},5948:function(t,r,e){var n,o,i,u,c,a,s,f,l=e(7854),p=e(9974),h=e(1236).f,d=e(261).set,v=e(6833),y=e(1528),g=e(1036),b=e(5268),m=l.MutationObserver||l.WebKitMutationObserver,x=l.document,w=l.process,O=l.Promise,E=h(l,"queueMicrotask"),S=E&&E.value;S||(n=function(){var t,r;for(b&&(t=w.domain)&&t.exit();o;){r=o.fn,o=o.next;try{r()}catch(t){throw o?u():i=void 0,t}}i=void 0,t&&t.enter()},v||b||g||!m||!x?!y&&O&&O.resolve?((s=O.resolve(void 0)).constructor=O,f=p(s.then,s),u=function(){f(n)}):b?u=function(){w.nextTick(n)}:(d=p(d,l),u=function(){d(n)}):(c=!0,a=x.createTextNode(""),new m(n).observe(a,{characterData:!0}),u=function(){a.data=c=!c})),t.exports=S||function(t){var r={fn:t,next:void 0};i&&(i.next=r),o||(o=r,u()),i=r}},3366:function(t,r,e){var n=e(7854);t.exports=n.Promise},133:function(t,r,e){var n=e(7392),o=e(7293);t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},8536:function(t,r,e){var n=e(7854),o=e(614),i=e(2788),u=n.WeakMap;t.exports=o(u)&&/native code/.test(i(u))},8523:function(t,r,e){"use strict";var n=e(9662),o=function(t){var r,e;this.promise=new t((function(t,n){if(void 0!==r||void 0!==e)throw TypeError("Bad Promise constructor");r=t,e=n})),this.resolve=n(r),this.reject=n(e)};t.exports.f=function(t){return new o(t)}},6277:function(t,r,e){var n=e(1340);t.exports=function(t,r){return void 0===t?arguments.length<2?"":r:n(t)}},3929:function(t,r,e){var n=e(7854),o=e(7850),i=n.TypeError;t.exports=function(t){if(o(t))throw i("The method doesn't accept regular expressions");return t}},30:function(t,r,e){var n,o=e(9670),i=e(6048),u=e(748),c=e(3501),a=e(490),s=e(317),f=e(6200),l=f("IE_PROTO"),p=function(){},h=function(t){return"<script>"+t+"</"+"script>"},d=function(t){t.write(h("")),t.close();var r=t.parentWindow.Object;return t=null,r},v=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,r;v="undefined"!=typeof document?document.domain&&n?d(n):((r=s("iframe")).style.display="none",a.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write(h("document.F=Object")),t.close(),t.F):d(n);for(var e=u.length;e--;)delete v.prototype[u[e]];return v()};c[l]=!0,t.exports=Object.create||function(t,r){var e;return null!==t?(p.prototype=o(t),e=new p,p.prototype=null,e[l]=t):e=v(),void 0===r?e:i(e,r)}},6048:function(t,r,e){var n=e(9781),o=e(3070),i=e(9670),u=e(5656),c=e(1956);t.exports=n?Object.defineProperties:function(t,r){i(t);for(var e,n=u(r),a=c(r),s=a.length,f=0;s>f;)o.f(t,e=a[f++],n[e]);return t}},3070:function(t,r,e){var n=e(7854),o=e(9781),i=e(4664),u=e(9670),c=e(4948),a=n.TypeError,s=Object.defineProperty;r.f=o?s:function(t,r,e){if(u(t),r=c(r),u(e),i)try{return s(t,r,e)}catch(t){}if("get"in e||"set"in e)throw a("Accessors not supported");return"value"in e&&(t[r]=e.value),t}},1236:function(t,r,e){var n=e(9781),o=e(6916),i=e(5296),u=e(9114),c=e(5656),a=e(4948),s=e(2597),f=e(4664),l=Object.getOwnPropertyDescriptor;r.f=n?l:function(t,r){if(t=c(t),r=a(r),f)try{return l(t,r)}catch(t){}if(s(t,r))return u(!o(i.f,t,r),t[r])}},8006:function(t,r,e){var n=e(6324),o=e(748).concat("length","prototype");r.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},5181:function(t,r){r.f=Object.getOwnPropertySymbols},9518:function(t,r,e){var n=e(7854),o=e(2597),i=e(614),u=e(7908),c=e(6200),a=e(8544),s=c("IE_PROTO"),f=n.Object,l=f.prototype;t.exports=a?f.getPrototypeOf:function(t){var r=u(t);if(o(r,s))return r[s];var e=r.constructor;return i(e)&&r instanceof e?e.prototype:r instanceof f?l:null}},7976:function(t,r,e){var n=e(1702);t.exports=n({}.isPrototypeOf)},6324:function(t,r,e){var n=e(1702),o=e(2597),i=e(5656),u=e(1318).indexOf,c=e(3501),a=n([].push);t.exports=function(t,r){var e,n=i(t),s=0,f=[];for(e in n)!o(c,e)&&o(n,e)&&a(f,e);for(;r.length>s;)o(n,e=r[s++])&&(~u(f,e)||a(f,e));return f}},1956:function(t,r,e){var n=e(6324),o=e(748);t.exports=Object.keys||function(t){return n(t,o)}},5296:function(t,r){"use strict";var e={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!e.call({1:2},1);r.f=o?function(t){var r=n(this,t);return!!r&&r.enumerable}:e},7674:function(t,r,e){var n=e(1702),o=e(9670),i=e(6077);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,e={};try{(t=n(Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set))(e,[]),r=e instanceof Array}catch(t){}return function(e,n){return o(e),i(n),r?t(e,n):e.__proto__=n,e}}():void 0)},288:function(t,r,e){"use strict";var n=e(1694),o=e(648);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},2140:function(t,r,e){var n=e(7854),o=e(6916),i=e(614),u=e(111),c=n.TypeError;t.exports=function(t,r){var e,n;if("string"===r&&i(e=t.toString)&&!u(n=o(e,t)))return n;if(i(e=t.valueOf)&&!u(n=o(e,t)))return n;if("string"!==r&&i(e=t.toString)&&!u(n=o(e,t)))return n;throw c("Can't convert object to primitive value")}},3887:function(t,r,e){var n=e(5005),o=e(1702),i=e(8006),u=e(5181),c=e(9670),a=o([].concat);t.exports=n("Reflect","ownKeys")||function(t){var r=i.f(c(t)),e=u.f;return e?a(r,e(t)):r}},857:function(t,r,e){var n=e(7854);t.exports=n},2534:function(t){t.exports=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}}},9478:function(t,r,e){var n=e(9670),o=e(111),i=e(8523);t.exports=function(t,r){if(n(t),o(r)&&r.constructor===t)return r;var e=i.f(t);return(0,e.resolve)(r),e.promise}},2248:function(t,r,e){var n=e(1320);t.exports=function(t,r,e){for(var o in r)n(t,o,r[o],e);return t}},1320:function(t,r,e){var n=e(7854),o=e(614),i=e(2597),u=e(8880),c=e(3505),a=e(2788),s=e(9909),f=e(6530).CONFIGURABLE,l=s.get,p=s.enforce,h=String(String).split("String");(t.exports=function(t,r,e,a){var s,l=!!a&&!!a.unsafe,d=!!a&&!!a.enumerable,v=!!a&&!!a.noTargetGet,y=a&&void 0!==a.name?a.name:r;o(e)&&("Symbol("===String(y).slice(0,7)&&(y="["+String(y).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!i(e,"name")||f&&e.name!==y)&&u(e,"name",y),(s=p(e)).source||(s.source=h.join("string"==typeof y?y:""))),t!==n?(l?!v&&t[r]&&(d=!0):delete t[r],d?t[r]=e:u(t,r,e)):d?t[r]=e:c(r,e)})(Function.prototype,"toString",(function(){return o(this)&&l(this).source||a(this)}))},7651:function(t,r,e){var n=e(7854),o=e(6916),i=e(9670),u=e(614),c=e(4326),a=e(2261),s=n.TypeError;t.exports=function(t,r){var e=t.exec;if(u(e)){var n=o(e,t,r);return null!==n&&i(n),n}if("RegExp"===c(t))return o(a,t,r);throw s("RegExp#exec called on incompatible receiver")}},2261:function(t,r,e){"use strict";var n,o,i=e(6916),u=e(1702),c=e(1340),a=e(7066),s=e(2999),f=e(2309),l=e(30),p=e(9909).get,h=e(9441),d=e(7168),v=f("native-string-replace",String.prototype.replace),y=RegExp.prototype.exec,g=y,b=u("".charAt),m=u("".indexOf),x=u("".replace),w=u("".slice),O=(o=/b*/g,i(y,n=/a/,"a"),i(y,o,"a"),0!==n.lastIndex||0!==o.lastIndex),E=s.UNSUPPORTED_Y||s.BROKEN_CARET,S=void 0!==/()??/.exec("")[1];(O||S||E||h||d)&&(g=function(t){var r,e,n,o,u,s,f,h=this,d=p(h),j=c(t),P=d.raw;if(P)return P.lastIndex=h.lastIndex,r=i(g,P,j),h.lastIndex=P.lastIndex,r;var T=d.groups,_=E&&h.sticky,A=i(a,h),I=h.source,R=0,L=j;if(_&&(A=x(A,"y",""),-1===m(A,"g")&&(A+="g"),L=w(j,h.lastIndex),h.lastIndex>0&&(!h.multiline||h.multiline&&"\n"!==b(j,h.lastIndex-1))&&(I="(?: "+I+")",L=" "+L,R++),e=new RegExp("^(?:"+I+")",A)),S&&(e=new RegExp("^"+I+"$(?!\\s)",A)),O&&(n=h.lastIndex),o=i(y,_?e:h,L),_?o?(o.input=w(o.input,R),o[0]=w(o[0],R),o.index=h.lastIndex,h.lastIndex+=o[0].length):h.lastIndex=0:O&&o&&(h.lastIndex=h.global?o.index+o[0].length:n),S&&o&&o.length>1&&i(v,o[0],e,(function(){for(u=1;u<arguments.length-2;u++)void 0===arguments[u]&&(o[u]=void 0)})),o&&T)for(o.groups=s=l(null),u=0;u<T.length;u++)s[(f=T[u])[0]]=o[f[1]];return o}),t.exports=g},7066:function(t,r,e){"use strict";var n=e(9670);t.exports=function(){var t=n(this),r="";return t.global&&(r+="g"),t.ignoreCase&&(r+="i"),t.multiline&&(r+="m"),t.dotAll&&(r+="s"),t.unicode&&(r+="u"),t.sticky&&(r+="y"),r}},2999:function(t,r,e){var n=e(7293),o=e(7854).RegExp;r.UNSUPPORTED_Y=n((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),r.BROKEN_CARET=n((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}))},9441:function(t,r,e){var n=e(7293),o=e(7854).RegExp;t.exports=n((function(){var t=o(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}))},7168:function(t,r,e){var n=e(7293),o=e(7854).RegExp;t.exports=n((function(){var t=o("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},4488:function(t,r,e){var n=e(7854).TypeError;t.exports=function(t){if(null==t)throw n("Can't call method on "+t);return t}},6029:function(t){t.exports=Object.is||function(t,r){return t===r?0!==t||1/t==1/r:t!=t&&r!=r}},3505:function(t,r,e){var n=e(7854),o=Object.defineProperty;t.exports=function(t,r){try{o(n,t,{value:r,configurable:!0,writable:!0})}catch(e){n[t]=r}return r}},6340:function(t,r,e){"use strict";var n=e(5005),o=e(3070),i=e(5112),u=e(9781),c=i("species");t.exports=function(t){var r=n(t),e=o.f;u&&r&&!r[c]&&e(r,c,{configurable:!0,get:function(){return this}})}},8003:function(t,r,e){var n=e(3070).f,o=e(2597),i=e(5112)("toStringTag");t.exports=function(t,r,e){t&&!o(t=e?t:t.prototype,i)&&n(t,i,{configurable:!0,value:r})}},6200:function(t,r,e){var n=e(2309),o=e(9711),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},5465:function(t,r,e){var n=e(7854),o=e(3505),i="__core-js_shared__",u=n[i]||o(i,{});t.exports=u},2309:function(t,r,e){var n=e(1913),o=e(5465);(t.exports=function(t,r){return o[t]||(o[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.19.0",mode:n?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},6707:function(t,r,e){var n=e(9670),o=e(9483),i=e(5112)("species");t.exports=function(t,r){var e,u=n(t).constructor;return void 0===u||null==(e=n(u)[i])?r:o(e)}},3429:function(t,r,e){var n=e(7293);t.exports=function(t){return n((function(){var r=""[t]('"');return r!==r.toLowerCase()||r.split('"').length>3}))}},8710:function(t,r,e){var n=e(1702),o=e(9303),i=e(1340),u=e(4488),c=n("".charAt),a=n("".charCodeAt),s=n("".slice),f=function(t){return function(r,e){var n,f,l=i(u(r)),p=o(e),h=l.length;return p<0||p>=h?t?"":void 0:(n=a(l,p))<55296||n>56319||p+1===h||(f=a(l,p+1))<56320||f>57343?t?c(l,p):n:t?s(l,p,p+2):f-56320+(n-55296<<10)+65536}};t.exports={codeAt:f(!1),charAt:f(!0)}},4986:function(t,r,e){var n=e(8113);t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)},6650:function(t,r,e){var n=e(1702),o=e(7466),i=e(1340),u=e(8415),c=e(4488),a=n(u),s=n("".slice),f=Math.ceil,l=function(t){return function(r,e,n){var u,l,p=i(c(r)),h=o(e),d=p.length,v=void 0===n?" ":i(n);return h<=d||""==v?p:((l=a(v,f((u=h-d)/v.length))).length>u&&(l=s(l,0,u)),t?p+l:l+p)}};t.exports={start:l(!1),end:l(!0)}},8415:function(t,r,e){"use strict";var n=e(7854),o=e(9303),i=e(1340),u=e(4488),c=n.RangeError;t.exports=function(t){var r=i(u(this)),e="",n=o(t);if(n<0||n==1/0)throw c("Wrong number of repetitions");for(;n>0;(n>>>=1)&&(r+=r))1&n&&(e+=r);return e}},6091:function(t,r,e){var n=e(6530).PROPER,o=e(7293),i=e(1361);t.exports=function(t){return o((function(){return!!i[t]()||" "!==" "[t]()||n&&i[t].name!==t}))}},3111:function(t,r,e){var n=e(1702),o=e(4488),i=e(1340),u=e(1361),c=n("".replace),a="["+u+"]",s=RegExp("^"+a+a+"*"),f=RegExp(a+a+"*$"),l=function(t){return function(r){var e=i(o(r));return 1&t&&(e=c(e,s,"")),2&t&&(e=c(e,f,"")),e}};t.exports={start:l(1),end:l(2),trim:l(3)}},261:function(t,r,e){var n,o,i,u,c=e(7854),a=e(2104),s=e(9974),f=e(614),l=e(2597),p=e(7293),h=e(490),d=e(206),v=e(317),y=e(6833),g=e(5268),b=c.setImmediate,m=c.clearImmediate,x=c.process,w=c.Dispatch,O=c.Function,E=c.MessageChannel,S=c.String,j=0,P={},T="onreadystatechange";try{n=c.location}catch(t){}var _=function(t){if(l(P,t)){var r=P[t];delete P[t],r()}},A=function(t){return function(){_(t)}},I=function(t){_(t.data)},R=function(t){c.postMessage(S(t),n.protocol+"//"+n.host)};b&&m||(b=function(t){var r=d(arguments,1);return P[++j]=function(){a(f(t)?t:O(t),void 0,r)},o(j),j},m=function(t){delete P[t]},g?o=function(t){x.nextTick(A(t))}:w&&w.now?o=function(t){w.now(A(t))}:E&&!y?(u=(i=new E).port2,i.port1.onmessage=I,o=s(u.postMessage,u)):c.addEventListener&&f(c.postMessage)&&!c.importScripts&&n&&"file:"!==n.protocol&&!p(R)?(o=R,c.addEventListener("message",I,!1)):o=T in v("script")?function(t){h.appendChild(v("script")).onreadystatechange=function(){h.removeChild(this),_(t)}}:function(t){setTimeout(A(t),0)}),t.exports={set:b,clear:m}},1400:function(t,r,e){var n=e(9303),o=Math.max,i=Math.min;t.exports=function(t,r){var e=n(t);return e<0?o(e+r,0):i(e,r)}},5656:function(t,r,e){var n=e(8361),o=e(4488);t.exports=function(t){return n(o(t))}},9303:function(t){var r=Math.ceil,e=Math.floor;t.exports=function(t){var n=+t;return n!=n||0===n?0:(n>0?e:r)(n)}},7466:function(t,r,e){var n=e(9303),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},7908:function(t,r,e){var n=e(7854),o=e(4488),i=n.Object;t.exports=function(t){return i(o(t))}},7593:function(t,r,e){var n=e(7854),o=e(6916),i=e(111),u=e(2190),c=e(8173),a=e(2140),s=e(5112),f=n.TypeError,l=s("toPrimitive");t.exports=function(t,r){if(!i(t)||u(t))return t;var e,n=c(t,l);if(n){if(void 0===r&&(r="default"),e=o(n,t,r),!i(e)||u(e))return e;throw f("Can't convert object to primitive value")}return void 0===r&&(r="number"),a(t,r)}},4948:function(t,r,e){var n=e(7593),o=e(2190);t.exports=function(t){var r=n(t,"string");return o(r)?r:r+""}},1694:function(t,r,e){var n={};n[e(5112)("toStringTag")]="z",t.exports="[object z]"===String(n)},1340:function(t,r,e){var n=e(7854),o=e(648),i=n.String;t.exports=function(t){if("Symbol"===o(t))throw TypeError("Cannot convert a Symbol value to a string");return i(t)}},6330:function(t,r,e){var n=e(7854).String;t.exports=function(t){try{return n(t)}catch(t){return"Object"}}},9711:function(t,r,e){var n=e(1702),o=0,i=Math.random(),u=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+u(++o+i,36)}},3307:function(t,r,e){var n=e(133);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},5112:function(t,r,e){var n=e(7854),o=e(2309),i=e(2597),u=e(9711),c=e(133),a=e(3307),s=o("wks"),f=n.Symbol,l=f&&f.for,p=a?f:f&&f.withoutSetter||u;t.exports=function(t){if(!i(s,t)||!c&&"string"!=typeof s[t]){var r="Symbol."+t;c&&i(f,t)?s[t]=f[t]:s[t]=a&&l?l(r):p(r)}return s[t]}},1361:function(t){t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},9170:function(t,r,e){"use strict";var n=e(2109),o=e(7854),i=e(7976),u=e(9518),c=e(7674),a=e(9920),s=e(30),f=e(8880),l=e(9114),p=e(7741),h=e(8340),d=e(408),v=e(6277),y=e(2914),g=o.Error,b=[].push,m=function(t,r){var e=i(x,this)?this:s(x),n=arguments.length>2?arguments[2]:void 0;c&&(e=c(new g(void 0),u(e))),f(e,"message",v(r,"")),y&&f(e,"stack",p(e.stack,1)),h(e,n);var o=[];return d(t,b,{that:o}),f(e,"errors",o),e};c?c(m,g):a(m,g);var x=m.prototype=s(g.prototype,{constructor:l(1,m),message:l(1,""),name:l(1,"AggregateError")});n({global:!0},{AggregateError:m})},6992:function(t,r,e){"use strict";var n=e(5656),o=e(1223),i=e(7497),u=e(9909),c=e(654),a="Array Iterator",s=u.set,f=u.getterFor(a);t.exports=c(Array,"Array",(function(t,r){s(this,{type:a,target:n(t),index:0,kind:r})}),(function(){var t=f(this),r=t.target,e=t.kind,n=t.index++;return!r||n>=r.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==e?{value:n,done:!1}:"values"==e?{value:r[n],done:!1}:{value:[n,r[n]],done:!1}}),"values"),i.Arguments=i.Array,o("keys"),o("values"),o("entries")},1539:function(t,r,e){var n=e(1694),o=e(1320),i=e(288);n||o(Object.prototype,"toString",i,{unsafe:!0})},7922:function(t,r,e){"use strict";var n=e(2109),o=e(6916),i=e(9662),u=e(8523),c=e(2534),a=e(408);n({target:"Promise",stat:!0},{allSettled:function(t){var r=this,e=u.f(r),n=e.resolve,s=e.reject,f=c((function(){var e=i(r.resolve),u=[],c=0,s=1;a(t,(function(t){var i=c++,a=!1;s++,o(e,r,t).then((function(t){a||(a=!0,u[i]={status:"fulfilled",value:t},--s||n(u))}),(function(t){a||(a=!0,u[i]={status:"rejected",reason:t},--s||n(u))}))})),--s||n(u)}));return f.error&&s(f.value),e.promise}})},4668:function(t,r,e){"use strict";var n=e(2109),o=e(9662),i=e(5005),u=e(6916),c=e(8523),a=e(2534),s=e(408),f="No one promise resolved";n({target:"Promise",stat:!0},{any:function(t){var r=this,e=i("AggregateError"),n=c.f(r),l=n.resolve,p=n.reject,h=a((function(){var n=o(r.resolve),i=[],c=0,a=1,h=!1;s(t,(function(t){var o=c++,s=!1;a++,u(n,r,t).then((function(t){s||h||(h=!0,l(t))}),(function(t){s||h||(s=!0,i[o]=t,--a||p(new e(i,f)))}))})),--a||p(new e(i,f))}));return h.error&&p(h.value),n.promise}})},7727:function(t,r,e){"use strict";var n=e(2109),o=e(1913),i=e(3366),u=e(7293),c=e(5005),a=e(614),s=e(6707),f=e(9478),l=e(1320);if(n({target:"Promise",proto:!0,real:!0,forced:!!i&&u((function(){i.prototype.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var r=s(this,c("Promise")),e=a(t);return this.then(e?function(e){return f(r,t()).then((function(){return e}))}:t,e?function(e){return f(r,t()).then((function(){throw e}))}:t)}}),!o&&a(i)){var p=c("Promise").prototype.finally;i.prototype.finally!==p&&l(i.prototype,"finally",p,{unsafe:!0})}},8674:function(t,r,e){"use strict";var n,o,i,u,c=e(2109),a=e(1913),s=e(7854),f=e(5005),l=e(6916),p=e(3366),h=e(1320),d=e(2248),v=e(7674),y=e(8003),g=e(6340),b=e(9662),m=e(614),x=e(111),w=e(5787),O=e(2788),E=e(408),S=e(7072),j=e(6707),P=e(261).set,T=e(5948),_=e(9478),A=e(842),I=e(8523),R=e(2534),L=e(9909),k=e(4705),C=e(5112),B=e(7871),D=e(5268),F=e(7392),M=C("species"),U="Promise",N=L.get,G=L.set,X=L.getterFor(U),$=p&&p.prototype,H=p,q=$,W=s.TypeError,V=s.document,z=s.process,Y=I.f,K=Y,J=!!(V&&V.createEvent&&s.dispatchEvent),Q=m(s.PromiseRejectionEvent),Z="unhandledrejection",tt=!1,rt=k(U,(function(){var t=O(H),r=t!==String(H);if(!r&&66===F)return!0;if(a&&!q.finally)return!0;if(F>=51&&/native code/.test(t))return!1;var e=new H((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};return(e.constructor={})[M]=n,!(tt=e.then((function(){}))instanceof n)||!r&&B&&!Q})),et=rt||!S((function(t){H.all(t).catch((function(){}))})),nt=function(t){var r;return!(!x(t)||!m(r=t.then))&&r},ot=function(t,r){if(!t.notified){t.notified=!0;var e=t.reactions;T((function(){for(var n=t.value,o=1==t.state,i=0;e.length>i;){var u,c,a,s=e[i++],f=o?s.ok:s.fail,p=s.resolve,h=s.reject,d=s.domain;try{f?(o||(2===t.rejection&&at(t),t.rejection=1),!0===f?u=n:(d&&d.enter(),u=f(n),d&&(d.exit(),a=!0)),u===s.promise?h(W("Promise-chain cycle")):(c=nt(u))?l(c,u,p,h):p(u)):h(n)}catch(t){d&&!a&&d.exit(),h(t)}}t.reactions=[],t.notified=!1,r&&!t.rejection&&ut(t)}))}},it=function(t,r,e){var n,o;J?((n=V.createEvent("Event")).promise=r,n.reason=e,n.initEvent(t,!1,!0),s.dispatchEvent(n)):n={promise:r,reason:e},!Q&&(o=s["on"+t])?o(n):t===Z&&A("Unhandled promise rejection",e)},ut=function(t){l(P,s,(function(){var r,e=t.facade,n=t.value;if(ct(t)&&(r=R((function(){D?z.emit("unhandledRejection",n,e):it(Z,e,n)})),t.rejection=D||ct(t)?2:1,r.error))throw r.value}))},ct=function(t){return 1!==t.rejection&&!t.parent},at=function(t){l(P,s,(function(){var r=t.facade;D?z.emit("rejectionHandled",r):it("rejectionhandled",r,t.value)}))},st=function(t,r,e){return function(n){t(r,n,e)}},ft=function(t,r,e){t.done||(t.done=!0,e&&(t=e),t.value=r,t.state=2,ot(t,!0))},lt=function(t,r,e){if(!t.done){t.done=!0,e&&(t=e);try{if(t.facade===r)throw W("Promise can't be resolved itself");var n=nt(r);n?T((function(){var e={done:!1};try{l(n,r,st(lt,e,t),st(ft,e,t))}catch(r){ft(e,r,t)}})):(t.value=r,t.state=1,ot(t,!1))}catch(r){ft({done:!1},r,t)}}};if(rt&&(q=(H=function(t){w(this,q),b(t),l(n,this);var r=N(this);try{t(st(lt,r),st(ft,r))}catch(t){ft(r,t)}}).prototype,(n=function(t){G(this,{type:U,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=d(q,{then:function(t,r){var e=X(this),n=e.reactions,o=Y(j(this,H));return o.ok=!m(t)||t,o.fail=m(r)&&r,o.domain=D?z.domain:void 0,e.parent=!0,n[n.length]=o,0!=e.state&&ot(e,!1),o.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new n,r=N(t);this.promise=t,this.resolve=st(lt,r),this.reject=st(ft,r)},I.f=Y=function(t){return t===H||t===i?new o(t):K(t)},!a&&m(p)&&$!==Object.prototype)){u=$.then,tt||(h($,"then",(function(t,r){var e=this;return new H((function(t,r){l(u,e,t,r)})).then(t,r)}),{unsafe:!0}),h($,"catch",q.catch,{unsafe:!0}));try{delete $.constructor}catch(t){}v&&v($,q)}c({global:!0,wrap:!0,forced:rt},{Promise:H}),y(H,U,!1,!0),g(U),i=f(U),c({target:U,stat:!0,forced:rt},{reject:function(t){var r=Y(this);return l(r.reject,void 0,t),r.promise}}),c({target:U,stat:!0,forced:a||rt},{resolve:function(t){return _(a&&this===i?H:this,t)}}),c({target:U,stat:!0,forced:et},{all:function(t){var r=this,e=Y(r),n=e.resolve,o=e.reject,i=R((function(){var e=b(r.resolve),i=[],u=0,c=1;E(t,(function(t){var a=u++,s=!1;c++,l(e,r,t).then((function(t){s||(s=!0,i[a]=t,--c||n(i))}),o)})),--c||n(i)}));return i.error&&o(i.value),e.promise},race:function(t){var r=this,e=Y(r),n=e.reject,o=R((function(){var o=b(r.resolve);E(t,(function(t){l(o,r,t).then(e.resolve,n)}))}));return o.error&&n(o.value),e.promise}})},4916:function(t,r,e){"use strict";var n=e(2109),o=e(2261);n({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},5218:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("anchor")},{anchor:function(t){return o(this,"a","name",t)}})},4506:function(t,r,e){"use strict";var n=e(2109),o=e(1702),i=e(4488),u=e(9303),c=e(1340),a=e(7293),s=o("".charAt);n({target:"String",proto:!0,forced:a((function(){return"\ud842"!=="𠮷".at(0)}))},{at:function(t){var r=c(i(this)),e=r.length,n=u(t),o=n>=0?n:e+n;return o<0||o>=e?void 0:s(r,o)}})},4475:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("big")},{big:function(){return o(this,"big","","")}})},7929:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("blink")},{blink:function(){return o(this,"blink","","")}})},915:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("bold")},{bold:function(){return o(this,"b","","")}})},9841:function(t,r,e){"use strict";var n=e(2109),o=e(8710).codeAt;n({target:"String",proto:!0},{codePointAt:function(t){return o(this,t)}})},7852:function(t,r,e){"use strict";var n,o=e(2109),i=e(1702),u=e(1236).f,c=e(7466),a=e(1340),s=e(3929),f=e(4488),l=e(4964),p=e(1913),h=i("".endsWith),d=i("".slice),v=Math.min,y=l("endsWith");o({target:"String",proto:!0,forced:!!(p||y||(n=u(String.prototype,"endsWith"),!n||n.writable))&&!y},{endsWith:function(t){var r=a(f(this));s(t);var e=arguments.length>1?arguments[1]:void 0,n=r.length,o=void 0===e?n:v(c(e),n),i=a(t);return h?h(r,i,o):d(r,o-i.length,o)===i}})},9253:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("fixed")},{fixed:function(){return o(this,"tt","","")}})},2125:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("fontcolor")},{fontcolor:function(t){return o(this,"font","color",t)}})},8830:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("fontsize")},{fontsize:function(t){return o(this,"font","size",t)}})},4953:function(t,r,e){var n=e(2109),o=e(7854),i=e(1702),u=e(1400),c=o.RangeError,a=String.fromCharCode,s=String.fromCodePoint,f=i([].join);n({target:"String",stat:!0,forced:!!s&&1!=s.length},{fromCodePoint:function(t){for(var r,e=[],n=arguments.length,o=0;n>o;){if(r=+arguments[o++],u(r,1114111)!==r)throw c(r+" is not a valid code point");e[o]=r<65536?a(r):a(55296+((r-=65536)>>10),r%1024+56320)}return f(e,"")}})},2023:function(t,r,e){"use strict";var n=e(2109),o=e(1702),i=e(3929),u=e(4488),c=e(1340),a=e(4964),s=o("".indexOf);n({target:"String",proto:!0,forced:!a("includes")},{includes:function(t){return!!~s(c(u(this)),c(i(t)),arguments.length>1?arguments[1]:void 0)}})},8734:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("italics")},{italics:function(){return o(this,"i","","")}})},8783:function(t,r,e){"use strict";var n=e(8710).charAt,o=e(1340),i=e(9909),u=e(654),c="String Iterator",a=i.set,s=i.getterFor(c);u(String,"String",(function(t){a(this,{type:c,string:o(t),index:0})}),(function(){var t,r=s(this),e=r.string,o=r.index;return o>=e.length?{value:void 0,done:!0}:(t=n(e,o),r.index+=t.length,{value:t,done:!1})}))},9254:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("link")},{link:function(t){return o(this,"a","href",t)}})},6373:function(t,r,e){"use strict";var n=e(2109),o=e(7854),i=e(6916),u=e(1702),c=e(4994),a=e(4488),s=e(7466),f=e(1340),l=e(9670),p=e(4326),h=e(7976),d=e(7850),v=e(7066),y=e(8173),g=e(1320),b=e(7293),m=e(5112),x=e(6707),w=e(1530),O=e(7651),E=e(9909),S=e(1913),j=m("matchAll"),P="RegExp String",T="RegExp String Iterator",_=E.set,A=E.getterFor(T),I=RegExp.prototype,R=o.TypeError,L=u(v),k=u("".indexOf),C=u("".matchAll),B=!!C&&!b((function(){C("a",/./)})),D=c((function(t,r,e,n){_(this,{type:T,regexp:t,string:r,global:e,unicode:n,done:!1})}),P,(function(){var t=A(this);if(t.done)return{value:void 0,done:!0};var r=t.regexp,e=t.string,n=O(r,e);return null===n?{value:void 0,done:t.done=!0}:t.global?(""===f(n[0])&&(r.lastIndex=w(e,s(r.lastIndex),t.unicode)),{value:n,done:!1}):(t.done=!0,{value:n,done:!1})})),F=function(t){var r,e,n,o,i,u,c=l(this),a=f(t);return r=x(c,RegExp),void 0===(e=c.flags)&&h(I,c)&&!("flags"in I)&&(e=L(c)),n=void 0===e?"":f(e),o=new r(r===RegExp?c.source:c,n),i=!!~k(n,"g"),u=!!~k(n,"u"),o.lastIndex=s(c.lastIndex),new D(o,a,i,u)};n({target:"String",proto:!0,forced:B},{matchAll:function(t){var r,e,n,o,u=a(this);if(null!=t){if(d(t)&&(r=f(a("flags"in I?t.flags:L(t))),!~k(r,"g")))throw R("`.matchAll` does not allow non-global regexes");if(B)return C(u,t);if(void 0===(n=y(t,j))&&S&&"RegExp"==p(t)&&(n=F),n)return i(n,t,u)}else if(B)return C(u,t);return e=f(u),o=new RegExp(t,"g"),S?i(F,o,e):o[j](e)}}),S||j in I||g(I,j,F)},4723:function(t,r,e){"use strict";var n=e(6916),o=e(7007),i=e(9670),u=e(7466),c=e(1340),a=e(4488),s=e(8173),f=e(1530),l=e(7651);o("match",(function(t,r,e){return[function(r){var e=a(this),o=null==r?void 0:s(r,t);return o?n(o,r,e):new RegExp(r)[t](c(e))},function(t){var n=i(this),o=c(t),a=e(r,n,o);if(a.done)return a.value;if(!n.global)return l(n,o);var s=n.unicode;n.lastIndex=0;for(var p,h=[],d=0;null!==(p=l(n,o));){var v=c(p[0]);h[d]=v,""===v&&(n.lastIndex=f(o,u(n.lastIndex),s)),d++}return 0===d?null:h}]}))},6528:function(t,r,e){"use strict";var n=e(2109),o=e(6650).end;n({target:"String",proto:!0,forced:e(4986)},{padEnd:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},3112:function(t,r,e){"use strict";var n=e(2109),o=e(6650).start;n({target:"String",proto:!0,forced:e(4986)},{padStart:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},8992:function(t,r,e){var n=e(2109),o=e(1702),i=e(5656),u=e(7908),c=e(1340),a=e(6244),s=o([].push),f=o([].join);n({target:"String",stat:!0},{raw:function(t){for(var r=i(u(t).raw),e=a(r),n=arguments.length,o=[],l=0;e>l;){if(s(o,c(r[l++])),l===e)return f(o,"");l<n&&s(o,c(arguments[l]))}}})},2481:function(t,r,e){e(2109)({target:"String",proto:!0},{repeat:e(8415)})},8757:function(t,r,e){"use strict";var n=e(2109),o=e(7854),i=e(6916),u=e(1702),c=e(4488),a=e(614),s=e(7850),f=e(1340),l=e(8173),p=e(7066),h=e(647),d=e(5112),v=e(1913),y=d("replace"),g=RegExp.prototype,b=o.TypeError,m=u(p),x=u("".indexOf),w=u("".replace),O=u("".slice),E=Math.max,S=function(t,r,e){return e>t.length?-1:""===r?e:x(t,r,e)};n({target:"String",proto:!0},{replaceAll:function(t,r){var e,n,o,u,p,d,j,P,T,_=c(this),A=0,I=0,R="";if(null!=t){if((e=s(t))&&(n=f(c("flags"in g?t.flags:m(t))),!~x(n,"g")))throw b("`.replaceAll` does not allow non-global regexes");if(o=l(t,y))return i(o,t,_,r);if(v&&e)return w(f(_),t,r)}for(u=f(_),p=f(t),(d=a(r))||(r=f(r)),j=p.length,P=E(1,j),A=S(u,p,0);-1!==A;)T=d?f(r(p,A,u)):h(p,u,A,[],void 0,r),R+=O(u,I,A)+T,I=A+j,A=S(u,p,A+P);return I<u.length&&(R+=O(u,I)),R}})},5306:function(t,r,e){"use strict";var n=e(2104),o=e(6916),i=e(1702),u=e(7007),c=e(7293),a=e(9670),s=e(614),f=e(9303),l=e(7466),p=e(1340),h=e(4488),d=e(1530),v=e(8173),y=e(647),g=e(7651),b=e(5112)("replace"),m=Math.max,x=Math.min,w=i([].concat),O=i([].push),E=i("".indexOf),S=i("".slice),j="$0"==="a".replace(/./,"$0"),P=!!/./[b]&&""===/./[b]("a","$0");u("replace",(function(t,r,e){var i=P?"$":"$0";return[function(t,e){var n=h(this),i=null==t?void 0:v(t,b);return i?o(i,t,n,e):o(r,p(n),t,e)},function(t,o){var u=a(this),c=p(t);if("string"==typeof o&&-1===E(o,i)&&-1===E(o,"$<")){var h=e(r,u,c,o);if(h.done)return h.value}var v=s(o);v||(o=p(o));var b=u.global;if(b){var j=u.unicode;u.lastIndex=0}for(var P=[];;){var T=g(u,c);if(null===T)break;if(O(P,T),!b)break;""===p(T[0])&&(u.lastIndex=d(c,l(u.lastIndex),j))}for(var _,A="",I=0,R=0;R<P.length;R++){for(var L=p((T=P[R])[0]),k=m(x(f(T.index),c.length),0),C=[],B=1;B<T.length;B++)O(C,void 0===(_=T[B])?_:String(_));var D=T.groups;if(v){var F=w([L],C,k,c);void 0!==D&&O(F,D);var M=p(n(o,void 0,F))}else M=y(L,c,k,C,D,o);k>=I&&(A+=S(c,I,k)+M,I=k+L.length)}return A+S(c,I)}]}),!!c((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!j||P)},4765:function(t,r,e){"use strict";var n=e(6916),o=e(7007),i=e(9670),u=e(4488),c=e(6029),a=e(1340),s=e(8173),f=e(7651);o("search",(function(t,r,e){return[function(r){var e=u(this),o=null==r?void 0:s(r,t);return o?n(o,r,e):new RegExp(r)[t](a(e))},function(t){var n=i(this),o=a(t),u=e(r,n,o);if(u.done)return u.value;var s=n.lastIndex;c(s,0)||(n.lastIndex=0);var l=f(n,o);return c(n.lastIndex,s)||(n.lastIndex=s),null===l?-1:l.index}]}))},7268:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("small")},{small:function(){return o(this,"small","","")}})},3123:function(t,r,e){"use strict";var n=e(2104),o=e(6916),i=e(1702),u=e(7007),c=e(7850),a=e(9670),s=e(4488),f=e(6707),l=e(1530),p=e(7466),h=e(1340),d=e(8173),v=e(206),y=e(7651),g=e(2261),b=e(2999),m=e(7293),x=b.UNSUPPORTED_Y,w=4294967295,O=Math.min,E=[].push,S=i(/./.exec),j=i(E),P=i("".slice);u("split",(function(t,r,e){var i;return i="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,e){var i=h(s(this)),u=void 0===e?w:e>>>0;if(0===u)return[];if(void 0===t)return[i];if(!c(t))return o(r,i,t,u);for(var a,f,l,p=[],d=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),y=0,b=new RegExp(t.source,d+"g");(a=o(g,b,i))&&!((f=b.lastIndex)>y&&(j(p,P(i,y,a.index)),a.length>1&&a.index<i.length&&n(E,p,v(a,1)),l=a[0].length,y=f,p.length>=u));)b.lastIndex===a.index&&b.lastIndex++;return y===i.length?!l&&S(b,"")||j(p,""):j(p,P(i,y)),p.length>u?v(p,0,u):p}:"0".split(void 0,0).length?function(t,e){return void 0===t&&0===e?[]:o(r,this,t,e)}:r,[function(r,e){var n=s(this),u=null==r?void 0:d(r,t);return u?o(u,r,n,e):o(i,h(n),r,e)},function(t,n){var o=a(this),u=h(t),c=e(i,o,u,n,i!==r);if(c.done)return c.value;var s=f(o,RegExp),d=o.unicode,v=(o.ignoreCase?"i":"")+(o.multiline?"m":"")+(o.unicode?"u":"")+(x?"g":"y"),g=new s(x?"^(?:"+o.source+")":o,v),b=void 0===n?w:n>>>0;if(0===b)return[];if(0===u.length)return null===y(g,u)?[u]:[];for(var m=0,E=0,S=[];E<u.length;){g.lastIndex=x?0:E;var T,_=y(g,x?P(u,E):u);if(null===_||(T=O(p(g.lastIndex+(x?E:0)),u.length))===m)E=l(u,E,d);else{if(j(S,P(u,m,E)),S.length===b)return S;for(var A=1;A<=_.length-1;A++)if(j(S,_[A]),S.length===b)return S;E=m=T}}return j(S,P(u,m)),S}]}),!!m((function(){var t=/(?:)/,r=t.exec;t.exec=function(){return r.apply(this,arguments)};var e="ab".split(t);return 2!==e.length||"a"!==e[0]||"b"!==e[1]})),x)},3157:function(t,r,e){"use strict";var n,o=e(2109),i=e(1702),u=e(1236).f,c=e(7466),a=e(1340),s=e(3929),f=e(4488),l=e(4964),p=e(1913),h=i("".startsWith),d=i("".slice),v=Math.min,y=l("startsWith");o({target:"String",proto:!0,forced:!!(p||y||(n=u(String.prototype,"startsWith"),!n||n.writable))&&!y},{startsWith:function(t){var r=a(f(this));s(t);var e=c(v(arguments.length>1?arguments[1]:void 0,r.length)),n=a(t);return h?h(r,n,e):d(r,e,e+n.length)===n}})},7397:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("strike")},{strike:function(){return o(this,"strike","","")}})},86:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("sub")},{sub:function(){return o(this,"sub","","")}})},3650:function(t,r,e){"use strict";var n=e(2109),o=e(1702),i=e(4488),u=e(9303),c=e(1340),a=o("".slice),s=Math.max,f=Math.min;n({target:"String",proto:!0,forced:!"".substr||"b"!=="ab".substr(-1)},{substr:function(t,r){var e,n,o=c(i(this)),l=o.length,p=u(t);return p===1/0&&(p=0),p<0&&(p=s(l+p,0)),(e=void 0===r?l:u(r))<=0||e===1/0||p>=(n=f(p+e,l))?"":a(o,p,n)}})},623:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("sup")},{sup:function(){return o(this,"sup","","")}})},8702:function(t,r,e){"use strict";var n=e(2109),o=e(3111).end,i=e(6091)("trimEnd"),u=i?function(){return o(this)}:"".trimEnd;n({target:"String",proto:!0,name:"trimEnd",forced:i},{trimEnd:u,trimRight:u})},5674:function(t,r,e){"use strict";var n=e(2109),o=e(3111).start,i=e(6091)("trimStart"),u=i?function(){return o(this)}:"".trimStart;n({target:"String",proto:!0,name:"trimStart",forced:i},{trimStart:u,trimLeft:u})},3210:function(t,r,e){"use strict";var n=e(2109),o=e(3111).trim;n({target:"String",proto:!0,forced:e(6091)("trim")},{trim:function(){return o(this)}})},3948:function(t,r,e){var n=e(7854),o=e(8324),i=e(8509),u=e(6992),c=e(8880),a=e(5112),s=a("iterator"),f=a("toStringTag"),l=u.values,p=function(t,r){if(t){if(t[s]!==l)try{c(t,s,l)}catch(r){t[s]=l}if(t[f]||c(t,f,r),o[r])for(var e in u)if(t[e]!==u[e])try{c(t,e,u[e])}catch(r){t[e]=u[e]}}};for(var h in o)p(n[h]&&n[h].prototype,h);p(i,"DOMTokenList")},1150:function(t,r,e){var n=e(7633);e(3948),t.exports=n},9712:function(t,r,e){var n=e(1111);t.exports=n},5666:function(t){var r=function(t){"use strict";var r,e=Object.prototype,n=e.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",u=o.asyncIterator||"@@asyncIterator",c=o.toStringTag||"@@toStringTag";function a(t,r,e){return Object.defineProperty(t,r,{value:e,enumerable:!0,configurable:!0,writable:!0}),t[r]}try{a({},"")}catch(t){a=function(t,r,e){return t[r]=e}}function s(t,r,e,n){var o=r&&r.prototype instanceof y?r:y,i=Object.create(o.prototype),u=new _(n||[]);return i._invoke=function(t,r,e){var n=l;return function(o,i){if(n===h)throw new Error("Generator is already running");if(n===d){if("throw"===o)throw i;return I()}for(e.method=o,e.arg=i;;){var u=e.delegate;if(u){var c=j(u,e);if(c){if(c===v)continue;return c}}if("next"===e.method)e.sent=e._sent=e.arg;else if("throw"===e.method){if(n===l)throw n=d,e.arg;e.dispatchException(e.arg)}else"return"===e.method&&e.abrupt("return",e.arg);n=h;var a=f(t,r,e);if("normal"===a.type){if(n=e.done?d:p,a.arg===v)continue;return{value:a.arg,done:e.done}}"throw"===a.type&&(n=d,e.method="throw",e.arg=a.arg)}}}(t,e,u),i}function f(t,r,e){try{return{type:"normal",arg:t.call(r,e)}}catch(t){return{type:"throw",arg:t}}}t.wrap=s;var l="suspendedStart",p="suspendedYield",h="executing",d="completed",v={};function y(){}function g(){}function b(){}var m={};m[i]=function(){return this};var x=Object.getPrototypeOf,w=x&&x(x(A([])));w&&w!==e&&n.call(w,i)&&(m=w);var O=b.prototype=y.prototype=Object.create(m);function E(t){["next","throw","return"].forEach((function(r){a(t,r,(function(t){return this._invoke(r,t)}))}))}function S(t,r){function e(o,i,u,c){var a=f(t[o],t,i);if("throw"!==a.type){var s=a.arg,l=s.value;return l&&"object"==typeof l&&n.call(l,"__await")?r.resolve(l.__await).then((function(t){e("next",t,u,c)}),(function(t){e("throw",t,u,c)})):r.resolve(l).then((function(t){s.value=t,u(s)}),(function(t){return e("throw",t,u,c)}))}c(a.arg)}var o;this._invoke=function(t,n){function i(){return new r((function(r,o){e(t,n,r,o)}))}return o=o?o.then(i,i):i()}}function j(t,e){var n=t.iterator[e.method];if(n===r){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=r,j(t,e),"throw"===e.method))return v;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,v;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=r),e.delegate=null,v):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,v)}function P(t){var r={tryLoc:t[0]};1 in t&&(r.catchLoc=t[1]),2 in t&&(r.finallyLoc=t[2],r.afterLoc=t[3]),this.tryEntries.push(r)}function T(t){var r=t.completion||{};r.type="normal",delete r.arg,t.completion=r}function _(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function A(t){if(t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,u=function e(){for(;++o<t.length;)if(n.call(t,o))return e.value=t[o],e.done=!1,e;return e.value=r,e.done=!0,e};return u.next=u}}return{next:I}}function I(){return{value:r,done:!0}}return g.prototype=O.constructor=b,b.constructor=g,g.displayName=a(b,c,"GeneratorFunction"),t.isGeneratorFunction=function(t){var r="function"==typeof t&&t.constructor;return!!r&&(r===g||"GeneratorFunction"===(r.displayName||r.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,a(t,c,"GeneratorFunction")),t.prototype=Object.create(O),t},t.awrap=function(t){return{__await:t}},E(S.prototype),S.prototype[u]=function(){return this},t.AsyncIterator=S,t.async=function(r,e,n,o,i){void 0===i&&(i=Promise);var u=new S(s(r,e,n,o),i);return t.isGeneratorFunction(e)?u:u.next().then((function(t){return t.done?t.value:u.next()}))},E(O),a(O,c,"Generator"),O[i]=function(){return this},O.toString=function(){return"[object Generator]"},t.keys=function(t){var r=[];for(var e in t)r.push(e);return r.reverse(),function e(){for(;r.length;){var n=r.pop();if(n in t)return e.value=n,e.done=!1,e}return e.done=!0,e}},t.values=A,_.prototype={constructor:_,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=r,this.done=!1,this.delegate=null,this.method="next",this.arg=r,this.tryEntries.forEach(T),!t)for(var e in this)"t"===e.charAt(0)&&n.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=r)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function o(n,o){return c.type="throw",c.arg=t,e.next=n,o&&(e.method="next",e.arg=r),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var u=this.tryEntries[i],c=u.completion;if("root"===u.tryLoc)return o("end");if(u.tryLoc<=this.prev){var a=n.call(u,"catchLoc"),s=n.call(u,"finallyLoc");if(a&&s){if(this.prev<u.catchLoc)return o(u.catchLoc,!0);if(this.prev<u.finallyLoc)return o(u.finallyLoc)}else if(a){if(this.prev<u.catchLoc)return o(u.catchLoc,!0)}else{if(!s)throw new Error("try statement without catch or finally");if(this.prev<u.finallyLoc)return o(u.finallyLoc)}}}},abrupt:function(t,r){for(var e=this.tryEntries.length-1;e>=0;--e){var o=this.tryEntries[e];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=r&&r<=i.finallyLoc&&(i=null);var u=i?i.completion:{};return u.type=t,u.arg=r,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(u)},complete:function(t,r){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&r&&(this.next=r),v},finish:function(t){for(var r=this.tryEntries.length-1;r>=0;--r){var e=this.tryEntries[r];if(e.finallyLoc===t)return this.complete(e.completion,e.afterLoc),T(e),v}},catch:function(t){for(var r=this.tryEntries.length-1;r>=0;--r){var e=this.tryEntries[r];if(e.tryLoc===t){var n=e.completion;if("throw"===n.type){var o=n.arg;T(e)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,n){return this.delegate={iterator:A(t),resultName:e,nextLoc:n},"next"===this.method&&(this.arg=r),v}},t}(t.exports);try{regeneratorRuntime=r}catch(t){Function("r","regeneratorRuntime = r")(r)}},7147:function(t,r,e){"use strict";var n="undefined"!=typeof globalThis&&globalThis||"undefined"!=typeof self&&self||void 0!==n&&n,o="URLSearchParams"in n,i="Symbol"in n&&"iterator"in Symbol,u="FileReader"in n&&"Blob"in n&&function(){try{return new Blob,!0}catch(t){return!1}}(),c="FormData"in n,a="ArrayBuffer"in n;if(a)var s=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],f=ArrayBuffer.isView||function(t){return t&&s.indexOf(Object.prototype.toString.call(t))>-1};function l(t){if("string"!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(t)||""===t)throw new TypeError('Invalid character in header field name: "'+t+'"');return t.toLowerCase()}function p(t){return"string"!=typeof t&&(t=String(t)),t}function h(t){var r={next:function(){var r=t.shift();return{done:void 0===r,value:r}}};return i&&(r[Symbol.iterator]=function(){return r}),r}function d(t){this.map={},t instanceof d?t.forEach((function(t,r){this.append(r,t)}),this):Array.isArray(t)?t.forEach((function(t){this.append(t[0],t[1])}),this):t&&Object.getOwnPropertyNames(t).forEach((function(r){this.append(r,t[r])}),this)}function v(t){if(t.bodyUsed)return Promise.reject(new TypeError("Already read"));t.bodyUsed=!0}function y(t){return new Promise((function(r,e){t.onload=function(){r(t.result)},t.onerror=function(){e(t.error)}}))}function g(t){var r=new FileReader,e=y(r);return r.readAsArrayBuffer(t),e}function b(t){if(t.slice)return t.slice(0);var r=new Uint8Array(t.byteLength);return r.set(new Uint8Array(t)),r.buffer}function m(){return this.bodyUsed=!1,this._initBody=function(t){var r;this.bodyUsed=this.bodyUsed,this._bodyInit=t,t?"string"==typeof t?this._bodyText=t:u&&Blob.prototype.isPrototypeOf(t)?this._bodyBlob=t:c&&FormData.prototype.isPrototypeOf(t)?this._bodyFormData=t:o&&URLSearchParams.prototype.isPrototypeOf(t)?this._bodyText=t.toString():a&&u&&((r=t)&&DataView.prototype.isPrototypeOf(r))?(this._bodyArrayBuffer=b(t.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):a&&(ArrayBuffer.prototype.isPrototypeOf(t)||f(t))?this._bodyArrayBuffer=b(t):this._bodyText=t=Object.prototype.toString.call(t):this._bodyText="",this.headers.get("content-type")||("string"==typeof t?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):o&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},u&&(this.blob=function(){var t=v(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){if(this._bodyArrayBuffer){var t=v(this);return t||(ArrayBuffer.isView(this._bodyArrayBuffer)?Promise.resolve(this._bodyArrayBuffer.buffer.slice(this._bodyArrayBuffer.byteOffset,this._bodyArrayBuffer.byteOffset+this._bodyArrayBuffer.byteLength)):Promise.resolve(this._bodyArrayBuffer))}return this.blob().then(g)}),this.text=function(){var t,r,e,n=v(this);if(n)return n;if(this._bodyBlob)return t=this._bodyBlob,r=new FileReader,e=y(r),r.readAsText(t),e;if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var r=new Uint8Array(t),e=new Array(r.length),n=0;n<r.length;n++)e[n]=String.fromCharCode(r[n]);return e.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},c&&(this.formData=function(){return this.text().then(O)}),this.json=function(){return this.text().then(JSON.parse)},this}d.prototype.append=function(t,r){t=l(t),r=p(r);var e=this.map[t];this.map[t]=e?e+", "+r:r},d.prototype.delete=function(t){delete this.map[l(t)]},d.prototype.get=function(t){return t=l(t),this.has(t)?this.map[t]:null},d.prototype.has=function(t){return this.map.hasOwnProperty(l(t))},d.prototype.set=function(t,r){this.map[l(t)]=p(r)},d.prototype.forEach=function(t,r){for(var e in this.map)this.map.hasOwnProperty(e)&&t.call(r,this.map[e],e,this)},d.prototype.keys=function(){var t=[];return this.forEach((function(r,e){t.push(e)})),h(t)},d.prototype.values=function(){var t=[];return this.forEach((function(r){t.push(r)})),h(t)},d.prototype.entries=function(){var t=[];return this.forEach((function(r,e){t.push([e,r])})),h(t)},i&&(d.prototype[Symbol.iterator]=d.prototype.entries);var x=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function w(t,r){if(!(this instanceof w))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');var e,n,o=(r=r||{}).body;if(t instanceof w){if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,r.headers||(this.headers=new d(t.headers)),this.method=t.method,this.mode=t.mode,this.signal=t.signal,o||null==t._bodyInit||(o=t._bodyInit,t.bodyUsed=!0)}else this.url=String(t);if(this.credentials=r.credentials||this.credentials||"same-origin",!r.headers&&this.headers||(this.headers=new d(r.headers)),this.method=(e=r.method||this.method||"GET",n=e.toUpperCase(),x.indexOf(n)>-1?n:e),this.mode=r.mode||this.mode||null,this.signal=r.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&o)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(o),!("GET"!==this.method&&"HEAD"!==this.method||"no-store"!==r.cache&&"no-cache"!==r.cache)){var i=/([?&])_=[^&]*/;if(i.test(this.url))this.url=this.url.replace(i,"$1_="+(new Date).getTime());else{this.url+=(/\?/.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function O(t){var r=new FormData;return t.trim().split("&").forEach((function(t){if(t){var e=t.split("="),n=e.shift().replace(/\+/g," "),o=e.join("=").replace(/\+/g," ");r.append(decodeURIComponent(n),decodeURIComponent(o))}})),r}function E(t,r){if(!(this instanceof E))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');r||(r={}),this.type="default",this.status=void 0===r.status?200:r.status,this.ok=this.status>=200&&this.status<300,this.statusText=void 0===r.statusText?"":""+r.statusText,this.headers=new d(r.headers),this.url=r.url||"",this._initBody(t)}w.prototype.clone=function(){return new w(this,{body:this._bodyInit})},m.call(w.prototype),m.call(E.prototype),E.prototype.clone=function(){return new E(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new d(this.headers),url:this.url})},E.error=function(){var t=new E(null,{status:0,statusText:""});return t.type="error",t};var S=[301,302,303,307,308];E.redirect=function(t,r){if(-1===S.indexOf(r))throw new RangeError("Invalid status code");return new E(null,{status:r,headers:{location:t}})};var j=n.DOMException;try{new j}catch(t){(j=function(t,r){this.message=t,this.name=r;var e=Error(t);this.stack=e.stack}).prototype=Object.create(Error.prototype),j.prototype.constructor=j}function P(t,r){return new Promise((function(e,o){var i=new w(t,r);if(i.signal&&i.signal.aborted)return o(new j("Aborted","AbortError"));var c=new XMLHttpRequest;function s(){c.abort()}c.onload=function(){var t,r,n={status:c.status,statusText:c.statusText,headers:(t=c.getAllResponseHeaders()||"",r=new d,t.replace(/\r?\n[\t ]+/g," ").split("\r").map((function(t){return 0===t.indexOf("\n")?t.substr(1,t.length):t})).forEach((function(t){var e=t.split(":"),n=e.shift().trim();if(n){var o=e.join(":").trim();r.append(n,o)}})),r)};n.url="responseURL"in c?c.responseURL:n.headers.get("X-Request-URL");var o="response"in c?c.response:c.responseText;setTimeout((function(){e(new E(o,n))}),0)},c.onerror=function(){setTimeout((function(){o(new TypeError("Network request failed"))}),0)},c.ontimeout=function(){setTimeout((function(){o(new TypeError("Network request failed"))}),0)},c.onabort=function(){setTimeout((function(){o(new j("Aborted","AbortError"))}),0)},c.open(i.method,function(t){try{return""===t&&n.location.href?n.location.href:t}catch(r){return t}}(i.url),!0),"include"===i.credentials?c.withCredentials=!0:"omit"===i.credentials&&(c.withCredentials=!1),"responseType"in c&&(u?c.responseType="blob":a&&i.headers.get("Content-Type")&&-1!==i.headers.get("Content-Type").indexOf("application/octet-stream")&&(c.responseType="arraybuffer")),!r||"object"!=typeof r.headers||r.headers instanceof d?i.headers.forEach((function(t,r){c.setRequestHeader(r,t)})):Object.getOwnPropertyNames(r.headers).forEach((function(t){c.setRequestHeader(t,p(r.headers[t]))})),i.signal&&(i.signal.addEventListener("abort",s),c.onreadystatechange=function(){4===c.readyState&&i.signal.removeEventListener("abort",s)}),c.send(void 0===i._bodyInit?null:i._bodyInit)}))}P.polyfill=!0,n.fetch||(n.fetch=P,n.Headers=d,n.Request=w,n.Response=E)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var i=r[n]={exports:{}};return t[n](i,i.exports,e),i.exports}e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},e(5666),e(1150),e(9712),e(7147);e(3053)}(); window.page = undefined; window.user = undefined; </script> <script> window.orb = { worldwideNavlinks: '<li class="orb-nav-homedotcom"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/">Home</a></li><li class="orb-nav-newsdotcom"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/news">News</a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/sport">Sport</a></li><li class="orb-nav-reeldotcom"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/reel">Reel</a></li><li class="orb-nav-worklife"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/worklife">Worklife</a></li><li class="orb-nav-traveldotcom"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/travel">Travel</a></li><li class="orb-nav-future"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/future">Future</a></li><li class="orb-nav-culture"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/culture">Culture</a></li><li class="orb-nav-music"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/culture/music">Music</a></li><li class="orb-nav-tv"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/schedules/p00fzl9m">TV</a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/weather">Weather</a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/sounds">Sounds</a></li>', } </script> <script src="https://web.archive.org/web/20211103091808js_/https://static.files.bbci.co.uk/orbit/0b0a71ff229422fc63da1ec4b9726123/js/api-forge-free.min.js"></script> <link rel="preload" href="https://web.archive.org/web/20211103091808/https://static.files.bbci.co.uk/fonts/reith/2.512/BBCReithSans_W_Rg.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="https://web.archive.org/web/20211103091808/https://static.files.bbci.co.uk/fonts/reith/2.512/BBCReithSans_W_Bd.woff2" as="font" type="font/woff2" crossorigin> <!-- navid Web Module: 0.2.0-80.bc5da8d --> <!-- searchbox Web Module: 3.0.0-357.7bc282c --> <!-- navpromo Web Module: 3.0.0-272.f5cddc4 --> <!-- cookies Web Module: 0.0.3-682.bdba111 --> <!-- useractivityhelper Web Module: 1.0.0-208.4054562 --> <!-- reverb Web Module: 3.3.0 --> <!-- ads Web Module: 20211005-115145-f94ae3cc3-4.56.0 --> <link rel="stylesheet" href="https://web.archive.org/web/20211103091808cs_/https://static.files.bbci.co.uk/account/id-cta/1.54.11/style/id-cta.css"/><!--[if IE 8]><link href="https://static.files.bbci.co.uk/account/id-cta/1.54.11/style/ie8.css" rel="stylesheet"/> <![endif]--><script type="text/javascript">(function () {if (!window.require) {throw new Error('idcta: could not find require module');}if (typeof (map) == 'undefined') {var map = {};}if (!!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect) {document.documentElement.className += ' id-svg';}var ptrt = new RegExp("[\\?&]ptrt=([^&]*)").exec(document.location.href);var ENDPOINT_URL = 'https://web.archive.org/web/20211103091808/https://idcta.api.bbc.co.uk';var ENDPOINT_CONFIG = ('/idcta/config?callback=&ptrt=' + (ptrt ? ptrt[1] : encodeURIComponent(document.location.href))).replace(/\&/g, '&');var ENDPOINT_TRANSLATIONS = '/idcta/translations?callback=';function hasPromise() {var P = window.Promise;var promiseToString = null;if (P) {try {promiseToString = Object.prototype.toString.call(P.resolve());} catch (e) {/*silently ignored*/}}return (promiseToString === '[object Promise]' && !P.cast);}if (hasPromise()) {define('idcta/es6-promise', function () {return window.Promise;});define('idcta-v2/es6-promise', function () {return window.Promise;});}map['idcta-v2'] = 'https://web.archive.org/web/20211103091808/https://static.files.bbci.co.uk/account/id-cta/1.54.11/modules/idcta-v2';map['idcta-v2/config'] = ENDPOINT_URL + ENDPOINT_CONFIG;map['idcta-v2/translations'] = ENDPOINT_URL + ENDPOINT_TRANSLATIONS;map['idcta'] = 'https://web.archive.org/web/20211103091808/https://static.files.bbci.co.uk/account/id-cta/1.8.2/modules/idcta';map['idcta-v2/idcta-1'] = 'https://web.archive.org/web/20211103091808/https://static.files.bbci.co.uk/account/id-cta/1.54.11/modules/idcta-v2/dist/idcta-1.min';map['idcta-v2/experiment-snippet'] = 'https://web.archive.org/web/20211103091808/https://cdn.optimizely.com/public/4621041136/s/idcta_live';const idctaShim = {deps: ['idcta-v2/idcta-1'],};require({shim: {'idcta-v2/statusbar': idctaShim,'idcta-v2/id-config': idctaShim},map: {'*': {'idcta/idcta-1': 'idcta-v2/idcta-1','idcta': 'idcta-v2',}},paths: map});window.idctaBaseUrl = ENDPOINT_URL;define('idcta/config', ['idcta-v2/config'], function (data) { return data; });define('idcta/translations', ['idcta-v2/translations'], function (data) { return data; });})();</script> <link rel="stylesheet" href="https://web.archive.org/web/20211103091808cs_/https://nav.files.bbci.co.uk/searchbox/eeaabba0195c5483bf5b00915e258921/css/box.css"> <script src="https://web.archive.org/web/20211103091808js_/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-library.bundle.js"></script><script type="text/javascript">void 0!==window.define&&define("orb/cookies",function(){return window.bbccookies})</script> <script type="text/javascript">window.__detectview={clickManagementEnabled:false};</script> <script type="text/javascript">"use strict";!function(){window.__reverbStaticLocation="https://web.archive.org/web/20211103091808/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/",window.__smarttagVersion="5.29.1",window.__reverb={},window.__reverb.__reverbLoadedPromise=new Promise(function(e,i){window.__reverb.__resolveReverbLoaded=e,window.__reverb.__rejectReverbLoaded=i}),window.__reverb.__reverbTimeout=setTimeout(function(){window.__reverb.__rejectReverbLoaded()},5e3);var i=function(d,a){window.__reverb.__reverbLoadedPromise.then(function(e){if(d&&d.detail){var i=!!d.detail.item,n=d.detail.label,t=i?"viewability":d.detail.type,o=d.detail.elem,r=d.detail.originalEvent;d.detail.isClick&&(a=d.detail.isClick),e.userActionEvent(t,n,d.detail,o,r,a)}},function(){console.log("Reverb failed to load. Event not sent")})},n=function(){window.__reverb.__reverbLoadedPromise.then(function(e){e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Reverb failed to load. Event not sent")})};document.addEventListener("bbc-user-event",function(e){i(e,!1)}),document.addEventListener("bbc-user-click",function(e){i(e,!0)}),document.addEventListener("bbc-page-updated",n),window.addEventListener("pageshow",function(e){e.persisted&&n()})}();</script><script type="text/javascript" src="https://web.archive.org/web/20211103091808js_/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/reverb-3.3.0.js" async></script> <script type="text/javascript">const adsDebug=/[?|&]ads-debug/.test(window.location.href);var bbcdotcomConfig={},bbcdotcomForgeAsync=!0,googletag=window.googletag||{};googletag.cmd=window.googletag.cmd||[],bbcdotcomScripts=[],tp=window.tp||[],_comscore=window._comscore||[];var bbcdotcom={test:/test/.test(window.location.hostname),adverts:{keyValues:{},breakpoints:{}},advert:{write:function(){},show:function(){},isActive:function(){return!1},layout:function(){return{reset:function(){}}}},config:{init:function(){},isAvailable:function(){return new Promise(function(o){bbcdotcom.resolves?bbcdotcom.resolves.isAvailable.push(o):o(!1)})},isAdsEnabledAsync:function(){return new Promise(function(o){bbcdotcom.resolves?bbcdotcom.resolves.adsEnabled.push(o):o(!1)})},isAnalyticsEnabledAsync:function(){return new Promise(function(o){bbcdotcom.resolves?bbcdotcom.resolves.analyticsEnabled.push(o):o(!1)})},setSections:function(){},setAdsEnabled:function(){},setAnalyticsEnabled:function(){},setAssetPrefix:function(){},setFlagpoles:function(){},setVersion:function(){},setJsPrefix:function(){},setSwfPrefix:function(){},setCssPrefix:function(){},setConfig:function(){},getAssetPrefix:function(){},getJsPrefix:function(){},getSwfPrefix:function(){},getCssPrefix:function(){},isOptimizelyEnabled:function(){},isThirdPartyDisabled:function(){},isThirdPartyDisabledEU:function(){},setEU:function(){}},survey:{init:function(){return!1}},data:{},init:function(){},objects:function(o){return!1},locale:{set:function(){},get:function(){}},setAdKeyValue:function(){},utils:{addEvent:function(){},addHtmlTagClass:function(){},log:function(){}},addLoadEvent:function(){},resolves:{isAvailable:[],adsEnabled:[],analyticsEnabled:[]},resolvePromises:function(){if(bbcdotcom.resolves){for(var o=0;o<bbcdotcom.resolves.isAvailable.length;o++)bbcdotcom.resolves.isAvailable[o](!1);delete bbcdotcom.resolves}},flag:{a:!1,s:!1},asyncCmd:[],isSportApp:function(){var o=window.location.pathname;return void 0!==o&&-1!==o.indexOf(".app")&&0===o.indexOf("/sport")},init:function(o){bbcdotcom.asyncCmd.push(function(){bbcdotcom.init(o)})},slotAsync:function(o,n,t,c){bbcdotcom.asyncCmd.push(function(){bbcdotcom.slotAsync(o,n,t,c)})}};bbcdotcom.adverts.slotAsync=function(o,n,t){bbcdotcom.asyncCmd.push(function(){bbcdotcom.adverts.slotAsync(o,n,t)})},bbcdotcom.config.isAdsEnabled=function(){var o=window.location.pathname;return void 0===o||0!==o.indexOf("/sport")||-1===o.indexOf(".app")},bbcdotcom.config.isActive=function(){var o=window.location.pathname;return void 0===o||0!==o.indexOf("/sport")||-1===o.indexOf(".app")},bbcdotcom.config.isAnalyticsEnabled=function(){return!0},bbcdotcom.registerAd=function(o,n,t){bbcdotcom.asyncCmd.push(function(){bbcdotcom.registerAd(o,n,t)})},bbcdotcom.setAdUnit=function(o){bbcdotcom.asyncCmd.push(function(){bbcdotcom.setAdUnit(o)})},bbcdotcom.adverts.adUnit={},bbcdotcom.adverts.adUnit.setUid=function(o){bbcdotcom.asyncCmd.push(function(){bbcdotcom.adverts.adUnit.setUid(o)})},bbcdotcom.setConfig=function(o){bbcdotcom.asyncCmd.push(function(){bbcdotcom.setConfig(o)})},bbcdotcom.setAdKeyValue=function(o,n){bbcdotcom.asyncCmd.push(function(){bbcdotcom.setAdKeyValue(o,n)})},bbcdotcom.getFeature=function(){return{isEnabled:function(){return!0}}},bbcdotcom.disableAndCloseOpenAds=function(){bbcdotcom.asyncDisableAndCloseOpenAds=!0},bbcdotcom.setAdKeyValue=function(o,n){bbcdotcom.asyncCmd.push(function(){bbcdotcom.adverts.keyValues.set(o,n)})},bbcdotcom.adverts.keyValues.set=function(o,n){bbcdotcom.asyncCmd.push(function(){bbcdotcom.adverts.keyValues.set(o,n)})},bbcdotcom.adverts.keyValues.unset=function(o){bbcdotcom.asyncCmd.push(function(){bbcdotcom.adverts.keyValues.unset(o)})},bbcdotcom.pubsub={},bbcdotcom.pubsub.on=function(o,n){bbcdotcom.asyncCmd.push(function(){bbcdotcom.pubsub.on(o,n)})},bbcdotcom.pubsub.off=function(o,n){bbcdotcom.asyncCmd.push(function(){bbcdotcom.pubsub.off(o,n)})},bbcdotcom.analytics={},bbcdotcom.analytics.page=function(o){bbcdotcom.asyncCmd.push(function(){bbcdotcom.analytics.page(o)})},bbcdotcom.av={emp:{adverts:""}},bbcdotcom.config.isContinuousPlayPage=function(){return!1},bbcdotcom.config.isSportApp=function(){var o=window.location.pathname;return void 0!==o&&-1!==o.indexOf(".app")&&0===o.indexOf("/sport")},bbcdotcom.adverts.breakpoints.setGroupStart=function(o,n){bbcdotcom.asyncCmd.push(function(){bbcdotcom.adverts.breakpoints.setGroupStart(o,n)})},"undefined"!=typeof require&&require({paths:{bbcdotcom:"https://web.archive.org/web/20211103091808/https://gn-web-assets.api.bbc.com/bbcdotcom/assets/20211005-115145-f94ae3cc3-4.56.0/script"}}),window.bbcdotcom&&bbcdotcom.isSportApp&&!bbcdotcom.isSportApp()&&window.bbcuser.isUKCombined().then(function(o){return o&&!adsDebug?(adsDebug&&console.log("UK location, not ads debug mode, don't load flags, don't load ads."),(o=window.bbcdotcom||{}).config.isAdsEnabled=function(){return!1},o.config.isActive=function(){return!1},o.config.isAnalyticsEnabled=function(){return!1},o.getFeature=function(){return{isEnabled:function(){return!1}}},void o.resolvePromises()):void window.bbcuser.canSeeAdverts().then(function(o){if(!o&&!adsDebug)return adsDebug&&console.log("canSeeAdverts false, not ads debug mode, don't load ads."),(n=window.bbcdotcom||{}).config.isAdsEnabled=function(){return!1},n.config.isActive=function(){return!1},n.config.isAnalyticsEnabled=function(){return!1},n.getFeature=function(){return{isEnabled:function(){return!1}}},void n.resolvePromises();var n=/test/.test(window.location.hostname)?"https://web.archive.org/web/20211103091808/https://gn-flagpoles.test.api.bbci.co.uk/gnlops":"https://web.archive.org/web/20211103091808/https://gn-flagpoles.api.bbci.co.uk/gnlops",e=new XMLHttpRequest;e.open("GET",n),e.onload=function(){var n,o,t=JSON.parse(e.responseText),c=window.bbcdotcom||{};c.flag.a="true"===t.adverts?1:0,c.flag.s="true"===t.analytics?1:0,c.flag.a||c.flag.s?(o=/test/.test(window.location.hostname)?"https://web.archive.org/web/20211103091808/https://gn-flagpoles.test.api.bbci.co.uk/bbcdotcom":"https://web.archive.org/web/20211103091808/https://gn-flagpoles.api.bbci.co.uk/bbcdotcom",(n=new XMLHttpRequest).open("GET",o),n.onload=function(){var c=JSON.parse(n.responseText),e=window.bbcdotcom||{};[{tp:"thirdPartyEEA"},{d:"adsense"},{asa:"adsportapp"},{l:"lotame"},{p:"platinum"},{g:"grapeshot"},{sh:"sherlock"},{pe:"permutive"},{si:"signin"},{sis:"signinSport"},{sin:"signinNews"},{siw:"signinWWHP"},{piano:"piano"},{fundingchoices_cmp:"fundingchoices_cmp"},{storyworks_cmp:"storyworks_cmp"},{content_rec:"content_rec"},{ias_publisher:"ias_publisher"},{fpd:"fpd"}].forEach(function(o,n){for(var t in o)e.flag[t]="true"===c[o[t]]?1:0}),e.data={ads:e.flag.a,stats:e.flag.s,statsProvider:"",country:""},function(){const o=document.createElement("link");o.href="https://web.archive.org/web/20211103091808/https://gn-web-assets.api.bbc.com/bbcdotcom/assets/20211005-115145-f94ae3cc3-4.56.0/style/bbcdotcom-async.css",o.rel="stylesheet",o.type="text/css",document.head.appendChild(o)}();var o=document.createElement("script"),t=document.head||document.getElementsByTagName("head")[0];o.type="text/javascript",o.async=!0,o.src="https://web.archive.org/web/20211103091808/https://gn-web-assets.api.bbc.com/bbcdotcom/assets/20211005-115145-f94ae3cc3-4.56.0/script/bbcdotcom.js",o.onload=function(){window.bbcuser.getCountry().then(function(o){e.data.country=o,e.assetPrefix="https://web.archive.org/web/20211103091808/https://gn-web-assets.api.bbc.com/bbcdotcom/assets/20211005-115145-f94ae3cc3-4.56.0/",bbcdotcomConfig={assetPrefix:"https://web.archive.org/web/20211103091808/https://gn-web-assets.api.bbc.com/bbcdotcom/assets/20211005-115145-f94ae3cc3-4.56.0/",staticVersion:"20211005-115145-f94ae3cc3-4.56.0",staticPrefix:"https://web.archive.org/web/20211103091808/https://gn-web-assets.api.bbc.com/bbcdotcom/assets/20211005-115145-f94ae3cc3-4.56.0/"},e.config.init(bbcdotcomConfig,e.data,window.location,window.document),e.config.setAssetPrefix(bbcdotcomConfig.assetPrefix),e.config.setVersion(bbcdotcomConfig.staticVersion),e.config.setFlagpoles(e.flag);o=!!o&&-1!==["AT","BE","BG","HR","CY","CZ","DK","EE","FI","FR","DE","GR","HU","IE","IT","LV","LT","LU","MT","NL","PL","PT","RO","SK","SI","ES","SE","IS","LI","NO","CH"].indexOf(o.toUpperCase());e.config.setEU(o);var n,o=function(o){var n=document.createElement("link"),t=document.head||document.getElementsByTagName("head")[0];n.href=o,n.rel="dns-prefetch",t.appendChild(n)};e.flag.s&&(o("//web.archive.org/web/20211103091808/https://secure-us.imrworldwide.com/"),o("//web.archive.org/web/20211103091808/https://me-cdn.effectivemeasure.net/")),e.flag.a&&(o("//web.archive.org/web/20211103091808/https://www.googletagservices.com/"),o("//web.archive.org/web/20211103091808/https://bbc.gscontxt.net/"),(n=document.createElement("meta")).setAttribute("name","google-site-verification"),n.setAttribute("content","auTeTTwSt_KBY_4iDoR00Lwb7-qzx1IgzJy6ztaWgEI"),t.appendChild(n)),e.flag.a&&(e.config.isGrapeshotEnabled()&&!e.config.isWorldService()&&(n=window.location.href.split("?")[0],bbcdotcomScripts.push({src:"https://web.archive.org/web/20211103091808/https://bbc.gscontxt.net/?url="+encodeURIComponent(n)})),bbcdotcomScripts.push({src:"https://web.archive.org/web/20211103091808/https://securepubads.g.doubleclick.net/tag/js/gpt.js"}),e.config.isIASEnabled()&&(window.__iasPET=window.__iasPET||{},window.__iasPET.queue=window.__iasPET.queue||[],window.__iasPET.pubId="9708",bbcdotcomScripts.push({src:"https://web.archive.org/web/20211103091808/https://cdn.adsafeprotected.com/iasPET.1.js"}))),(e.flag.s||e.flag.a)&&(e.config.isPermutiveEnabled()&&!e.config.isWorldService()&&(function(t){if(!t){t=t||{},(window.permutive=t).q=[],t.config={consentRequired:!0},t.config.projectId="e488cdb0-e7cb-4d91-9648-60d437d8e491",t.config.apiKey="1bb84885-9325-4fef-adda-a208032b2715",t.config.environment=t.config.environment||"production";for(var o=["addon","identify","track","trigger","query","segment","segments","ready","on","once","user","consent"],n=0;n<o.length;n++){var c=o[n];t[c]=function(n){return function(){var o=Array.prototype.slice.call(arguments,0);t.q.push({functionName:n,arguments:o})}}(c)}}}((document,window.permutive)),bbcdotcomScripts.push({src:"https://web.archive.org/web/20211103091808/https://cdn.permutive.com/e488cdb0-e7cb-4d91-9648-60d437d8e491-web.js"})),bbcdotcomScripts.forEach(function(o){var n=document.createElement("script");n.async=!1,o.id&&(n.id=o.id),n.src=o.src,t.appendChild(n)}),window.bbcdotcom.config.isCmpEnabled()?(window.googlefc=window.googlefc||{},window.googlefc.callbackQueue=window.googlefc.callbackQueue||[],new Promise(function(t){window.googlefc.callbackQueue.push({CONSENT_DATA_READY:function(){window.__tcfapi("getTCData",2,function(o,n){n&&o.gdprApplies&&(window.bbcdotcom.consent={},window.bbcdotcom.gdprApplies=!0,window.bbcdotcom.consent.comscore=o.vendor.consents[77],window.bbcdotcom.consent.permutive=o.vendor.consents[360]&&o.vendor.consents[361],window.bbcdotcom.consent.googleads=o.vendor.consents[755],window.bbcdotcom.consent.nielsen=o.vendor.consents[373]&&o.vendor.consents[812],t(!0)),t(!0)},[77,164,360,361,373,755,812])}})}).then(function(){for(window.bbcdotcom.consentChecked=!0,window.bbcdotcom.asyncDisableAndCloseOpenAds&&window.bbcdotcom.asyncCmd.unshift(function(){window.bbcdotcom.disableAndCloseOpenAds()});window.bbcdotcom.asyncCmd&&0<window.bbcdotcom.asyncCmd.length;)window.bbcdotcom.asyncCmd.shift()()}),function(){const o=document.createElement("script");o.type="text/javascript",o.async=!0,o.src="https://web.archive.org/web/20211103091808/https://gn-web-assets.api.bbc.com/ngas/vendor/fundingchoices/cmp.js",document.head.appendChild(o)}()):function(){for(;window.bbcdotcom.asyncCmd&&0<window.bbcdotcom.asyncCmd.length;)window.bbcdotcom.asyncCmd.shift()()}()),window.adsDebug&&adsDebug&&console.log("bbcdotcom up and running...")})},t.appendChild(o)},n.onerror=function(){var o;(o=window.bbcdotcom||{}).config.isAdsEnabled=function(){return!1},o.config.isActive=function(){return!1},o.config.isAnalyticsEnabled=function(){return!1},o.getFeature=function(){return{isEnabled:function(){return!1}}},o.resolvePromises()},n.send()):((o=window.bbcdotcom||{}).config.isAdsEnabled=function(){return!1},o.config.isActive=function(){return!1},o.config.isAnalyticsEnabled=function(){return!1},o.getFeature=function(){return{isEnabled:function(){return!1}}},o.resolvePromises())},e.onerror=function(){var o;(o=window.bbcdotcom||{}).config.isAdsEnabled=function(){return!1},o.config.isActive=function(){return!1},o.config.isAnalyticsEnabled=function(){return!1},o.getFeature=function(){return{isEnabled:function(){return!1}}},o.resolvePromises()},e.send()})});</script> <title>Home - BBC Reel</title> <meta name="description" content="BBC Reel will introduce you to a new idea, concept, place or person that will expand your mind, teach you something new or change how you see the world."/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="@BBC_Reel"> <meta name="twitter:creator" content="@BBC_Reel"> <meta name="twitter:domain" content="www.bbc.com"> <meta property="og:title" content="Home - BBC Reel"/> <meta property="og:type" content="website"/> <meta property="og:description" content=""/> <meta property="og:site_name" content="BBC Reel"/> <meta property="og:locale" content="en_GB"/> <meta property="article:author" content="https://www.facebook.com/BBCReel/"/> <meta property="article:section" content=""/> <meta property="og:url" content="https://web.archive.org/web/20211103091808/https://www.bbc.com/reel/"/> <meta property="og:image" content="https://web.archive.org/web/20211103091808im_/https://www.bbc.com/reel/icons/192x192_BBC_Reel_Logo.png"/> <meta property="og:image:width" content=""/> <meta property="og:image:height" content=""/> <meta property="og:image:alt" content=""/> <link rel="apple-touch-icon" sizes="180x180" href="https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/icons/apple-touch-icon.png?v=NmPO2lgKoa"> <link rel="icon" type="image/png" sizes="32x32" href="https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/icons/favicon-32x32.png?v=NmPO2lgKoa"> <link rel="icon" type="image/png" sizes="16x16" href="https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/icons/favicon-16x16.png?v=NmPO2lgKoa"> <link rel="manifest" href="https://web.archive.org/web/20211103091808/https://static-web-assets.gnl-common.bbcverticals.com/reel/site.webmanifest?v=NmPO2lgKoa"> <link rel="mask-icon" href="https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/icons/safari-pinned-tab.svg?v=NmPO2lgKoa" color="#0068ff"> <link rel="shortcut icon" href="https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/icons/favicon.ico?v=NmPO2lgKoa"> <meta name="msapplication-TileColor" content="#2d89ef"> <meta name="theme-color" content="#ffffff"> <script type="text/javascript"> var _sf_async_config = _sf_async_config || {}; _sf_async_config.domain = "bbc.co.uk"; _sf_async_config.uid = "50924"; _sf_async_config.title = "Home - BBC Reel"; _sf_async_config.path = "/"; _sf_async_config.sections = "reel"; _sf_async_config.authors = ""; </script> <script src="https://web.archive.org/web/20211103091808js_/https://cdn.optimizely.com/public/4621041136/s/reel_prod.js"></script> <script type="text/javascript"> window['optimizely'] = window['optimizely'] || []; window['optimizely'].push({ "type": "cookieExpiration", "cookieExpirationDays": 365 }); </script> <link rel="preload" href="https://web.archive.org/web/20211103091808/https://static-web-assets.gnl-common.bbcverticals.com/reel/fonts/reith-sans/condensed-regular/ReithSansCondensed_W_Rg.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="https://web.archive.org/web/20211103091808/https://static-web-assets.gnl-common.bbcverticals.com/reel/fonts/curious-sans/CuriousSans-Bold.woff2" as="font" type="font/woff2" crossorigin> </head> <body> <div id="cookiePrompt"></div> <noscript><p style="position: absolute; top: -999em"><img src="https://web.archive.org/web/20211103091808im_/https://a1.api.bbc.co.uk/hit.xiti?&col=1&from=p&ptag=js&s=598253&p=reel.page&x2=[responsive]&x3=[bbc_website]&x4=[en]&x7=[index-home]&x8=[reverb-3.3.0-nojs]&x11=[FEATURE_SITES_GNL]&x12=[REEL]" height="1" width="1" alt=""></p></noscript><div id="bbccom_interstitial_ad" class="bbccom_display_none"></div><div id="bbccom_interstitial" class="bbccom_display_none"></div><div id="bbccom_wallpaper_ad" class="bbccom_display_none"></div><div id="bbccom_wallpaper" class="bbccom_display_none"></div> <header id="orb-banner" role="banner" aria-label="BBC"><div id="orb-header" class="orb-nav-pri orb-nav-pri-white orb-nav-empty" dir="ltr"><div class="orb-nav-pri-container b-r b-g-p"><div class="orb-nav-section orb-nav-blocks new-logo"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/">Homepage</a></div><section><div class="orb-skip-links"><h2>Accessibility links</h2><ul><li><a href="#root">Skip to content</a></li><li><a id="orb-accessibility-help" href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li></ul></div></section><div id="mybbc-wrapper" class="orb-nav-section orb-nav-id orb-nav-focus orb-nav-id-default"> <div id="idcta-statusbar" class="orb-nav-section orb-nav-focus" data-bbc-container="id-cta" data-bbc-event-type="click" data-bbc-ignore-views="1" data-bbc-metadata="{"id-cta-type": "statusbar-orb"}" data-bbc-source="responsive_web" data-bbc-title="id-cta-sign-in"><a id="idcta-link" href="https://web.archive.org/web/20211103091808/https://account.bbc.com/account?ptrt=https://www.bbc.com/reel"><span id="idcta-username">BBC Account</span></a></div><script type="text/javascript">require(['idcta/statusbar'], function (statusbar) {new statusbar.Statusbar({id: 'idcta-statusbar', publiclyCacheable: true});});</script><!-- Because we are now loading the notification bell CSS asynchronously, we need this inline style hack to ensure that the notification div is hidden by default, and shown only if and when the bell code is loaded from notification-ui --><a id="notification-link" class="js-notification-link animated three" href="#" style="display: none"><span class="hidden-span">Notifications</span><div class="notification-link--triangle"></div><div class="notification-link--triangle"></div><span id="not-num"></span></a> </div><nav role="navigation" aria-label="BBC" class="orb-nav"><div class="orb-nav-section orb-nav-links orb-nav-focus" id="orb-nav-links"><ul><li class="orb-nav-home"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/">Home</a></li><li class="orb-nav-news"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/news">News</a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/sport">Sport</a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/weather">Weather</a></li><li class="orb-nav-iplayer"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/iplayer">iPlayer</a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/sounds">Sounds</a></li><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-food"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/food">Food</a></li><li class="orb-nav-bitesize"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-arts"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/arts">Arts</a></li><li class="orb-nav-taster"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/taster">Taster</a></li><li class="orb-nav-local"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/news/localnews">Local</a></li><li class="orb-nav-three"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/bbcthree">Three</a></li><li id="orb-nav-more" style="width: 88px" aria-controls="orb-panel-more"><a href="#orb-footer" data-alt="More" class="istats-notrack">Menu<span class="orb-icon orb-icon-arrow"></span></a></li></ul></div></nav><div class="orb-nav-section orb-nav-search"> <a class="orb-search__button" href="https://web.archive.org/web/20211103091808/https://search.bbc.co.uk/search" title="Search the BBC">Search</a><form class="b-f" id="orb-search-form" role="search" method="get" action="https://web.archive.org/web/20211103091808/https://search.bbc.co.uk/search" accept-charset="utf-8"><div><label for="orb-search-q">Search the BBC</label><input id="orb-search-q" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" maxlength="100" name="q" placeholder="Search"><button id="orb-search-button" class="orb-search__button">Search the BBC</button><input type="hidden" name="suggid" id="orb-search-suggid"></div></form><form id="orbit-search-form" role="search" method="get" action="https://web.archive.org/web/20211103091808/https://search.bbc.co.uk/search" accept-charset="utf-8"><div> <button id="orbit-search-button"><svg class="search-button-icon" width="1.75rem" height="1.8125rem" viewbox="0 0 28 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Search BBC</title><path d="M11,0 C17.0751322,0 22,4.92486775 22,11 C22,13.5277632 21.1473793,15.8563862 19.7140404,17.7139664 L28,26.0001 L25,29.0001 L16.518046,20.5179339 C14.8960209,21.4603385 13.0110328,22 11,22 C4.92486775,22 0,17.0751322 0,11 C0,4.92486775 4.92486775,0 11,0 Z M11,2.5001 C6.30557963,2.5001 2.5,6.30567963 2.5,11.0001 C2.5,15.6945204 6.30557963,19.5001 11,19.5001 C15.6944204,19.5001 19.5,15.6945204 19.5,11.0001 C19.5,6.30567963 15.6944204,2.5001 11,2.5001 Z" id="Shape"></path></svg><svg class="search-box-icon" width="1rem" height="1rem" viewbox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M4.31263591,11.9770508 C3.26116255,10.925 2.68223368,9.52721354 2.68223368,8.04036458 C2.68223368,6.55351563 3.26116255,5.15572917 4.31325442,4.10491536 C5.36410928,3.05286458 6.76133182,2.47395833 8.24823886,2.47395833 C9.7351459,2.47395833 11.1336055,3.05348307 12.1850788,4.10491536 C14.3548251,6.27457682 14.3554436,9.80615234 12.1850788,11.9770508 C11.1336055,13.0278646 9.7351459,13.6067708 8.24823886,13.6067708 C6.76195034,13.6067708 5.36410928,13.0278646 4.31263591,11.9770508 L4.31263591,11.9770508 Z M20,17.6059245 L14.9195281,12.525651 C17.0268044,9.39980469 16.7002292,5.12171224 13.9348542,2.35520833 C12.3644478,0.785481771 10.3066526,0 8.24823886,0 C6.19106215,0 4.13264841,0.785481771 2.56347904,2.35520833 C-0.576715236,5.49589844 -0.576715236,10.5860677 2.56347904,13.7255208 C4.13326692,15.2964844 6.19106215,16.0807292 8.24823886,16.0807292 C9.81555269,16.0807292 11.3816295,15.6230469 12.733082,14.7120117 L17.8129354,19.7916667 L20,17.6059245 Z"></path></svg><span>Search BBC</span></button></div></form> </div></div><div id="orb-panels"></div></div></header> <!-- Styling hook for shared modules only --> <div id="orb-modules"> <noscript> You need to enable JavaScript to run this app. </noscript> <div id="root"><style data-emotion-css="5t4m1d-App">html,body{overflow-x:hidden;max-width:100%;}#root{color:#ffffff;background:#2e2e2a;}#root *{box-sizing:border-box;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}#root a{color:#ffffff;}@font-face{font-family:"ReithCD";src:url("https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/fonts/reith-sans/condensed-regular/ReithSansCondensed_W_Rg.woff2") format("woff2"), url("https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/fonts/reith-sans/condensed-regular/ReithSansCondensed_W_Rg.woff") format("woff");font-display:fallback;}@font-face{font-family:"CuriousSans";src:url("https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/fonts/curious-sans/CuriousSans-Bold.woff2") format("woff2"), url("https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/fonts/curious-sans/CuriousSans-Bold.woff") format("woff");font-display:fallback;}@font-face{font-family:"OpenSans";src:url("https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/fonts/open-sans/OpenSans-Bold.woff2") format("woff2"), url("https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/fonts/open-sans/OpenSans-Bold.woff") format("woff");font-display:fallback;}@font-face{font-family:"GeliconsSocial";src:url("https://web.archive.org/web/20211103091808im_/https://static-web-assets.gnl-common.bbcverticals.com/reel/fonts/gelicons-social/gelicons-social.woff") format("woff");font-display:block;}#root h1,h2,h3{font-family:CuriousSans,ReithSans,Helvetica,Arial,sans-serif;}#root p{font-family:ReithSans,Helvetica,Arial,sans-serif;}#root div,span{font-family:ReithCD,ReithSans,Helvetica,Arial,sans-serif;}.fade-in{opacity:0;}.fade-in.visible{-webkit-transition:opacity 1s ease-in;transition:opacity 1s ease-in;opacity:1;}.animateMe{-webkit-animation-name:slideAndFadeIn;animation-name:slideAndFadeIn;}@-webkit-keyframes slideAndFadeIn{0%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px);opacity:0;}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1;}}@keyframes slideAndFadeIn{0%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px);opacity:0;}100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);opacity:1;}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}@keyframes spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}</style><main role="main"><style data-emotion-css="6i6s0r-Bar">.css-6i6s0r-Bar{height:60px;max-height:60px;position:relative;z-index:1001;width:100%;background-color:transparent;}@media(min-width:600px){.css-6i6s0r-Bar{height:70px;max-height:70px;}}@media(min-width:1008px){.css-6i6s0r-Bar{height:96px;max-height:96px;}}@media(min-width:1280px){.css-6i6s0r-Bar{height:96px;max-height:96px;}}</style><nav role="navigation" class="css-6i6s0r-Bar e14alb5n0"><style data-emotion-css="j0tqrq-BarContent">.css-j0tqrq-BarContent{margin:0 auto;height:100%;padding-top:0;padding-bottom:0;max-width:1008px;}@media(min-width:600px){.css-j0tqrq-BarContent{padding-top:8px;}}@media(min-width:1008px){.css-j0tqrq-BarContent{padding-top:16px;}}@media(min-width:1280px){.css-j0tqrq-BarContent{padding-top:16px;}}@media(min-width:600px){.css-j0tqrq-BarContent{padding-bottom:8px;}}@media(min-width:1008px){.css-j0tqrq-BarContent{padding-bottom:16px;}}@media(min-width:1280px){.css-j0tqrq-BarContent{padding-bottom:16px;}}@media(min-width:600px){.css-j0tqrq-BarContent{max-width:1008px;}}@media(min-width:1008px){.css-j0tqrq-BarContent{max-width:1008px;}}@media(min-width:1280px){.css-j0tqrq-BarContent{max-width:1280px;}}</style><div class="css-j0tqrq-BarContent e14alb5n1"><style data-emotion-css="1ojkkl5-Logo">.css-1ojkkl5-Logo{top:14px;position:relative;display:inline-block;margin:0;vertical-align:middle;padding-left:8px;padding-right:8px;height:60px;}@media(min-width:600px){.css-1ojkkl5-Logo{top:12px;}}@media(min-width:1008px){.css-1ojkkl5-Logo{top:18px;}}@media(min-width:1280px){.css-1ojkkl5-Logo{top:18px;}}@media(min-width:600px){.css-1ojkkl5-Logo{padding-left:16px;}}@media(min-width:1008px){.css-1ojkkl5-Logo{padding-left:16px;}}@media(min-width:1280px){.css-1ojkkl5-Logo{padding-left:16px;}}@media(min-width:600px){.css-1ojkkl5-Logo{padding-right:16px;}}@media(min-width:1008px){.css-1ojkkl5-Logo{padding-right:16px;}}@media(min-width:1280px){.css-1ojkkl5-Logo{padding-right:16px;}}.css-1ojkkl5-Logo svg{fill:#ffffff;width:110px;width:90px;}@media(min-width:600px){.css-1ojkkl5-Logo svg{width:110px;}}@media(min-width:1008px){.css-1ojkkl5-Logo svg{width:110px;}}@media(min-width:1280px){.css-1ojkkl5-Logo svg{width:110px;}}</style><div class="css-1ojkkl5-Logo e14alb5n3"><style data-emotion-css="1qzy68-logoActive_link">.css-1qzy68-logoActive_link{pointer-events:none;}</style><style data-emotion-css="otvjgx-ReelLogoLink-logoActive_link">.css-otvjgx-ReelLogoLink-logoActive_link{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;outline:none;pointer-events:auto;pointer-events:none;}</style><a tabindex="-1" class="css-otvjgx-ReelLogoLink-logoActive_link e14alb5n5" href="/web/20211103091808/https://www.bbc.com/reel/"><svg viewbox="0 0 52.7 15.8"><path d="M2.8,9.7v6H0V0h5.4c2,0,3.6,0.4,4.7,1.3c1.1,0.8,1.6,2,1.6,3.6c0,1-0.3,1.9-0.8,2.7c-0.5,0.7-1.3,1.3-2.3,1.7 c0.7,1.1,1.4,2.1,2.1,3.2c0.7,1.1,1.3,2.2,2,3.3H9.5c-0.6-1-1.2-2-1.8-3c-0.6-1-1.2-2-1.8-3c-0.2,0-0.4,0-0.6,0H2.8z M2.8,2.2v5.3 h2.5c1.2,0,2.1-0.2,2.8-0.6c0.6-0.4,0.9-1.1,0.9-2c0-0.9-0.3-1.6-0.9-2C7.4,2.4,6.5,2.2,5.3,2.2H2.8z"></path><path d="M14.9,0h10.6v2.4h-7.7v4.1h6.9v2.4h-6.9v4.6h8.2v2.4h-11V0z"></path><path d="M28.5,0H39v2.4h-7.7v4.1h6.9v2.4h-6.9v4.6h8.2v2.4h-11V0z"></path><path d="M42.1,0h2.8v13.4h7.8v2.4H42.1V0z"></path></svg></a></div><style data-emotion-css="v7bafi-NavLink-nav">.css-v7bafi-NavLink-nav{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-family:ReithSans,Helvetica,Arial,sans-serif !important;text-shadow:0 1px 0 rgba(58,58,58,0.2);font-size:16px;line-height:22px;color:#ededed;pointer-events:auto;display:inline-block;float:right;position:relative;padding:0;color:#ebebeb !important;-webkit-transition:color ease-out 0.3s;transition:color ease-out 0.3s;-webkit-text-decoration:none;text-decoration:none;margin-top:16px;text-shadow:unset;margin-right:6px;margin-left:6px;outline:none;}@media (min-width:600px){.css-v7bafi-NavLink-nav{font-size:18px;line-height:24px;}}@media(min-width:600px){.css-v7bafi-NavLink-nav{margin-right:16px;margin-left:16px;}}@media(min-width:1008px){.css-v7bafi-NavLink-nav{margin-right:16px;margin-left:16px;}}@media(min-width:1280px){.css-v7bafi-NavLink-nav{margin-right:16px;margin-left:16px;}}.css-v7bafi-NavLink-nav:after{position:absolute;content:"";bottom:0;opacity:0;left:0;width:100%;height:3px;background-color:#0068ff;-webkit-transition:-webkit-transform ease-out 0.3s,opacity ease-out 0.3s;-webkit-transition:transform ease-out 0.3s,opacity ease-out 0.3s;transition:transform ease-out 0.3s,opacity ease-out 0.3s;}.css-v7bafi-NavLink-nav:hover,.css-v7bafi-NavLink-nav:focus{color:#ffffff !important;}.css-v7bafi-NavLink-nav:hover:after,.css-v7bafi-NavLink-nav:focus:after{opacity:1;-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px);}.css-v7bafi-NavLink-nav svg{fill:#ebebeb;}</style><a textcolour="#ebebeb" highlighttextcolour="#ffffff" highlightcolour="#0068ff" tabindex="0" data-track="nav" class="css-v7bafi-NavLink-nav e14alb5n4" href="/web/20211103091808/https://www.bbc.com/reel/longshots">LongShots</a><style data-emotion-css="g005k-NavLink-nav">.css-g005k-NavLink-nav{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-family:ReithSans,Helvetica,Arial,sans-serif !important;text-shadow:0 1px 0 rgba(58,58,58,0.2);font-size:16px;line-height:22px;color:#ededed;pointer-events:auto;display:inline-block;float:right;position:relative;padding:0;color:#ebebeb !important;-webkit-transition:color ease-out 0.3s;transition:color ease-out 0.3s;-webkit-text-decoration:none;text-decoration:none;margin-top:16px;margin-right:6px;margin-left:6px;outline:none;}@media (min-width:600px){.css-g005k-NavLink-nav{font-size:18px;line-height:24px;}}@media(min-width:600px){.css-g005k-NavLink-nav{margin-right:16px;margin-left:16px;}}@media(min-width:1008px){.css-g005k-NavLink-nav{margin-right:16px;margin-left:16px;}}@media(min-width:1280px){.css-g005k-NavLink-nav{margin-right:16px;margin-left:16px;}}.css-g005k-NavLink-nav:after{position:absolute;content:"";bottom:0;opacity:0;left:0;width:100%;height:3px;background-color:#0068ff;-webkit-transition:-webkit-transform ease-out 0.3s,opacity ease-out 0.3s;-webkit-transition:transform ease-out 0.3s,opacity ease-out 0.3s;transition:transform ease-out 0.3s,opacity ease-out 0.3s;}.css-g005k-NavLink-nav:hover,.css-g005k-NavLink-nav:focus{color:#ffffff !important;}.css-g005k-NavLink-nav:hover:after,.css-g005k-NavLink-nav:focus:after{opacity:1;-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px);}.css-g005k-NavLink-nav svg{fill:#ebebeb;}</style><a textcolour="#ebebeb" highlighttextcolour="#ffffff" highlightcolour="#0068ff" tabindex="0" data-track="nav" class="css-g005k-NavLink-nav e14alb5n4" href="/web/20211103091808/https://www.bbc.com/reel/playlists">Playlists</a><style data-emotion-css="zgkrhq-active_link-active_link_icon">.css-zgkrhq-active_link-active_link_icon{pointer-events:none;font-weight:bold;color:#ffffff !important;}.css-zgkrhq-active_link-active_link_icon:after{opacity:1;-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px);}</style><style data-emotion-css="14hrem2-NavLink-nav-active_link-active_link_icon">.css-14hrem2-NavLink-nav-active_link-active_link_icon{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-family:ReithSans,Helvetica,Arial,sans-serif !important;text-shadow:0 1px 0 rgba(58,58,58,0.2);font-size:16px;line-height:22px;color:#ededed;pointer-events:auto;display:inline-block;float:right;position:relative;padding:0;color:#ebebeb !important;-webkit-transition:color ease-out 0.3s;transition:color ease-out 0.3s;-webkit-text-decoration:none;text-decoration:none;margin-top:16px;margin-right:6px;margin-left:6px;outline:none;pointer-events:none;font-weight:bold;color:#ffffff !important;}@media (min-width:600px){.css-14hrem2-NavLink-nav-active_link-active_link_icon{font-size:18px;line-height:24px;}}@media(min-width:600px){.css-14hrem2-NavLink-nav-active_link-active_link_icon{margin-right:16px;margin-left:16px;}}@media(min-width:1008px){.css-14hrem2-NavLink-nav-active_link-active_link_icon{margin-right:16px;margin-left:16px;}}@media(min-width:1280px){.css-14hrem2-NavLink-nav-active_link-active_link_icon{margin-right:16px;margin-left:16px;}}.css-14hrem2-NavLink-nav-active_link-active_link_icon:after{position:absolute;content:"";bottom:0;opacity:0;left:0;width:100%;height:3px;background-color:#0068ff;-webkit-transition:-webkit-transform ease-out 0.3s,opacity ease-out 0.3s;-webkit-transition:transform ease-out 0.3s,opacity ease-out 0.3s;transition:transform ease-out 0.3s,opacity ease-out 0.3s;}.css-14hrem2-NavLink-nav-active_link-active_link_icon:hover,.css-14hrem2-NavLink-nav-active_link-active_link_icon:focus{color:#ffffff !important;}.css-14hrem2-NavLink-nav-active_link-active_link_icon:hover:after,.css-14hrem2-NavLink-nav-active_link-active_link_icon:focus:after{opacity:1;-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px);}.css-14hrem2-NavLink-nav-active_link-active_link_icon svg{fill:#ebebeb;}.css-14hrem2-NavLink-nav-active_link-active_link_icon:after{opacity:1;-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px);}</style><a textcolour="#ebebeb" highlighttextcolour="#ffffff" highlightcolour="#0068ff" tabindex="-1" data-track="nav" class="css-14hrem2-NavLink-nav-active_link-active_link_icon e14alb5n4" href="/web/20211103091808/https://www.bbc.com/reel/"><svg width="22" height="22" viewbox="0 0 32 32"><polygon points="16 5.4 4 17.4 4 32 13 32 13 22 19 22 19 32 28 32 28 17.4 16 5.4 16 5.4"></polygon><polygon points="28 12 28 4 24 4 24 8 17.4 1.5 16 0 14.6 1.5 0 16 0 18.9 16 2.9 32 18.9 32 16 28 12"></polygon></svg></a></div></nav><style data-emotion-css="xcytsl-StickyContainerDiv">.css-xcytsl-StickyContainerDiv{position:absolute;display:block;z-index:100;opacity:1;width:100%;max-width:100%;padding:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);}@media(min-width:600px){.css-xcytsl-StickyContainerDiv{max-width:100%;padding:0 16px;}}@media(min-width:1008px){.css-xcytsl-StickyContainerDiv{max-width:974px;padding:0;}}@media(min-width:1280px){.css-xcytsl-StickyContainerDiv{max-width:974px;padding:0;}}</style><div class="css-xcytsl-StickyContainerDiv e168yvgn1"><style data-emotion-css="5cpddw-Button">.css-5cpddw-Button{position:absolute;right:8px;top:6px;opacity:0;padding:0;-webkit-transition:all 0.3s;transition:all 0.3s;display:block;cursor:pointer;outline:none;height:24px;width:24px;border:none;background:none;background-color:rgba(31,31,31,0.98);border-radius:2px;}@media(min-width:600px){.css-5cpddw-Button{right:16px;}}@media(min-width:1008px){.css-5cpddw-Button{right:8px;}}@media(min-width:1280px){.css-5cpddw-Button{right:8px;}}@media(min-width:600px){.css-5cpddw-Button{top:16px;}}@media(min-width:1008px){.css-5cpddw-Button{top:6px;}}@media(min-width:1280px){.css-5cpddw-Button{top:6px;}}.css-5cpddw-Button svg{vertical-align:middle;width:16px;fill:#ffffff;-webkit-transition:fill 0.3s ease-out;transition:fill 0.3s ease-out;}@media(min-width:600px){.css-5cpddw-Button svg{width:22px;}}@media(min-width:1008px){.css-5cpddw-Button svg{width:16px;}}@media(min-width:1280px){.css-5cpddw-Button svg{width:16px;}}.css-5cpddw-Button:hover{background-color:rgba(31,31,31,0.98);}.css-5cpddw-Button:hover svg{fill:#0068ff;}</style><button tabindex="-1" class="css-5cpddw-Button eo1fotj0"><svg viewbox="0 0 32 32" height="22" width="22"><path d="M32 3.5L28.5 0 16 12.5 3.5 0 0 3.5 12.5 16 0 28.5 3.5 32 16 19.5 28.5 32l3.5-3.5L19.5 16 32 3.5z"></path></svg></button><style data-emotion-css="14we8sl-SMPdiv">.css-14we8sl-SMPdiv{width:100%;position:relative;box-shadow:0 3px 6px 0 rgba(0,0,0,0.3);}</style><div class="css-14we8sl-SMPdiv e168yvgn0"></div></div><style data-emotion-css="iukhdh-SectionWrapper">.css-iukhdh-SectionWrapper{position:relative;width:100%;min-height:100%;opacity:1;-webkit-transition:opacity 0.5s ease-in;transition:opacity 0.5s ease-in;}</style><section role="region" opacity="1" class="css-iukhdh-SectionWrapper ewy1uy40"><style data-emotion-css="1u9wxxs-SectionSpacer">.css-1u9wxxs-SectionSpacer{padding:0;}</style><div class="css-1u9wxxs-SectionSpacer ewy1uy41"><style data-emotion-css="h67uu5-SectionContent">.css-h67uu5-SectionContent{position:relative;margin:0 auto;z-index:2;max-width:1008px;max-width:100%;padding:8px;padding-top:16px;padding-bottom:0!important;}@media(min-width:600px){.css-h67uu5-SectionContent{max-width:1008px;}}@media(min-width:1008px){.css-h67uu5-SectionContent{max-width:1008px;}}@media(min-width:1280px){.css-h67uu5-SectionContent{max-width:1280px;}}@media(min-width:600px){.css-h67uu5-SectionContent{max-width:100%;}}@media(min-width:1008px){.css-h67uu5-SectionContent{max-width:1008px;}}@media(min-width:1280px){.css-h67uu5-SectionContent{max-width:1280px;}}@media(min-width:600px){.css-h67uu5-SectionContent{padding:16px;}}@media(min-width:1008px){.css-h67uu5-SectionContent{padding:16px;}}@media(min-width:1280px){.css-h67uu5-SectionContent{padding:32px;}}@media(min-width:600px){.css-h67uu5-SectionContent{padding-top:16px;}}@media(min-width:1008px){.css-h67uu5-SectionContent{padding-top:16px;}}@media(min-width:1280px){.css-h67uu5-SectionContent{padding-top:32px;}}</style><div class="css-h67uu5-SectionContent ewy1uy42"><style data-emotion-css="14n4b30-HeroContainer">.css-14n4b30-HeroContainer{position:relative;margin-top:calc(-16px - 60px);min-width:100vw;min-height:404px;padding-bottom:0;left:calc((100% - 100vw) / 2);z-index:0;}@media(min-width:600px){.css-14n4b30-HeroContainer{margin-top:calc(-16px - 70px);}}@media(min-width:1008px){.css-14n4b30-HeroContainer{margin-top:calc(-16px - 96px);}}@media(min-width:1280px){.css-14n4b30-HeroContainer{margin-top:calc(-32px - 96px);}}@media(min-width:600px){.css-14n4b30-HeroContainer{padding-bottom:calc(56.25% - 40.5px - 16px);}}@media screen and (orientation:landscape),screen and (max-width:599px){.css-14n4b30-HeroContainer{height:75vh;}@media(min-width:600px){.css-14n4b30-HeroContainer{height:90vh;}}@media(min-width:1008px){.css-14n4b30-HeroContainer{height:90vh;}}@media(min-width:1280px){.css-14n4b30-HeroContainer{height:90vh;}}}</style><div class="HeroContainer css-14n4b30-HeroContainer e6f7pms0"><style data-emotion-css="1ogwo88-Bar">.css-1ogwo88-Bar{position:absolute;width:100%;height:3px;background-color:rgba(241,241,241,0.2);z-index:1002;}</style><div class="css-1ogwo88-Bar ee1bx1l0"><style data-emotion-css="gvyvxz-Fill">.css-gvyvxz-Fill{width:0;height:100%;background-color:#0068ff;}</style><div class="css-gvyvxz-Fill ee1bx1l1"></div></div><style data-emotion-css="kct63r-HeroGradient">.css-kct63r-HeroGradient{position:absolute;z-index:1000;pointer-events:none;left:0;width:100%;margin-top:3px;padding-bottom:56.25%;height:75vh;background:linear-gradient(180deg,rgba(0,0,0,0.5) 6%,rgba(0,0,0,0.3) 15%,rgba(0,0,0,0.3) 60%,#2e2e2a 100%);}@media(min-width:600px){.css-kct63r-HeroGradient{height:auto;}}@media(min-width:1008px){.css-kct63r-HeroGradient{height:auto;}}@media(min-width:1280px){.css-kct63r-HeroGradient{height:auto;}}</style><div class="css-kct63r-HeroGradient e6f7pms1"></div><style data-emotion-css="1i5oaav-Background">.css-1i5oaav-Background{position:absolute;height:75vh;top:0;width:100%;padding-bottom:56.25%;z-index:1;}@media(min-width:600px){.css-1i5oaav-Background{height:auto;}}@media(min-width:1008px){.css-1i5oaav-Background{height:auto;}}@media(min-width:1280px){.css-1i5oaav-Background{height:auto;}}</style><div class="css-1i5oaav-Background e1nkj1o80"><style data-emotion-css="1yhqfpw-BackgroundLayer">.css-1yhqfpw-BackgroundLayer{position:absolute;width:100%;height:100%;background-size:cover;background-position-x:center;background-repeat:no-repeat;opacity:0;-webkit-transition:opacity 1s ease-out;transition:opacity 1s ease-out;}</style><div class="css-1yhqfpw-BackgroundLayer e1nkj1o81"></div><style data-emotion-css="1oh4t04-BackgroundLayer">.css-1oh4t04-BackgroundLayer{position:absolute;width:100%;height:100%;background-size:cover;background-position-x:center;background-repeat:no-repeat;background-image:url(https://web.archive.org/web/20211103091808im_/https://ychef.files.bbci.co.uk/800x450/p0b1074n.jpg);opacity:1;-webkit-transition:opacity 1s ease-out;transition:opacity 1s ease-out;}</style><div class="css-1oh4t04-BackgroundLayer e1nkj1o81"></div><style data-emotion-css="s75vdn-imageLoader">.css-s75vdn-imageLoader{position:absolute;display:none;width:0;height:0;}</style><img src="https://web.archive.org/web/20211103091808im_/https://ychef.files.bbci.co.uk/800x450/p0b1074n.jpg" alt="" class="css-s75vdn-imageLoader"/></div><style data-emotion-css="oopzqz-SMPheroDiv">.css-oopzqz-SMPheroDiv{position:absolute;width:100%;display:none;opacity:0;}@media(min-width:600px){.css-oopzqz-SMPheroDiv{display:block;}}@media(min-width:1008px){.css-oopzqz-SMPheroDiv{display:block;}}@media(min-width:1280px){.css-oopzqz-SMPheroDiv{display:block;}}</style><div class="css-oopzqz-SMPheroDiv ey7kngb0"></div><style data-emotion-css="1eat1e8-HeroContent">.css-1eat1e8-HeroContent{position:absolute;top:0;bottom:0;width:100%;z-index:1002;max-width:1008px;padding:16px;max-width:100%;padding-top:56.25%;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);}@media(min-width:600px){.css-1eat1e8-HeroContent{max-width:1008px;}}@media(min-width:1008px){.css-1eat1e8-HeroContent{max-width:1008px;}}@media(min-width:1280px){.css-1eat1e8-HeroContent{max-width:1280px;}}@media(min-width:600px){.css-1eat1e8-HeroContent{padding:16px;}}@media(min-width:1008px){.css-1eat1e8-HeroContent{padding:16px;}}@media(min-width:1280px){.css-1eat1e8-HeroContent{padding:16px;}}</style><div class="css-1eat1e8-HeroContent e6f7pms2"><style data-emotion-css="tx9dex-AdsContainer">.css-tx9dex-AdsContainer{margin:8px;position:absolute;top:60px;right:0;}@media(min-width:600px){.css-tx9dex-AdsContainer{margin:8px;}}@media(min-width:1008px){.css-tx9dex-AdsContainer{margin:16px;}}@media(min-width:1280px){.css-tx9dex-AdsContainer{margin:16px;}}@media(min-width:600px){.css-tx9dex-AdsContainer{top:70px;}}@media(min-width:1008px){.css-tx9dex-AdsContainer{top:96px;}}@media(min-width:1280px){.css-tx9dex-AdsContainer{top:96px;}}</style><div class="css-tx9dex-AdsContainer e1fn29z60"></div><style data-emotion-css="1m0w78j-FacadeWrapper">.css-1m0w78j-FacadeWrapper{position:relative;width:100%;height:100%;background-color:transparent;}</style><div data-cy="HeroFacade" class="css-1m0w78j-FacadeWrapper e19uxtuz0"><style data-emotion-css="1ignfti-BottomWrapper">.css-1ignfti-BottomWrapper{position:absolute;bottom:0;width:100%;padding-bottom:20px;}@media(min-width:600px){.css-1ignfti-BottomWrapper{width:100%;}}@media(min-width:1008px){.css-1ignfti-BottomWrapper{width:100%;}}@media(min-width:1280px){.css-1ignfti-BottomWrapper{width:65%;}}@media(min-width:600px){.css-1ignfti-BottomWrapper{padding-bottom:20px;}}@media(min-width:1008px){.css-1ignfti-BottomWrapper{padding-bottom:16px;}}@media(min-width:1280px){.css-1ignfti-BottomWrapper{padding-bottom:16px;}}.css-1ignfti-BottomWrapper:focus-within:not(:active) a{outline:solid rgb(94,158,214);}.css-1ignfti-BottomWrapper:focus-within:not(:active) h1{-webkit-text-decoration:underline;text-decoration:underline;}</style><div class="css-1ignfti-BottomWrapper e19uxtuz2"><div><style data-emotion-css="130v84o-VideoTitle-h1">.css-130v84o-VideoTitle-h1{font-size:30px;font-weight:bold;line-height:36px;white-space:normal;text-shadow:0 1px 2px rgba(37,37,37,0.5);color:#ffffff;margin-top:8px;margin-bottom:8px;width:100%;white-space:normal;line-height:1.25;text-shadow:0 1px rgba(37,37,37,0.5);}@media (min-width:600px){.css-130v84o-VideoTitle-h1{font-size:32px;line-height:38px;}}@media (min-width:1008px){.css-130v84o-VideoTitle-h1{font-size:48px;line-height:48px;}}@media(min-width:600px){.css-130v84o-VideoTitle-h1{margin-top:8px;}}@media(min-width:1008px){.css-130v84o-VideoTitle-h1{margin-top:16px;}}@media(min-width:1280px){.css-130v84o-VideoTitle-h1{margin-top:16px;}}@media(min-width:600px){.css-130v84o-VideoTitle-h1{margin-bottom:8px;}}@media(min-width:1008px){.css-130v84o-VideoTitle-h1{margin-bottom:16px;}}@media(min-width:1280px){.css-130v84o-VideoTitle-h1{margin-bottom:16px;}}</style><h1 class="css-130v84o-VideoTitle-h1 e19uxtuz7">The truth about paranormal belief</h1><style data-emotion-css="tikrg5-LinkStyle">.css-tikrg5-LinkStyle{-webkit-text-decoration:none;text-decoration:none;}</style><a aria-label="Play video The truth about paranormal belief" data-track="hero" class="css-tikrg5-LinkStyle" href="/web/20211103091808/https://www.bbc.com/reel/video/p0b102h2/why-do-so-many-believe-in-the-paranormal-"><style data-emotion-css="n1u44q-Button">.css-n1u44q-Button{position:relative;border:none;cursor:pointer;overflow:hidden;text-align:center;background-color:transparent;color:white;font-size:16px;font-family:ReithSans,Helvetica,Arial,sans-serif !important;height:40px;margin:0;padding:0 0 2px 0;line-height:40px;font-weight:bold;text-shadow:0 1px 2px rgba(34,34,34,0.7);outline:0;}@media(min-width:600px){.css-n1u44q-Button{font-size:18px;height:50px;line-height:50px;}}@media(min-width:1008px){.css-n1u44q-Button{font-size:24px;height:50px;line-height:50px;}}@media(min-width:1280px){.css-n1u44q-Button{font-size:24px;height:60px;line-height:60px;}}.css-n1u44q-Button svg{position:absolute;left:54%;top:50%;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%;-webkit-transform:translate(-50%,-50%) scale(1);-ms-transform:translate(-50%,-50%) scale(1);transform:translate(-50%,-50%) scale(1);fill:#ffffff;}@media(min-width:600px){.css-n1u44q-Button svg{-webkit-transform:translate(-50%,-50%) scale(1.25);-ms-transform:translate(-50%,-50%) scale(1.25);transform:translate(-50%,-50%) scale(1.25);}}@media(min-width:1008px){.css-n1u44q-Button svg{-webkit-transform:translate(-50%,-50%) scale(1.25);-ms-transform:translate(-50%,-50%) scale(1.25);transform:translate(-50%,-50%) scale(1.25);}}@media(min-width:1280px){.css-n1u44q-Button svg{-webkit-transform:translate(-50%,-50%) scale(1.25);-ms-transform:translate(-50%,-50%) scale(1.25);transform:translate(-50%,-50%) scale(1.25);}}</style><span class="css-n1u44q-Button e1cxuza20"><style data-emotion-css="jbdlh2-IconContainer">.css-jbdlh2-IconContainer{position:relative;float:left;margin-right:8px;border-radius:50%;height:40px;width:40px;-webkit-transition:background-color 0.3s ease-out,opacity 0.3s ease-out,-webkit-transform 0.3s ease-out;-webkit-transition:background-color 0.3s ease-out,opacity 0.3s ease-out,transform 0.3s ease-out;transition:background-color 0.3s ease-out,opacity 0.3s ease-out,transform 0.3s ease-out;background-color:#0068ff;-webkit-transform:scale(1.0);-ms-transform:scale(1.0);transform:scale(1.0);}@media(min-width:600px){.css-jbdlh2-IconContainer{margin-right:12px;}}@media(min-width:1008px){.css-jbdlh2-IconContainer{margin-right:12px;}}@media(min-width:1280px){.css-jbdlh2-IconContainer{margin-right:12px;}}@media(min-width:600px){.css-jbdlh2-IconContainer{height:50px;}}@media(min-width:1008px){.css-jbdlh2-IconContainer{height:50px;}}@media(min-width:1280px){.css-jbdlh2-IconContainer{height:60px;}}@media(min-width:600px){.css-jbdlh2-IconContainer{width:50px;}}@media(min-width:1008px){.css-jbdlh2-IconContainer{width:50px;}}@media(min-width:1280px){.css-jbdlh2-IconContainer{width:60px;}}</style><div class="css-jbdlh2-IconContainer e1cxuza21"><svg viewbox="0 0 32 32" height="20" width="20"><path d="M3 32l26-16L3 0z"></path></svg></div>Watch now</span></a></div></div></div><style data-emotion-css="liizoy-NavContainer">.css-liizoy-NavContainer{margin-top:-16px;padding:0;}@media(min-width:600px){.css-liizoy-NavContainer{margin-top:-16px;}}@media(min-width:1008px){.css-liizoy-NavContainer{margin-top:-48px;}}@media(min-width:1280px){.css-liizoy-NavContainer{margin-top:-16px;}}</style><div class="css-liizoy-NavContainer e6f7pms3"><style data-emotion-css="1laz04j-CenterDiv">.css-1laz04j-CenterDiv{position:relative;display:block;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);text-align:center;padding:0;}</style><div data-cy="NavDotButtons" class="css-1laz04j-CenterDiv e1wyef2u0"><style data-emotion-css="16vbkyd-DotList">.css-16vbkyd-DotList{display:inline-block;margin:0;padding:0;list-style:none;cursor:default;}</style><ul class="css-16vbkyd-DotList e1wyef2u1"><style data-emotion-css="oik1q7-ListItem">.css-oik1q7-ListItem{float:left;margin:0 8px;display:block;cursor:pointer;outline:none;padding:0px;border-radius:50%;height:14px;width:14px;background-color:#0068ff;border:none;-webkit-transform:scale(1.5);-ms-transform:scale(1.5);transform:scale(1.5);-webkit-transition:-webkit-transform 0.2s ease-out,background-color 0.2s ease-out;-webkit-transition:transform 0.2s ease-out,background-color 0.2s ease-out;transition:transform 0.2s ease-out,background-color 0.2s ease-out;}.css-oik1q7-ListItem:hover{background-color:#1a77ff;}</style><li class="css-oik1q7-ListItem e160tp1z0"></li><style data-emotion-css="i634ck-ListItem">.css-i634ck-ListItem{float:left;margin:0 8px;display:block;cursor:pointer;outline:none;padding:0px;border-radius:50%;height:14px;width:14px;background-color:#cccccc;border:none;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);-webkit-transition:-webkit-transform 0.2s ease-out,background-color 0.2s ease-out;-webkit-transition:transform 0.2s ease-out,background-color 0.2s ease-out;transition:transform 0.2s ease-out,background-color 0.2s ease-out;}.css-i634ck-ListItem:hover{background-color:#1a77ff;}</style><li class="css-i634ck-ListItem e160tp1z0"></li><li class="css-i634ck-ListItem e160tp1z0"></li><li class="css-i634ck-ListItem e160tp1z0"></li><li class="css-i634ck-ListItem e160tp1z0"></li><li class="css-i634ck-ListItem e160tp1z0"></li></ul></div></div><style data-emotion-css="n0clxz-HeroMenuContainer">.css-n0clxz-HeroMenuContainer{font-family:"Reith Sans Cd";position:absolute;bottom:32px;right:16px;max-width:30%;z-index:1001;padding:16px;background-color:rgba(0,0,0,0.5);border-radius:4px;display:none;}@media(min-width:600px){.css-n0clxz-HeroMenuContainer{bottom:32px;}}@media(min-width:1008px){.css-n0clxz-HeroMenuContainer{bottom:32px;}}@media(min-width:1280px){.css-n0clxz-HeroMenuContainer{bottom:calc(32px + 16px);}}@media(min-width:600px){.css-n0clxz-HeroMenuContainer{display:none;}}@media(min-width:1008px){.css-n0clxz-HeroMenuContainer{display:none;}}@media(min-width:1280px){.css-n0clxz-HeroMenuContainer{display:block;}}.css-n0clxz-HeroMenuContainer:before{content:"";position:absolute;top:-13px;right:26px;width:0;height:0;border-right:18px solid transparent;border-left:18px solid transparent;border-bottom:13px solid rgba(0,0,0,0.5);}</style><div data-cy="HeroMenuBlock" class="css-n0clxz-HeroMenuContainer eykfukw0"><style data-emotion-css="c200np-HeroMenuList">.css-c200np-HeroMenuList{margin:0;padding:0;list-style:none;cursor:default;}</style><ul class="css-c200np-HeroMenuList eykfukw1"><style data-emotion-css="zof3in-HeroMenuListItem">.css-zof3in-HeroMenuListItem{padding:0;margin:0;}</style><li class="css-zof3in-HeroMenuListItem eykfukw2"><style data-emotion-css="1uf7hk7-HMenuButton">.css-1uf7hk7-HMenuButton{position:relative;font-family:"Reith";background:none;width:100%;cursor:pointer;border:none;text-align:left;word-wrap:none;background-color:auto;padding:0;}.css-1uf7hk7-HMenuButton:focus,.css-1uf7hk7-HMenuButton:focus span{outline:none;color:#ffffff;}.css-1uf7hk7-HMenuButton:hover span{color:#ffffff;}.css-1uf7hk7-HMenuButton:focus-within:not(:active) span{-webkit-text-decoration:underline;text-decoration:underline;}</style><button tabindex="-1" aria-label="Preview video The truth about paranormal belief" class="css-1uf7hk7-HMenuButton e1co4h2n0"><style data-emotion-css="1ki1vqz-IconContainer">.css-1ki1vqz-IconContainer{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);float:left;opacity:1;-webkit-transition:opacity 0.3s ease-out;transition:opacity 0.3s ease-out;}.css-1ki1vqz-IconContainer svg{display:block;height:15px;fill:#0068ff;}</style><div class="css-1ki1vqz-IconContainer e1co4h2n2"><svg viewbox="0 0 32 32" height="20" width="20"><path d="M3 32l26-16L3 0z"></path></svg></div><style data-emotion-css="j9zdgg-HMenuButtonText">.css-j9zdgg-HMenuButtonText{float:left;position:relative;padding:3px 3px 3px 25px;margin:0;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-transform:uppercase;font-size:14px;font-weight:bold;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;color:#ffffff;line-height:19px;background-color:transparent;-webkit-transition:color 0.3s;transition:color 0.3s;}</style><span class="css-j9zdgg-HMenuButtonText e1co4h2n1">The truth about paranormal belief</span></button></li><li class="css-zof3in-HeroMenuListItem eykfukw2"><button tabindex="-1" aria-label="Preview video Why do we enjoy fear?" class="css-1uf7hk7-HMenuButton e1co4h2n0"><style data-emotion-css="1fimt9i-IconContainer">.css-1fimt9i-IconContainer{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);float:left;opacity:0;-webkit-transition:opacity 0.3s ease-out;transition:opacity 0.3s ease-out;}.css-1fimt9i-IconContainer svg{display:block;height:15px;fill:#0068ff;}</style><div class="css-1fimt9i-IconContainer e1co4h2n2"><svg viewbox="0 0 32 32" height="20" width="20"><path d="M3 32l26-16L3 0z"></path></svg></div><style data-emotion-css="1rm311d-HMenuButtonText">.css-1rm311d-HMenuButtonText{float:left;position:relative;padding:3px 3px 3px 25px;margin:0;width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-transform:uppercase;font-size:14px;font-weight:bold;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;color:rgba(255,255,255,.6);line-height:19px;background-color:transparent;-webkit-transition:color 0.3s;transition:color 0.3s;}</style><span class="css-1rm311d-HMenuButtonText e1co4h2n1">Why do we enjoy fear?</span></button></li><li class="css-zof3in-HeroMenuListItem eykfukw2"><button tabindex="-1" aria-label="Preview video The spiritual and physical battle art" class="css-1uf7hk7-HMenuButton e1co4h2n0"><div class="css-1fimt9i-IconContainer e1co4h2n2"><svg viewbox="0 0 32 32" height="20" width="20"><path d="M3 32l26-16L3 0z"></path></svg></div><span class="css-1rm311d-HMenuButtonText e1co4h2n1">The spiritual and physical battle art</span></button></li><li class="css-zof3in-HeroMenuListItem eykfukw2"><button tabindex="-1" aria-label="Preview video A unique time when everything changes" class="css-1uf7hk7-HMenuButton e1co4h2n0"><div class="css-1fimt9i-IconContainer e1co4h2n2"><svg viewbox="0 0 32 32" height="20" width="20"><path d="M3 32l26-16L3 0z"></path></svg></div><span class="css-1rm311d-HMenuButtonText e1co4h2n1">A unique time when everything changes</span></button></li><li class="css-zof3in-HeroMenuListItem eykfukw2"><button tabindex="-1" aria-label="Preview video The Polish town that suddenly appeared" class="css-1uf7hk7-HMenuButton e1co4h2n0"><div class="css-1fimt9i-IconContainer e1co4h2n2"><svg viewbox="0 0 32 32" height="20" width="20"><path d="M3 32l26-16L3 0z"></path></svg></div><span class="css-1rm311d-HMenuButtonText e1co4h2n1">The Polish town that suddenly appeared</span></button></li><li class="css-zof3in-HeroMenuListItem eykfukw2"><button tabindex="-1" aria-label="Preview video Diving deep on a single breath of air" class="css-1uf7hk7-HMenuButton e1co4h2n0"><div class="css-1fimt9i-IconContainer e1co4h2n2"><svg viewbox="0 0 32 32" height="20" width="20"><path d="M3 32l26-16L3 0z"></path></svg></div><span class="css-1rm311d-HMenuButtonText e1co4h2n1">Diving deep on a single breath of air</span></button></li></ul></div></div></div></div></div></section><style data-emotion-css="1q76tyy-SpinContainer">.css-1q76tyy-SpinContainer{width:100%;height:600px;padding:8px;position:relative;z-index:2;}</style><div class="css-1q76tyy-SpinContainer e11nhr1q0"><style data-emotion-css="1jmjw3m-AnimatedLoader">.css-1jmjw3m-AnimatedLoader{width:32px;height:32px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;margin:40px auto;}.css-1jmjw3m-AnimatedLoader svg{fill:#0068ff;}</style><div class="css-1jmjw3m-AnimatedLoader e11nhr1q1"><svg width="32" height="32" viewbox="0 0 32 32"><path d="M29.8 8l-3.5 2A12 12 0 1 1 16 4V0a16 16 0 1 0 13.8 8z"></path></svg></div></div><style data-emotion-css="1q76tyy-SpinContainer">.css-1q76tyy-SpinContainer{width:100%;height:600px;padding:8px;position:relative;z-index:2;}</style><div class="css-1q76tyy-SpinContainer e11nhr1q0"><style data-emotion-css="1jmjw3m-AnimatedLoader">.css-1jmjw3m-AnimatedLoader{width:32px;height:32px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;margin:40px auto;}.css-1jmjw3m-AnimatedLoader svg{fill:#0068ff;}</style><div class="css-1jmjw3m-AnimatedLoader e11nhr1q1"><svg width="32" height="32" viewbox="0 0 32 32"><path d="M29.8 8l-3.5 2A12 12 0 1 1 16 4V0a16 16 0 1 0 13.8 8z"></path></svg></div></div><style data-emotion-css="1q76tyy-SpinContainer">.css-1q76tyy-SpinContainer{width:100%;height:600px;padding:8px;position:relative;z-index:2;}</style><div class="css-1q76tyy-SpinContainer e11nhr1q0"><style data-emotion-css="1jmjw3m-AnimatedLoader">.css-1jmjw3m-AnimatedLoader{width:32px;height:32px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;margin:40px auto;}.css-1jmjw3m-AnimatedLoader svg{fill:#0068ff;}</style><div class="css-1jmjw3m-AnimatedLoader e11nhr1q1"><svg width="32" height="32" viewbox="0 0 32 32"><path d="M29.8 8l-3.5 2A12 12 0 1 1 16 4V0a16 16 0 1 0 13.8 8z"></path></svg></div></div><style data-emotion-css="1q76tyy-SpinContainer">.css-1q76tyy-SpinContainer{width:100%;height:600px;padding:8px;position:relative;z-index:2;}</style><div class="css-1q76tyy-SpinContainer e11nhr1q0"><style data-emotion-css="1jmjw3m-AnimatedLoader">.css-1jmjw3m-AnimatedLoader{width:32px;height:32px;-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite;margin:40px auto;}.css-1jmjw3m-AnimatedLoader svg{fill:#0068ff;}</style><div class="css-1jmjw3m-AnimatedLoader e11nhr1q1"><svg width="32" height="32" viewbox="0 0 32 32"><path d="M29.8 8l-3.5 2A12 12 0 1 1 16 4V0a16 16 0 1 0 13.8 8z"></path></svg></div></div></main></div> <script id="initial-data" type="text/plain" data-json="{"initData":{"items":[{"contributor":{"id":"bbc-reel","logo":"https://ychef.files.bbci.co.uk/$recipe/p06kyjc9.jpg","siteUrl":"https://www.bbc.com/reel/","title":"BBC Reel"},"displayDate":"2021-10-29","duration":376,"image":"https://ychef.files.bbci.co.uk/$recipe/p0b1074n.jpg","linkType":"video","linkUri":"/video/p0b102h2/why-do-so-many-believe-in-the-paranormal-","previewSmpData":{"holdingImageURL":"https://ychef.files.bbci.co.uk/$recipe/p0b10809.jpg","items":[{"duration":11,"kind":"programme","versionID":"p0b107kf"}],"title":"The truth about paranormal belief","embedRights":"allowed"},"rtShortSummary":"<p>In the 21st Century, why do so many people still believe in the paranormal?</p>","rtSummary":"<p>In the 21st Century, why do so many people still believe in the paranormal? Psychology lecturer, Dr Anna Stone explains why ghosts, mythical creatures and other beliefs are not going to vanish from our lives anytime soon. In fact, we need them.</p>\n<p><em>Video by Howard Timberlake</em></p>","shortSummary":"In the 21st Century, why do so many people still believe in the paranormal?","shortTitle":"The truth about paranormal belief","summary":"In the 21st Century, why do so many people still believe in the paranormal? Psychology lecturer, Dr Anna Stone explains why ghosts, mythical creatures and other beliefs are not going to vanish from our lives anytime soon. In fact, we need them.\n \nVideo by Howard Timberlake","title":"Why do so many believe in the paranormal?","topicTitle":"Psychology"},{"contributor":{"id":"bbc-reel","logo":"https://ychef.files.bbci.co.uk/$recipe/p06kyjc9.jpg","siteUrl":"https://www.bbc.com/reel/","title":"BBC Reel"},"displayDate":"2021-10-27","duration":213,"image":"https://ychef.files.bbci.co.uk/$recipe/p0b0ngnv.jpg","linkType":"video","linkUri":"/video/p0b0kms2/what-lies-beneath-our-attraction-to-fear-","previewSmpData":{"holdingImageURL":"https://ychef.files.bbci.co.uk/$recipe/p0b0l3rq.jpg","items":[{"duration":15,"kind":"programme","versionID":"p0b0l3kz"}],"title":"AMBIENT - Why we like to be scared","embedRights":"allowed"},"rtShortSummary":"<p>Human beings are the only species that seek recreational fear.</p>","rtSummary":"<p>Human beings are the only species that seek recreational fear. Our obsession with this particular emotion has resulted in stories, films, books and horror attractions.</p>\n<p>But why do we deliberately scare ourselves in an already scary world? In this episode we explore why humans are fascinated with fear.</p>\n<p><em>Video by Idil Karsit</em></p>","shortSummary":"Human beings are the only species that seek recreational fear.","shortTitle":"Why do we enjoy fear?","summary":"Human beings are the only species that seek recreational fear. Our obsession with this particular emotion has resulted in stories, films, books and horror attractions.\n \nBut why do we deliberately scare ourselves in an already scary world? In this episode we explore why humans are fascinated with fear.\n \nVideo by Idil Karsit","title":"What lies beneath our attraction to fear?","topicTitle":"Psychology"},{"contributor":{"id":"bbc-reel","logo":"https://ychef.files.bbci.co.uk/$recipe/p06kyjc9.jpg","siteUrl":"https://www.bbc.com/reel/","title":"BBC Reel"},"displayDate":"2021-10-26","duration":350,"image":"https://ychef.files.bbci.co.uk/$recipe/p0b0b1p8.jpg","linkType":"video","linkUri":"/video/p0b08yf2/sanatan-shastar-vidya-the-ancient-indian-battlefield-art","previewSmpData":{"holdingImageURL":"https://ychef.files.bbci.co.uk/$recipe/p0b09y68.jpg","items":[{"duration":10,"kind":"programme","versionID":"p0b09wj4"}],"title":"AMBIENT: Sanatan Shastar Vidya: The ancient Indian battlefield art","embedRights":"allowed"},"rtShortSummary":"<p>Sanatan Shastar Vidya is an ancient battlefield art, which has existed in northern India for thousands of years.</p>","rtSummary":"<p>Sanatan Shastar Vidya is an ancient martial art, which has existed in northern India for thousands of years.</p>\n<p>It was adopted by the Sikh warriors in the 17th Century and is considered a spiritual as well as a physical exercise.</p>\n<p>Today a more modernised version is practiced, known as 'Gatka' - which predominantly involves stick fighting and tactical positioning. It is now popular as a sport or sword dance performance art.</p>\n<p><em>Filmmaker: Priyanka Mukherjee</em><br /><em>Executive Producer: Griesham Taan</em></p>\n<p>&nbsp;</p>","shortSummary":"Sanatan Shastar Vidya is an ancient battlefield art, which has existed in northern India for thousands of years.","shortTitle":"The spiritual and physical battle art","summary":"Sanatan Shastar Vidya is an ancient martial art, which has existed in northern India for thousands of years.\n \nIt was adopted by the Sikh warriors in the 17th Century and is considered a spiritual as well as a physical exercise.\n \nToday a more modernised version is practiced, known as 'Gatka' - which predominantly involves stick fighting and tactical positioning. It is now popular as a sport or sword dance performance art.\n \nFilmmaker: Priyanka Mukherjee\nExecutive Producer: Griesham Taan","title":"Sanatan Shastar Vidya: The ancient Indian battlefield art","topicTitle":"Spirituality"},{"contributor":{"id":"bbc-reel","logo":"https://ychef.files.bbci.co.uk/$recipe/p06kyjc9.jpg","siteUrl":"https://www.bbc.com/reel/","title":"BBC Reel"},"displayDate":"2021-10-25","duration":395,"image":"https://ychef.files.bbci.co.uk/$recipe/p0b04s4n.jpg","linkType":"video","linkUri":"/video/p09z2pdd/motherhood-almost-everything-changes-during-this-time-","previewSmpData":{"holdingImageURL":"https://ychef.files.bbci.co.uk/$recipe/p0b0blng.jpg","items":[{"duration":16,"kind":"programme","versionID":"p0b0blgx"}],"title":"ambient - motherhood","embedRights":"allowed"},"rtShortSummary":"<p>There are many hidden forces at play that shape a mother's identity, biology and physical self.</p>","rtSummary":"<p><strong>Part 1: Changing Bodies</strong></p>\n<p>There are many hidden forces at play that shape a new mother's identity, biology and physical self. <a href=\"https://www.melissahogenboom.com/\">Melissa Hogenboom</a>, BBC science journalist and author, explores how bodily change affects our sense of self, and why some women aren't prepared for the changes they undergo during pregnancy.</p>\n<p>See part 2 for: <a href=\"https://www.bbc.com/reel/video/p09z4k1y/the-many-ways-motherhood-changes-the-brain\"><strong>A Changing Brain</strong></a></p>\n<p>--</p>\n<p><em>Follow BBC Reel on <a href=\"https://twitter.com/BBC_Reel\">Twitter</a>, <a href=\"https://www.instagram.com/bbc_reel\">Instagram</a> and <a href=\"https://www.facebook.com/BBCReel\">Facebook</a>.</em></p>","shortSummary":"There are many hidden forces at play that shape a mother's identity, biology and physical self.","shortTitle":"A unique time when everything changes","summary":"Part 1: Changing Bodies\n \nThere are many hidden forces at play that shape a new mother's identity, biology and physical self. Melissa Hogenboom, BBC science journalist and author, explores how bodily change affects our sense of self, and why some women aren't prepared for the changes they undergo during pregnancy.\n \nSee part 2 for: A Changing Brain\n \n--\n \nFollow BBC Reel on Twitter, Instagram and Facebook.","title":"Motherhood: 'Almost everything changes during this time'","topicTitle":"Family"},{"contributor":{"id":"bbc-reel","logo":"https://ychef.files.bbci.co.uk/$recipe/p06kyjc9.jpg","siteUrl":"https://www.bbc.com/reel/","title":"BBC Reel"},"displayDate":"2021-10-21","duration":607,"image":"https://ychef.files.bbci.co.uk/$recipe/p09zj3b6.jpg","linkType":"video","linkUri":"/video/p09zf8v2/the-invisible-soviet-town-that-suddenly-appeared-in-poland","previewSmpData":{"holdingImageURL":"https://ychef.files.bbci.co.uk/$recipe/p09zpyz5.jpg","items":[{"duration":15,"kind":"programme","versionID":"p09zpyt0"}],"title":"AMBIENT - The Polish town that suddenly appeared","embedRights":"allowed"},"rtShortSummary":"<p>At the end of the Cold War, the town of Borne Sulinowo suddenly appeared on the map in northwestern Poland.</p>","rtSummary":"<p>At the end of the Cold War, the town of Borne Sulinowo suddenly appeared on the map in&nbsp;northwestern Poland.</p>\n<p>One of the most secretive and important Soviet military bases in the Eastern bloc, it was outside of Polish control during the Cold War. Officially, it did not exist. First established by the Nazis, then taken over by the Soviets and rumoured to have hidden nuclear warheads, now Borne Sulinowo is home to over 5,000 people.</p>\n<p><em>Video by Adrian Hartrick and Dominika Ożyńska</em></p>\n<p><em><em>Follow BBC Reel on&nbsp;<a href=\"https://twitter.com/BBC_Reel\">Twitter</a>,&nbsp;<a href=\"https://www.instagram.com/bbc_reel/?hl=en\">Instagram</a>&nbsp;and&nbsp;<a href=\"https://www.facebook.com/BBCReel\">Facebook</a></em>.</em></p>","shortSummary":"At the end of the Cold War, the town of Borne Sulinowo suddenly appeared on the map in northwestern Poland.","shortTitle":"The Polish town that suddenly appeared","summary":"At the end of the Cold War, the town of Borne Sulinowo suddenly appeared on the map in northwestern Poland.\n \nOne of the most secretive and important Soviet military bases in the Eastern bloc, it was outside of Polish control during the Cold War. Officially, it did not exist. First established by the Nazis, then taken over by the Soviets and rumoured to have hidden nuclear warheads, now Borne Sulinowo is home to over 5,000 people.\n \nVideo by Adrian Hartrick and Dominika Ożyńska\n \nFollow BBC Reel on Twitter, Instagram and Facebook.","title":"The 'invisible' Soviet town that suddenly appeared in Poland","topicTitle":"History"},{"contributor":{"id":"bbc-reel","logo":"https://ychef.files.bbci.co.uk/$recipe/p06kyjc9.jpg","siteUrl":"https://www.bbc.com/reel/","title":"BBC Reel"},"displayDate":"2021-10-20","duration":303,"image":"https://ychef.files.bbci.co.uk/$recipe/p09z77ly.jpg","linkType":"video","linkUri":"/video/p09ynrc8/freediving-the-science-of-holding-your-breath","previewSmpData":{"holdingImageURL":"https://ychef.files.bbci.co.uk/$recipe/p09yp3v8.jpg","items":[{"duration":10,"kind":"programme","versionID":"p09ynv1y"}],"title":"AMBIENT: Freediving","embedRights":"allowed"},"rtShortSummary":"<p>How do humans dive hundreds of feet deep on a single breath of air?</p>","rtSummary":"<p>The tradition of freediving is as ancient as the world itself. People living near the sea have always been spearfishing, collecting pearls, seaweed, starfish, and other treasures.</p>\n<p>Today, competitive athletes push the limits of the human body by diving hundreds of feet deep on a single breath of air.</p>\n<p><em>Video by Olga Khrustaleva</em><br /><em>Commissioning Editor: Griesham Taan</em></p>","shortSummary":"How do humans dive hundreds of feet deep on a single breath of air?","shortTitle":"Diving deep on a single breath of air","summary":"The tradition of freediving is as ancient as the world itself. People living near the sea have always been spearfishing, collecting pearls, seaweed, starfish, and other treasures.\n \nToday, competitive athletes push the limits of the human body by diving hundreds of feet deep on a single breath of air.\n \nVideo by Olga Khrustaleva\nCommissioning Editor: Griesham Taan","title":"Freediving: The science of holding your breath","topicTitle":"Fitness"}],"offset":0,"total":6},"uri":"/","isUK":false,"api":"https://reelapi-ugas-a2.gnl-live.bbcverticals.com","breakpoint":0,"showFestival":true,"test":false}"></script> <script src="//web.archive.org/web/20211103091808js_/https://emp.bbci.co.uk/emp/bump-4/bump-4.js"></script> <script src="https://web.archive.org/web/20211103091808js_/https://static-web-assets.gnl-common.bbcverticals.com/reel/runtime~main.0a6e9c2b5291400b8488.js"></script> <script src="https://web.archive.org/web/20211103091808js_/https://static-web-assets.gnl-common.bbcverticals.com/reel/vendors~main.81025ec9bee39739a1a3.js"></script> <script src="https://web.archive.org/web/20211103091808js_/https://static-web-assets.gnl-common.bbcverticals.com/reel/main.1843126224828cef44e3.js"></script> <script type="text/javascript"> (function(){ function loadChartbeat() { window._sf_endpt=(new Date()).getTime(); var e = document.createElement("script"); e.setAttribute("language", "javascript"); e.setAttribute("type", "text/javascript"); e.setAttribute('src', '//web.archive.org/web/20211103091808/https://static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); } var oldonload = window.onload; window.onload = (typeof window.onload != "function") ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; }()); </script> </div> <div id="orb-footer" class="orb-footer" dir="ltr"> <div id="navp-orb-footer-promo"></div><aside role="complementary"><div id="orb-aside" class="orb-nav-sec b-r b-g-p"><div class="orb-footer-inner" role="navigation" aria-label="BBC"><h2 class="orb-footer-lead">Explore the BBC</h2><div class="orb-footer-primary-links"><ul><li class="orb-nav-home"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/">Home</a></li><li class="orb-nav-news"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/news">News</a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/sport">Sport</a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/weather">Weather</a></li><li class="orb-nav-iplayer"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/iplayer">iPlayer</a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/sounds">Sounds</a></li><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-food"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/food">Food</a></li><li class="orb-nav-bitesize"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-arts"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/arts">Arts</a></li><li class="orb-nav-taster"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/taster">Taster</a></li><li class="orb-nav-local"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/news/localnews">Local</a></li><li class="orb-nav-three"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/bbcthree">Three</a></li></ul></div></div></div></aside><footer role="contentinfo"><div id="orb-contentinfo" class="orb-nav-sec b-r b-g-p"><script>window.orb = window.orb || {}; window.orb.worldwideFooterlinks = '<li class="orb-footer-ads"><a href="https://web.archive.org/web/20211103091808/https://www.bbcglobalnews.com/">Advertise with us<' + '/a><' + '/li><li class="orb-footer-adchoices"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/">AdChoices / Do Not Sell My Info<' + '/a><' + '/li>';</script><div class="orb-footer-inner"><div><ul><li class="orb-footer-terms"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/usingthebbc/terms/">Terms of Use</a></li><li class="orb-footer-about"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/aboutthebbc">About the BBC</a></li><li class="orb-footer-privacy"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/usingthebbc/privacy/">Privacy Policy</a></li><li class="orb-footer-cookies"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/usingthebbc/cookies/">Cookies</a></li><li class="orb-footer-accessibility"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li><li class="orb-footer-parental"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/guidance">Parental Guidance</a></li><li class="orb-footer-contact"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/contact">Contact the BBC</a></li><li class="orb-footer-newsletter"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/bbcnewsletter">Get Personalised Newsletters</a></li></ul><small><em class="orb-hilight">Copyright © 2021 BBC.</em> The BBC is not responsible for the content of external sites. <span class="orb-footer-links"><a href="https://web.archive.org/web/20211103091808/https://www.bbc.co.uk/editorialguidelines/guidance/feeds-and-links" class="orb-hilight">Read about our approach to external linking.</a></span></small></div></div></div></footer></div><script type="importmap">{"imports":{"orbit-drawer":"https://web.archive.org/web/20211103091808/https://static.files.bbci.co.uk/orbit/0b0a71ff229422fc63da1ec4b9726123/js/drawer-api.bundle.js","bbccookies":"https://web.archive.org/web/20211103091808/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-library.module.js"}}</script><script type="text/javascript" src="https://web.archive.org/web/20211103091808js_/https://static.files.bbci.co.uk/orbit/0b0a71ff229422fc63da1ec4b9726123/js/redirect.bundle.js" async=""></script><script type="text/javascript" src="https://web.archive.org/web/20211103091808js_/https://static.files.bbci.co.uk/orbit/0b0a71ff229422fc63da1ec4b9726123/js/performance.bundle.js" data-release="3.0.0-1719.65af99a0" data-ux="orb" async=""></script><script id="orb-js-script" data-assetpath="https://static.files.bbci.co.uk/orbit/0b0a71ff229422fc63da1ec4b9726123/" src="https://web.archive.org/web/20211103091808js_/https://static.files.bbci.co.uk/orbit/0b0a71ff229422fc63da1ec4b9726123/js/orb.min.js"></script><script type="module" src="https://web.archive.org/web/20211103091808jm_/https://static.files.bbci.co.uk/orbit/0b0a71ff229422fc63da1ec4b9726123/js/orbit.js" async=""></script><script nomodule="" type="text/javascript" src="https://web.archive.org/web/20211103091808js_/https://static.files.bbci.co.uk/orbit/0b0a71ff229422fc63da1ec4b9726123/js/legacyOrbit.js" async=""></script> <script type="text/javascript">require.config({ paths: { "mybbc/templates": '//web.archive.org/web/20211103091808/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/templates', "mybbc/notifications": '//web.archive.org/web/20211103091808/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/js' } }); require(['mybbc/notifications/NotificationsMain', 'idcta/idcta-1'], function (NotificationsMain, idcta) { var loadNotifications = function (isUK) { if (isUK) { window.bbcpage.loadCSS('//web.archive.org/web/20211103091808/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/css/main.min.css').then(function() { NotificationsMain.run(idcta, '//web.archive.org/web/20211103091808/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/'); }); } }; window.bbcuser.isUKCombined().then(function(isUK) { loadNotifications(isUK); }); });</script> <script type="module">if (window.bbcuser && window.bbcuser.isUKCombined) { bbcuser.isUKCombined().then(function (isUK) { if (isUK) { const isOrbUx = !!document.querySelector('.orb-nav-pri-container'); if (isOrbUx) { const script = document.createElement('script'); script.src = 'https://web.archive.org/web/20211103091808/https://nav.files.bbci.co.uk/searchbox/eeaabba0195c5483bf5b00915e258921//js/old-search-suggest.js'; script.async = true; script.setAttribute('data-static-prefix', 'https://web.archive.org/web/20211103091808/https://nav.files.bbci.co.uk/searchbox/eeaabba0195c5483bf5b00915e258921/'); script.setAttribute('data-variant', 'default'); document.head.appendChild(script); } else { import('https://web.archive.org/web/20211103091808/https://nav.files.bbci.co.uk/searchbox/eeaabba0195c5483bf5b00915e258921//js/search-suggest.js').then(drawer => { drawer.setupSearchDrawer({ searchboxAppStaticPrefix: 'https://web.archive.org/web/20211103091808/https://nav.files.bbci.co.uk/searchbox/eeaabba0195c5483bf5b00915e258921/', variant: 'default', }); }); } } }); }</script> <script type="text/javascript" src="https://web.archive.org/web/20211103091808js_/https://nav.files.bbci.co.uk/navpromo/34f98a4c8573fabed16dc8acea28feb8/js/footerpromo.js" data-base="https://navpromo.api.bbci.co.uk" data-variant="" async=""></script> <script type="text/javascript">window.COOKIES_STATIC_HOST="https://web.archive.org/web/20211103091808/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-prompt/"</script><script src="https://web.archive.org/web/20211103091808js_/https://static.files.bbci.co.uk/cookies/6868f40b6841deedfcf9895de775e1ab/cookie-banner/cookie-banners.bundle.js" async=""></script> <script src="https://web.archive.org/web/20211103091808js_/https://nav.files.bbci.co.uk//user-activity-helper/5a08eeec4b85ac14cd5e09e2fab845eb/js/detectview.bundle.js" async=""></script><script type="text/javascript">"use strict";window.__reverb.__reverbLoadedPromise.then(function(e){return e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Failed to load reverb. No event sent")});</script><noscript><img src="https://web.archive.org/web/20211103091808im_/https://sb.scorecardresearch.com/p?c1=2&c2=17986528&cs_ucfr=0&cv=2.0&cj=1"></noscript> </body> </html><!-- FILE ARCHIVED ON 09:18:08 Nov 03, 2021 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 22:37:36 Feb 16, 2025. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.761 exclusion.robots: 0.032 exclusion.robots.policy: 0.02 esindex: 0.011 cdx.remote: 11.566 LoadShardBlock: 662.826 (6) PetaboxLoader3.datanode: 687.052 (7) load_resource: 333.199 PetaboxLoader3.resolve: 85.229 -->