
    (async function main() {
      if(window.VaixWidgetsLoaded) {
        return;
      }

      window.VaixWidgetsLoaded = true;

      const jsFiles = [
        "https://betcity-widgets.vaix.ai/assets/index-Cr4f4wh3.js"
      ];

      const cssFiles = [
        
      ];

      function loadScript(url) {
        const el = document.createElement('script');
        el.setAttribute('type', 'text/javascript');
        el.setAttribute('src', url);
        document.body.appendChild(el);

        return new Promise(resolve => {
          el.onload = () => { resolve(true) }
        });
      }

      function loadStyle(url) {
        const el = document.createElement('link');

        el.setAttribute('href', url);
        el.setAttribute('type', 'text/css');
        el.setAttribute('rel', 'stylesheet');
        document.body.appendChild(el);
      }

      await Promise.all([
        jsFiles.map(f => loadScript(f))
      ]);

      cssFiles.forEach(f => loadStyle(f));
    })();
  