{"id":712,"date":"2025-12-10T01:49:11","date_gmt":"2025-12-10T01:49:11","guid":{"rendered":"https:\/\/thefinancialincome.com\/?p=712"},"modified":"2025-12-10T01:49:38","modified_gmt":"2025-12-10T01:49:38","slug":"es-ln-00101","status":"publish","type":"post","link":"https:\/\/thefinancialincome.com\/at\/es-ln-00101\/","title":{"rendered":"ES LN &#8211; 00101"},"content":{"rendered":"<div class=\"wp-block-lazyblock-quiz-builder lazyblock-quiz-builder-2boMMY\">\n<script type=\"module\">\n  function waitFor(conditionFunction) {\n    const poll = resolve => {\n      if(conditionFunction()) resolve();\n      else setTimeout(_ => poll(resolve), 400);\n    };\n    return new Promise(poll);\n  }\n\n  import { Application, Controller } from \"\/wp-content\/themes\/twentytwentyone\/assets\/js\/stimulus.min.js\";\n  import { Typos } from \"\/wp-content\/themes\/twentytwentyone\/assets\/js\/typos.js\";  \n  import { phoneNumberMask, writeEmailOptions } from \"\/wp-content\/themes\/twentytwentyone\/assets\/js\/commons.js\";\n  \n  let Stimulus = Application.start();\n\n  Stimulus.register(\"quiz\", class extends Controller {  \n\n    static get targets() {\n        return [ \"quiz\", \"body\", \"block\", \"footer\", \"pane\", \"email\", \"name\", \"phone\", \"phoneField\", \"checkbox\", \"overlay\", \"submit\", \"unloader\", \"loader\", \"tooltip\", \"tip\", \"emailOptions\", \"formBox\", \"formData\", \"formMessage\", \"formBoxBackGround\", \"formTitle\", \"soi\", \"successMessage\", \"emailDiv\", \"phoneDiv\", \"nameDiv\", \"soiDiv\", \"skipper\", \"trigger\", \"link\", \"cta\", \"footnote\" ]\n    }\n\n    static get values() {\n      return {\n        showhighlight: Boolean\n      };\n    }\n\n    replaceAll(string, search, replace) {\n      return string.split(search).join(replace);\n    }\n      \n    initialize() {\n      this.index = 0;\n      this.formViews = 0;\n      this.mode = 'email';\n\n      this.showContentForm = this.getViewEmailForm() || this.getViewPhoneForm() || this.getViewPushForm();\n      if (this.showContentForm) {\n        this.showedHighlight = false;\n        this.inProcessAnimate = false;\n      }\n\n      this.conditions = [];\n\n      this.country = \"es\";\n      this.phoneMaskOptions = {\n        'br': {\"areaCod\": \"+55\", \"areaCodSpace\": 2, \"dddSpace\": 2, \"prefixoSpace\": 4, \"prefixoSpace2\": 5, \"sufixoSpace\": 4, \"placeHolder\": \"(XX) XXXX-XXXX\" },\n        'us': {\"areaCod\": \"+1\", \"areaCodSpace\": 1, \"dddSpace\": 3, \"prefixoSpace\": 3, \"sufixoSpace\": 4, \"placeHolder\": \"(XXX) XXX-XXXX\" },\n        'ca': {\"areaCod\": \"+1\", \"areaCodSpace\": 1, \"dddSpace\": 3, \"prefixoSpace\": 3, \"sufixoSpace\": 4, \"placeHolder\": \"(XXX) XXX-XXXX\" },\n        'pt': {\"areaCod\": \"+351\", \"areaCodSpace\": 3, \"dddSpace\": 3, \"prefixoSpace\": 3, \"sufixoSpace\": 2, \"placeHolder\": \"XXX XXX XXX\" },      \n        'es': {\"areaCod\": \"+34\", \"areaCodSpace\": 2, \"dddSpace\": 3, \"prefixoSpace\": 3, \"sufixoSpace\": 2, \"placeHolder\": \"XXX XXX XXX\" },\n        'mx': {\"areaCod\": \"+52\", \"areaCodSpace\": 2, \"dddSpace\": 3, \"prefixoSpace\": 3, \"sufixoSpace\": 4, \"placeHolder\": \"XXX XXX XXXX\" },\n        'ar': {\"areaCod\": \"+54\", \"areaCodSpace\": 2, \"dddSpace\": 2, \"prefixoSpace\": 4, \"sufixoSpace\": 4, \"placeHolder\": \"(XX) XXXX-XXXX\" },\n        'co': {\"areaCod\": \"+57\", \"areaCodSpace\": 2, \"dddSpace\": 3, \"prefixoSpace\": 3, \"sufixoSpace\": 4, \"placeHolder\": \"XXX XXX XXXX\" },\n        'za': {\"areaCod\": \"+27\", \"areaCodSpace\": 2, \"dddSpace\": 2, \"prefixoSpace\": 3, \"sufixoSpace\": 4, \"placeHolder\": \"(XX) XXX-XXXX\" },\n        'de': {\"areaCod\": \"+49\", \"areaCodSpace\": 99, \"dddSpace\": 99, \"prefixoSpace\": 99, \"prefixoSpace2\": 99, \"sufixoSpace\": 99, \"placeHolder\": \"\" },\n        'fr': {\"areaCod\": \"+33\", \"areaCodSpace\": 99, \"dddSpace\": 99, \"prefixoSpace\": 99, \"prefixoSpace2\": 99, \"sufixoSpace\": 99, \"placeHolder\": \"\" },\n        'gb': {\"areaCod\": \"+44\", \"areaCodSpace\": 99, \"dddSpace\": 99, \"prefixoSpace\": 99, \"prefixoSpace2\": 99, \"sufixoSpace\": 99, \"placeHolder\": \"\" },\n        'it': {\"areaCod\": \"+39\", \"areaCodSpace\": 99, \"dddSpace\": 99, \"prefixoSpace\": 99, \"prefixoSpace2\": 99, \"sufixoSpace\": 99, \"placeHolder\": \"\" }\n      };\n      this.phoneMaskOption = (this.country in this.phoneMaskOptions) ? this.phoneMaskOptions[this.country] : this.phoneMaskOptions['br'];  \n      this.phoneTarget.placeholder = this.phoneMaskOption.placeHolder;\n\n      this.searchParams = new URLSearchParams(window.location.search);\n      this.quiz = this.replaceAll(window.location.pathname, '\/', '');\n      this.slug = this.quiz.split('-').slice(0, this.quiz.split('-').length - 1).join('');\n      this.hostname = \"thefinancialincome.com\";\n\n      let splitOptions = ['a', 'b', 'c', 'd'];\n      this.splitTag = splitOptions[Math.floor(Math.random() * splitOptions.length)];\n\n      this.tags = 'quiz='+this.quiz+',host='+this.hostname+',slug='+this.slug+',split='+this.splitTag;\n\n      if (this.country !== '') {\n        this.tags += `,country=${this.country}`;\n      }\n\n      this.autocompleted = false;\n      this.emsAccounts = [\n        {\n        'weight': 1.0,\n        'name': 'es-cc.thefinancialincome.com'\n      }\n];\n\n      this.addPhone = true;\n      this.showForm = true;;\n      this.skipForm = false;;\n      this.showFormFirst = false;;\n      this.triggerInterstitial = false;;\n      this.paneTargetsLength = this.paneTargets.length;\n\n      if (!this.getViewEmailForm() && !this.getViewPhoneForm() && this.showFormFirst && this.paneTargetsLength > 1) {\n        this.skip();\n      }\n\n      if (!this.getViewAnyForm() && this.showFormFirst && this.paneTargetsLength > 1) {\n        this.skip();\n      }\n\n      if (!this.getViewEmailForm() && !this.getViewPhoneForm() && !this.showFormFirst) {\n        this.paneTargetsLength = this.skipForm ? this.paneTargetsLength : this.paneTargetsLength - 1;\n        this.skipForm = true;\n      }\n\n      if (!this.getViewAnyForm() && !this.showFormFirst) {\n        this.paneTargetsLength = this.skipForm ? this.paneTargetsLength : this.paneTargetsLength - 1;\n        this.skipForm = true;\n      }\n\n      this.typos = Typos;\n      for (var paramKey of this.searchParams.keys()) { \n        this.tags += paramKey.includes('utm_') ? `,${paramKey}=${this.searchParams.get(paramKey)}` : '';\n      }\n\n      if (this.paneTargetsLength === 1 || this.showFormFirst) {\n        this.insertPixels();\n        this.chooseEmsAccount();\n        this.chooseConditions();\n        this.getAnalyticsData();\n      }        \n\n      !this.skipForm || this.showhighlightValue ? this.manipulateForm() : '';\n\n      if (this.showFormFirst) {\n        this.blockTarget.classList.add(\"animate-fade-in\");\n        this.blockTarget.classList.remove(\"hidden\");\n\n        this.enable();\n      }\n    }\n\n    manipulateForm() {\n      if (this.getViewEmailForm()) {\n        this.mode = 'email';\n\n        !this.addPhone ? this.phoneDivTarget.classList.add(\"hidden\") : '';\n      } else if (this.getViewPhoneForm()) {\n        this.mode = 'phone';\n\n        this.emailDivTarget.classList.add(\"hidden\");\n      } else if (this.getViewPushForm()) {\n        this.mode = 'push';\n\n        this.phoneDivTarget.classList.add(\"hidden\");\n        this.emailDivTarget.classList.add(\"hidden\");\n        this.nameDivTarget.classList.add(\"hidden\");\n        this.soiDivTarget.classList.add(\"hidden\");\n\n        this.enable();\n      }\n    }\n\n    connect() {\n      if (this.showhighlightValue && this.showContentForm && this.getFormViews() <= 1) {\n        if (this.emsAccount === \"\") {\n          const endpoint = \"\";\n          if (endpoint !== \"\") {\n            fetch(endpoint).then(response => response.json()).then(response => {\n              if ('form-title' in response['content']) {\n                this.emsAccounts = response['content']['accounts'];\n                this.chooseEmsAccount();\n\n                this.country = response['content']['country'].toLowerCase();\n                this.tags += `,country=${this.country}`;\n                this.phoneMaskOption = (this.country in this.phoneMaskOptions) ? this.phoneMaskOptions[this.country] : this.phoneMaskOptions['br'];  \n                this.phoneTarget.placeholder = this.phoneMaskOption.placeHolder;\n\n                this.formTitleTarget.innerHTML = response['content']['form-title'];\t\n                this.soiTarget.innerHTML = response['content']['soi'];\t\n                this.submitTarget.innerHTML = response['content']['cta'];\t\n                this.successMessageTarget.innerHTML = response['content']['success-message'];\t\n\n                this.quizTarget.classList.remove('hidden');\n                this.observerScrollEmailForm();\n                this.formMessageTarget.style.height = this.paneTarget.offsetHeight + 'px';\n                this.formMessageTarget.children[0].style.marginTop = 0.4 * this.paneTarget.offsetHeight + 'px';\n\n                if (false && 'success-cta' in response['content'] && 'link' in response['content']) {\n                  this.linkTarget.classList.remove('hidden');\n                  this.linkTarget.setAttribute('href', response['content']['link']);\n                  this.linkTarget.setAttribute('data-href', 'secondary_link' in response['content'] ? response['content']['secondary_link'] : response['content']['link']);\n\n                  this.ctaTarget.innerHTML = response['content']['success-cta'];\n\n                  if (!response['content']['link'].includes('\/\/thefinancialincome.com')) {\n                    this.footnoteTarget.classList.remove('hidden');\n                  }\n\n                  this.formMessageTarget.children[0].style.marginTop = 0.25 * this.paneTarget.offsetHeight + 'px';\n\n                  waitFor(_ => (document.cookie.includes(\"avInterstitialViewed=true\")))\n                    .then(_ => {\n                      [this.linkTarget].forEach(linkTarget => {\n                        if (linkTarget.getAttribute('href') !== linkTarget.getAttribute('data-href')) {\n                          linkTarget.setAttribute('href', linkTarget.getAttribute('data-href'));\n\n                          if (!linkTarget.getAttribute('data-href').includes(\"thefinancialincome.com\")) {\n                            linkTarget.setAttribute('rel', 'nofollow');\n                          }\n                          if (!linkTarget.getAttribute('data-href').includes('\/\/thefinancialincome.com')) {\n                            this.footnoteTarget.classList.remove('hidden');\n                          }\n                        }\n                        linkTarget.removeAttribute('data-href');\n                      })\n                    });\n                }\n                \n                if (typeof window.wildcardController === 'object') {\n                  window.wildcardController.replaceWildcards();\n                } \n              };\n            }).catch((error) => {\n              console.error('Error:', error);\n            });\n          }\n        } else {\n          this.quizTarget.classList.remove('hidden');\n          this.observerScrollEmailForm();\n          this.formMessageTarget.style.height = this.paneTarget.offsetHeight + 'px';\n          this.formMessageTarget.children[0].style.marginTop = 0.4 * this.paneTarget.offsetHeight + 'px'; \n        }    \n      }\n    }\n\n    readTextFile(file, callback) {\n      var rawFile = new XMLHttpRequest();\n      rawFile.overrideMimeType(\"application\/json\");\n      rawFile.open(\"GET\", file, true);\n      rawFile.onreadystatechange = () => {\n          if (rawFile.readyState === 4 && rawFile.status == \"200\") {\n              callback(rawFile.responseText);\n          }\n      };\n      rawFile.send(null);\n    }\n\n    next(event) {\n      this.index++;\n      this.showCurrentPane(event);\n    }\n      \n    insertRudderPixel() {\n      if (typeof window.rudderanalytics !== 'object') {\n        var e=window.rudderanalytics=window.rudderanalytics||[];\n        e.methods=[\"load\",\"page\",\"track\",\"identify\",\"alias\",\"group\",\"ready\",\"reset\",\"getAnonymousId\",\"setAnonymousId\"],\n        e.factory=function(t){\n          return function(){\n            var r=Array.prototype.slice.call(arguments);\n            return r.unshift(t),\n            e.push(r),e\n          }\n        };\n        for(var t=0;t<e.methods.length;t++){\n          var r=e.methods[t];\n          e[r]=e.factory(r)\n        }\n        e.loadJS=function(e,t){\n          var r=document.createElement(\"script\");\n          r.type=\"text\/javascript\",r.async=!0,r.src=\"https:\/\/cdn.rudderlabs.com\/v2\/rudder-analytics.min.js?transport=beacon\";\n          var a=document.getElementsByTagName(\"script\")[0];a.parentNode.insertBefore(r,a)\n        },\n        e.loadJS(),\n        e.load('1qlJXFMeYUmTyucX6KUVQVEjBBM', 'https:\/\/rudder.adtechpanda.com')\n      };\n    }\n\n    insertFacebookPixel() {\n      !function(f,b,e,v,n,t,s){\n        if(f.fbq)return;\n        n=f.fbq=function(){\n          n.callMethod?n.callMethod.apply(n,arguments):n.queue.push(arguments)\n        };\n        if(!f._fbq)f._fbq=n;\n        n.push=n;\n        n.loaded=!0;\n        n.version='2.0';\n        n.queue=[];\n        t=b.createElement(e);\n        t.async=!0;\n        t.src=v;\n        s=b.getElementsByTagName(e)[0];\n        s.parentNode.insertBefore(t,s)\n      }(window, document,'script','https:\/\/connect.facebook.net\/en_US\/fbevents.js');\n      fbq('set', 'autoConfig', false, \"\"); \n      fbq('init', \"\");\n      fbq('track', 'PageView');\n    }\n\n    insertGooglePixel() {\n      window.dataLayer = window.dataLayer || [];\n      function gtag(){dataLayer.push(arguments);};\n      gtag('js', new Date());\n      gtag('config', \"AW-17668209646\", {'allow_enhanced_conversions': true});\n      window.gtag = gtag;\n\n      let gogleScript = document.createElement(\"script\");\n      gogleScript.type  = \"text\/javascript\";\n      gogleScript.setAttribute('async', 'async');\n      gogleScript.src = \"https:\/\/www.googletagmanager.com\/gtag\/js?id=AW-17668209646\";      \n      this.quizTarget.appendChild(gogleScript);\n    }\n\n    insertTiktokPixel() {\n      !function (w, d, t) {\n        w.TiktokAnalyticsObject=t;var ttq=w[t]=w[t]||[];ttq.methods=[\"page\",\"track\",\"identify\",\"instances\",\"debug\",\"on\",\"off\",\"once\",\"ready\",\"alias\",\"group\",\"enableCookie\",\"disableCookie\"],ttq.setAndDefer=function(t,e){t[e]=function(){t.push([e].concat(Array.prototype.slice.call(arguments,0)))}};for(var i=0;i<ttq.methods.length;i++)ttq.setAndDefer(ttq,ttq.methods[i]);ttq.instance=function(t){for(var e=ttq._i[t]||[],n=0;n<ttq.methods.length;n++)ttq.setAndDefer(e,ttq.methods[n]);return e},ttq.load=function(e,n){var i=\"https:\/\/analytics.tiktok.com\/i18n\/pixel\/events.js\";ttq._i=ttq._i||{},ttq._i[e]=[],ttq._i[e]._u=i,ttq._t=ttq._t||{},ttq._t[e]=+new Date,ttq._o=ttq._o||{},ttq._o[e]=n||{};var o=document.createElement(\"script\");o.type=\"text\/javascript\",o.async=!0,o.src=i+\"?sdkid=\"+e+\"&#038;lib=\"+t;var a=document.getElementsByTagName(\"script\")[0];a.parentNode.insertBefore(o,a)};\n        ttq.load(\"\");\n        ttq.page();\n      }(window, document, 'ttq');\n    }\n\n    insertTaboolaPixel() {\n      window._tfa = window._tfa || [];\n      window._tfa.push({notify: 'event', name: 'page_view', id: Number(\"\")});\n      !function (t, f, a, x) {\n        if (!document.getElementById(x)) {\n          t.async = 1;t.src = a;t.id=x;f.parentNode.insertBefore(t, f);\n        }\n      }(document.createElement('script'),\n      document.getElementsByTagName('script')[0],\n      \"\/\/cdn.taboola.com\/libtrc\/unip\/\/tfa.js\",\n      'tb_tfa_script');\n    }\n\n    insertMedianetPixel() {\n      !function(a, b, c, d, e, f, g)\n      {if(a.ctrk)return;e=a.ctrk=function(){e.runner?\n      e.runner.apply(e,arguments):e.q.push(arguments)};\n      e.q=[];f=b.createElement(c);f.async=true;\n      f.src=d+'?d='+a.location.hostname;g=b.getElementsByTagName(c)[0];\n      g.parentNode.insertBefore(f,g);}\n      (window, document,'script','https:\/\/c.pm-srv.co\/v1\/analytics.js');\n      ctrk('boot', \"\");\n      ctrk('record', 'page-land', {dnt: false});\n    }\n\n    insertPixels() {\n      this.insertRudderPixel();\n      this.insertFacebookPixel();\n      this.insertGooglePixel();\n                      }\n\n    chooseFrom(weights, results) {\n      let num = Math.random();\n      let s = 0;\n      let lastIndex = weights.length - 1;\n\n      for (var i = 0; i < lastIndex; ++i) {\n        s += weights[i];\n        if (num < s) {\n          return results[i];\n        }\n      }\n      return results[lastIndex];\n    }\n\n    chooseEmsAccount() {\n      let emsAccount = this.chooseFrom(\n        this.emsAccounts.map(account => account['weight']),\n        this.emsAccounts\n      );\n\n      this.emsAccount = emsAccount['name'];\n      this.emsList = emsAccount['list'];\n    };\n\n    prefetchLandingPages() {\n      let link = document.createElement('link');\n\n      \/*let fbclid = this.searchParams.get('fbclid') ? '?fbclid=' + this.searchParams.get('fbclid') : '';\n      let gclid = this.searchParams.get('gclid') ? '?gclid=' + this.searchParams.get('gclid') : '';*\/\n\n      for (const condition of this.conditions) {\n        let landingUrl = new URL(condition['link']);\n        let landingPathname = landingUrl.pathname.split('\/').filter(elem => elem).join('-');\n\n        let conditionLink = `${condition['link']}`;\n        if (!landingUrl.search) {\n          conditionLink += window.location.search;\n        }\n\n        if (document.location.pathname[0] === '\/' && document.location.pathname[3] === '\/' && !conditionLink.includes(document.location.pathname.substr(0,3))) {\n          conditionLink = conditionLink.replace(document.location.hostname, document.location.hostname + document.location.pathname.substr(0,3));\n        }\n        link = document.createElement('link');\n        link.rel = 'prefetch';\n        link.href = conditionLink;\n        this.quizTarget.appendChild(link);\n\n        link = document.createElement('link');\n        link.rel = 'prerender';\n        link.href = conditionLink;\n        this.quizTarget.appendChild(link);\n      } \n    }\n\n    chooseConditions() {\n      this.conditions = [\n    {\n      'answers': [\n        'answer=Hombre'\n      ],\n      'links': {\n        'https:\/\/thefinancialincome.com\/cow-long-es-ln-002\/': 1.0,\n      }\n    },\n    {\n      'answers': [\n        'answer=Mujer'\n      ],\n      'links': {\n        'https:\/\/thefinancialincome.com\/cow-long-es-ln-002\/': 1.0,\n      }\n    },\n    {\n      'answers': [\n        'answer=Intersexual'\n      ],\n      'links': {\n        'https:\/\/thefinancialincome.com\/cow-long-es-ln-002\/': 1.0,\n      }\n    }\n];\n\n      if (typeof window.wildcardController !== 'undefined') {\n        this.conditions = this.conditions.map(condition => ({\n          'answers': condition['answers'],\n          'link': window.wildcardController.replace(\n            this.chooseFrom(\n              Object.values(condition['links']),\n              Object.keys(condition['links'])\n            )\n          )\n        }));\n      } else {\n        this.conditions = this.conditions.map(condition => ({\n          'answers': condition['answers'],\n          'link': this.chooseFrom(\n            Object.values(condition['links']),\n            Object.keys(condition['links'])\n          )\n        }));\n      }\n\n      this.prefetchLandingPages();\n    }\n\n      \n\n    showCurrentPane(event) {\n      if (this.skipForm) {\n        this.tags += `,answer=${event.target.innerText}`;\n      }\n\n      if (this.showFormFirst && this.index > 1) {\n        this.tags += `,answer=${event.target.innerText}`;\n      }\n\n      if (!this.showFormFirst && this.index <= this.paneTargetsLength - 1) {\n        this.tags += `,answer=${event.target.innerText}`;\n      }\n\n      if (this.index > this.paneTargetsLength - 1) {\n        this.submit(event);\n      } else {\n        this.paneTargets.forEach((element, index) => {\n          if (index != this.index) {\n            element.classList.add(\"hidden\");\n          } else {\n            element.classList.remove(\"hidden\");\n          }\n        })\n      }\n\n      if (!this.showFormFirst && this.index === 1 && this.paneTargetsLength > 1) {\n        this.insertPixels();\n        this.chooseEmsAccount();\n        this.chooseConditions();\n        this.getAnalyticsData();\n      }\n\n      if (this.showFormFirst && this.index === 1 && this.isValid()) {\n        this.sendForm(false);\n      }\n\n      if (this.index === this.paneTargetsLength - 1) {\n        this.enable();\n      }\n\n    }\n\n    match(value, regexp) {\n      const validationRegexp = (regexp instanceof RegExp ? regexp : (new RegExp(regexp)));\n      return validationRegexp.test(value);\n    }\n\n    emptyInput(target) {\n      target.classList.remove('border-red-700');\n      target.classList.remove('focus:ring-red-200');\n      target.classList.remove('border-green-700');\n      target.classList.remove('focus:ring-green-200');\n\n      target.classList.add('border-gray-300');\n      target.classList.add('focus:ring-gray-200');\n    }\n\n    goodInput(target) {\n      target.classList.remove('border-red-700');\n      target.classList.remove('focus:ring-red-200');\n      target.classList.remove('border-gray-300');\n      target.classList.remove('focus:ring-gray-200');\n\n      target.classList.add('border-green-700');\n      target.classList.add('focus:ring-green-200');\n    }\n\n    badInput(target) {\n      target.classList.remove('border-green-700');\n      target.classList.remove('focus:ring-green-200');\n      target.classList.remove('border-gray-300');\n      target.classList.remove('focus:ring-gray-200');\n\n      target.classList.add('border-red-700');\n      target.classList.add('focus:ring-red-200');\n    }\n\n    checkEmail() {\n      let split = this.emailTarget.value.toLowerCase().split(\"@\");\n      writeEmailOptions(this.emailTarget.value, this.emailOptionsTarget);\n      let emailDomain = split[split.length - 1];\n\n      if (this.emailTarget.value === '' || !this.match(this.emailTarget.value, \/^((([a-z]|\\d|[!#\\$%&'\\*\\+\\-\\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+(\\.([a-z]|\\d|[!#\\$%&'\\*\\+\\-\\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+)*)|((\\x22)((((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(([\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f]|\\x21|[\\x23-\\x5b]|[\\x5d-\\x7e]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(\\\\([\\x01-\\x09\\x0b\\x0c\\x0d-\\x7f]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]))))*(((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(\\x22)))@((([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))\\.)+(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))$\/i)) {\n        this.emptyInput(this.emailTarget);\n        this.tooltipTarget.classList.add('hidden');\n      } else if (emailDomain in this.typos) {\n        this.badInput(this.emailTarget);\n\n        if (this.typos[emailDomain] !== '') {\n          this.tooltipTarget.classList.remove('hidden');\n          this.tipTarget.innerHTML = `DID_YOU_MEAN ${this.typos[emailDomain]}? TAP_TO_FIX`;\n        }\n        \n      } else {\n        this.goodInput(this.emailTarget);\n        this.tooltipTarget.classList.add('hidden');\n      }        \n    }\n\n    fixEmail() {\n      let split = this.emailTarget.value.toLowerCase().split(\"@\");\n      let emailDomain = split[split.length - 1];\n      this.emailTarget.value = this.emailTarget.value.replace(emailDomain, this.typos[emailDomain]);\n\n      this.checkEmail();\n      this.enable();\n    }\n\n    checkName() {\n      if (this.nameTarget.value === '') {\n        this.emptyInput(this.nameTarget);\n      } else {\n        this.goodInput(this.nameTarget);\n      }\n    }\n\n    checkPhone() {\n      if (this.phoneTarget.value != \"\") {\n        this.phoneTarget.value = phoneNumberMask(this.phoneTarget.value, this.phoneMaskOption);\n      }\n    }\n\n    autocomplete() {\n      if (!this.autocompleted && this.emailTarget.value.endsWith('@g')) {\n        this.emailTarget.value += 'mail.com';\n        this.autocompleted = true;\n      } \n    }\n\n    isValid() {\n      if (this.mode === 'phone' && this.showhighlightValue) {\n        return (\n          this.getPhoneNumberAreaCod().length > 5 && \n          this.nameTarget.value !== '' &&\n          this.checkboxTarget.checked\n        );\n      }\n\n      if (this.mode === 'phone' && this.phoneTarget.value === '') {\n        return true;\n      }\n\n      if (this.mode === 'email' && this.emailTarget.value === '' && !this.showhighlightValue) {\n        return true;\n      }\n\n      if (this.mode === 'phone') {\n        return (\n          this.getPhoneNumberAreaCod().length > 5 && \n          this.nameTarget.value !== '' &&\n          this.checkboxTarget.checked\n        );\n      }\n\n      if (this.mode === 'push') {\n        return true;\n      }\n\n      let split = this.emailTarget.value.toLowerCase().split(\"@\");\n      let emailDomain = split[split.length - 1];\n\n      if (this.mode === 'email' && this.emailTarget.value !== '' && !this.showhighlightValue) {\n        if (!this.match(this.emailTarget.value, \/^((([a-z]|\\d|[!#\\$%&'\\*\\+\\-\\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+(\\.([a-z]|\\d|[!#\\$%&'\\*\\+\\-\\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+)*)|((\\x22)((((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(([\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f]|\\x21|[\\x23-\\x5b]|[\\x5d-\\x7e]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(\\\\([\\x01-\\x09\\x0b\\x0c\\x0d-\\x7f]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]))))*(((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(\\x22)))@((([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))\\.)+(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))$\/i) || emailDomain in this.typos) {\n          return true;\n        }\n      }\n\n      return (\n        this.emailTarget.value !== '' && \n        this.nameTarget.value !== '' &&\n        this.checkboxTarget.checked &&\n        this.match(\n          this.emailTarget.value, \n          \/^((([a-z]|\\d|[!#\\$%&'\\*\\+\\-\\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+(\\.([a-z]|\\d|[!#\\$%&'\\*\\+\\-\\\/=\\?\\^_`{\\|}~]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])+)*)|((\\x22)((((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(([\\x01-\\x08\\x0b\\x0c\\x0e-\\x1f\\x7f]|\\x21|[\\x23-\\x5b]|[\\x5d-\\x7e]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(\\\\([\\x01-\\x09\\x0b\\x0c\\x0d-\\x7f]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]))))*(((\\x20|\\x09)*(\\x0d\\x0a))?(\\x20|\\x09)+)?(\\x22)))@((([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|\\d|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))\\.)+(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])|(([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])([a-z]|\\d|-|\\.|_|~|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])*([a-z]|[\\u00A0-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF])))$\/i\n        ) &&\n        !(emailDomain in this.typos)\n      );\n    }\n\n    enable() {\n      this.submitTarget.disabled = !this.isValid();\n    }\n\n    identify() {\n      if (typeof window.rudderanalytics === 'object') {\n        window.rudderanalytics.identify(\n          this.emailTarget.value.toLowerCase(),\n          {\n            email: this.emailTarget.value.toLowerCase(),\n            name: this.nameTarget.value,\n            ip: this.cf.analyticsIp || '',\n            host: this.hostname,\n            quiz: this.quiz,\n            country: this.country,\n            answers: this.tags,\n            utm_source: this.searchParams.get('utm_source') || localStorage.getItem('analytics_utm_source'),\n            utm_medium: this.searchParams.get('utm_medium') || localStorage.getItem('analytics_utm_medium'),\n            utm_campaign: this.searchParams.get('utm_campaign') || localStorage.getItem('analytics_utm_campaign'),\n            utm_content: this.searchParams.get('utm_content') || localStorage.getItem('analytics_utm_content'),\n            utm_term: this.searchParams.get('utm_term') || localStorage.getItem('analytics_utm_term'),\n            fbclid: this.searchParams.get('fbclid') || localStorage.getItem('analytics_fbclid'),\n            gclid: this.searchParams.get('gclid') || localStorage.getItem('analytics_gclid'),\n            fb_pixel: '',\n            aw_pixel: 'AW-17668209646',\n            ems_account: this.emsAccount,\n            domain: window.location.host,\n            ems_list: String(this.emsList),\n            phone: this.getPhoneNumberAreaCod(),\n            cf_city: this.cf.analyticsCity || '',\n            cf_country: this.cf.analyticsCountry || '',\n            cf_region: this.cf.analyticsRegion || '',\n            cf_regionCode: this.cf.analyticsCode || ''\n          }\n        );\n\n        if (window.complianceFlags && window.complianceFlags['necessary']) {\n          fetch('https:\/\/id.adtechpanda.com\/new', {\n              method: 'POST',\n              body: JSON.stringify({\n                email: this.emailTarget.value.toLowerCase()\n              }),\n              headers: {'accept': 'application\/json'},\n              mode: 'no-cors'\n            }\n          ).then(response => {\n\n          }).catch(error => {\n\n          });\n        }\n      }\n    }\n\n    track() {\n      if (document.cookie.includes(\"quizLeadEvent=true\")) {\n        return true;\n      }\n      this.setCookie(\"quizLeadEvent\", \"true\", 1\/192);\n\n      if (typeof window.fbq === 'function') {\n        window.fbq('track', 'Lead', {tags: this.tags});\n      };\n\n      if (typeof window.gtag === 'function') {\n        \n        window.gtag('set', 'user_data', {\n          \"email\": this.emailTarget.value.toLowerCase(),\n          \"phone_number\": this.getPhoneNumberAreaCod()\n        });\n        window.gtag('event', 'conversion', {'send_to': `AW-17668209646\/EkTmCPO3884bEO737ehB`});\n      };  \n\n      if (typeof window.ttq === 'object') {\n        window.ttq.track('SubmitForm');\n      };\n\n      if (typeof window._tfa === 'object') {\n        window._tfa.push({notify: 'event', name: 'lead', id: Number(\"\")});\n      };\n\n      if (typeof window.ctrk === 'function') {\n        window.ctrk('record', 'Lead', { dnt: false });\n      };\n    }\n\n    chooseLandingPage() {\n      for (let condition of this.conditions) {\n        if (condition['answers'].every(\n          answer => this.replaceAll(this.replaceAll(this.tags, '\u2013', '-'), ' ', '').includes(this.replaceAll(this.replaceAll(answer, '\u2013', '-'), ' ', ''))\n        )) {\n          this.landingPage = condition['link'];\n          this.landingUrl = new URL(this.landingPage);\n          this.landingPathname = this.landingUrl.pathname.split('\/').filter(elem => elem).join('-');\n          break;\n        };\n      };\n\n      if (typeof this.landingPage === 'undefined' && document.location.pathname[0] === '\/' && document.location.pathname[3] !== '\/') {\n        this.landingPage = this.conditions[0]['link'];\n        this.landingUrl = new URL(this.landingPage);\n        this.landingPathname = this.landingUrl.pathname.split('\/').filter(elem => elem).join('-');\n      }\n\n      if (typeof this.landingPage === 'undefined' && document.location.pathname[0] === '\/' && document.location.pathname[3] === '\/') {\n        this.landingPage = !this.conditions[0]['link'].includes(document.location.pathname.substr(0,3)) ? this.conditions[0]['link'].replace(document.location.hostname, document.location.hostname + document.location.pathname.substr(0,3)) : this.conditions[0]['link'];\n        this.landingUrl = new URL(this.landingPage);\n        this.landingPathname = this.landingUrl.pathname.split('\/').filter(elem => elem).join('-');\n      }\n    }\n\n    redirect() {      \n      \/*let fbclid = this.searchParams.get('fbclid') ? '?fbclid=' + this.searchParams.get('fbclid') : '';\n      let gclid = this.searchParams.get('gclid') ? '?gclid=' + this.searchParams.get('gclid') : '';*\/\n\n      let url = `${this.landingPage}`;\n      if (!this.landingUrl.search) {\n        url += window.location.search;\n      }\n\n      this.formIgnored() ? this.setViewAnyForm(false) : '';\n\n      if (this.triggerInterstitial) {\n        this.triggerTarget.href = url.replace(\"\/quiz.\", \"\/\");\n        this.triggerTarget.click();\n      } else {\n        window.location.href = url;\n      }\n    }\n\n    skip() {\n      if ((false) &&(window.km2RewardedExists) && (window.km2RewardedReady) && (!window.km2RewardedGranted)) {      \n        window.km2MakeRewardedVisible(\n          function() {\n            if (!this.showFormFirst) {      \n              this.bodyTarget.classList.add('hidden');\n              this.footerTarget.classList.add('hidden');\n            }\n          }.bind(this),\n          function() {\n            this.skip();\n          }.bind(this)\n        );\n        this.skipperTarget.disabled = true;\n        this.skipperTarget.innerText = \"\";\n        this.triggerInterstitial = false;\n        \n      } else if (!this.showFormFirst) {      \n        this.chooseLandingPage();\n        this.identify(); \n        this.track();\n\n        this.redirect();\n      } else {      \n        this.next();\n      }\n    }\n\n    submit(event) {\n      this.unloaderTargets.forEach((element, index) => {\n        element.classList.add(\"hidden\");\n      });\n\n      this.loaderTargets.forEach((element, index) => {\n        element.classList.remove(\"hidden\");\n      });\n      \n      this.chooseLandingPage();\n\n      if (this.skipForm) {\n        this.identify();\n        this.track();\n        this.redirect();\n\n      } else {\n        this.sendForm(true);\n      } \n    }\n\n    submitEmailForm(event) {\n      this.sendForm();    \n    }\n\n    sendForm(redirect=false) {\n      this.identify();\n      let formData = new FormData();\n      formData.set('email', this.emailTarget.value.toLowerCase());\n      formData.set('name', this.nameTarget.value);\n      formData.set('phone', this.getPhoneNumberAreaCod());\n      formData.set('tags', this.tags);\n      formData.set(`p[${this.emsList}]`, this.emsList);\n\n      fetch(`https:\/\/webhooks.adtechpanda.com\/quiz\/${this.emsAccount}`, {\n          method: 'POST',\n          body: formData,\n          headers: {},\n          mode: 'no-cors',\n        }\n      ).then(response => {\n        this.track();\n\n        this.emailTarget.value.length > 5 ? this.setViewEmailForm(false) : '';\n        this.getPhoneNumberAreaCod().length > 5 ? this.setViewPhoneForm(false) : '';\n\n        if (redirect) {\n          this.redirect();\n        } else {\n          !this.showFormFirst ? this.successMessage() : '';\n        }\n      }).catch(error => {\n        if (redirect) {\n          this.redirect();\n        } else {\n          !this.showFormFirst ? this.successMessage() : '';\n        }\n      });\n    }\n\n    successMessage() {\n      this.formDataTarget.classList.add(\"hidden\");\n      this.formMessageTarget.classList.remove(\"hidden\");\n\n      let event = new CustomEvent(\"sendPulseTriggerPrompt\");\n      window.dispatchEvent(event);\n\n      this.setFormViews(0);\n    }\n\n    getAnalyticsData() {\n      this.cf = JSON.parse(sessionStorage.getItem(\"analyticsData\"));\n      if (this.cf == null) {\n        fetch('https:\/\/tracker.adtechpanda.com\/', {\n            method: 'GET',\n            headers: {'accept': 'application\/json'}\n        }).then(response => response.json()).then(data => {\n          const analyticsData = {\n              analyticsIp: data.ip,\n              analyticsCity: data.city,\n              analyticsRegion: data.region,\n              analyticsCode: data.regionCode,\n              analyticsCountry: data.country\n          };\n          sessionStorage.setItem(\"analyticsData\", JSON.stringify(analyticsData));\n          this.cf = analyticsData;\n        });\n      }\n    }\n    \n    getPhoneNumberAreaCod() {\n      return '+'+(''+(this.phoneMaskOption.areaCod+this.phoneTarget.value)).replace(\/\\D\/g, '');\n    }\n\n    observerScrollEmailForm() {\n      const observer = new IntersectionObserver(entries => {\n        entries.forEach(entry => {          \n          if (entry.isIntersecting) {\n            this.formViews === -1 ? this.addAnimate() : '';      \n            this.setFormViews(this.formViews + 1);\n          } else {\n            this.removeAnimate();\n          }\n        });\n      });\n      observer.observe(this.submitTarget);\n    }\n\n    addAnimate() { \n      if (!this.showedHighlight) {    \n        this.inProcessAnimate = true;\n        this.formBoxBackGroundTarget.style.animation = \"none\";    \n        this.formBoxBackGroundTarget.classList.remove('animate-fast-fade-out');                                \n        this.formBoxBackGroundTarget.classList.add('animate-fade-in');                                        \n        this.formBoxTarget.classList.add('relative');\n        this.formBoxTarget.classList.add('animate-show-highlight');\n        setTimeout(() => {\n          this.formBoxBackGroundTarget.style.animation = \"\";\n          this.formBoxBackGroundTarget.classList.remove('hidden');                    \n          this.showedHighlight = true;\n          setTimeout(() => this.removeAnimate(), 5000);\n        }, 10);\n      }     \n    }\n\n    removeAnimate() {\n      if (this.inProcessAnimate) {\n        this.formBoxBackGroundTarget.style.animation = \"none\";\n        this.formBoxBackGroundTarget.classList.remove('animate-fade-in');\n        this.formBoxBackGroundTarget.classList.add('animate-fade-out-quickly');        \n        this.formBoxTarget.style.animation = \"none\";\n        this.formBoxTarget.classList.add('animate-hide-highlight');\n        this.formBoxTarget.classList.remove('animate-show-highlight');\n        this.formBoxTarget.classList.remove('relative');\n        setTimeout(() => {        \n          this.formBoxBackGroundTarget.style.animation = \"\";\n          this.formBoxTarget.style.animation = \"\";                  \n          setTimeout(() => {\n            this.formBoxBackGroundTarget.classList.add('hidden');\n            this.inProcessAnimate = false;\n          }, 1000);\n        }, 10);\n      }\n    }\n\n    setCookie(key, value, days) {\n      let date = new Date();\n      date.setTime(date.getTime() + parseInt(days * 24 * 60 * 60 * 1000));\n      document.cookie = key + \"=\" + value + \";expires=\" + date.toUTCString() + \";domain=.thefinancialincome.com;path=\/\";\n    }\n\n    setViewEmailForm(view) {\n      localStorage.setItem(\"viewEmailForm\", view);\n      this.setCookie(\"viewEmailForm\", String(view), 28);\n    }\n\n    getViewEmailForm() {\n      if (document.cookie.includes(\"viewEmailForm=false\")) {\n        return false;\n      }\n      return ((localStorage.getItem(\"viewEmailForm\") || 'true') === 'true');\n    }\n    \n    setViewPhoneForm(view) {\n      localStorage.setItem(\"viewPhoneForm\", view);\n      this.setCookie(\"viewPhoneForm\", String(view), 28);\n    }\n\n    getViewPhoneForm() {\n      return false;\n    }\n\n    getViewPushForm() {\n      \/*if (typeof navigator.permissions === \"undefined\") {\n        return false;\n      }\n\n      let permissionStatus = await navigator.permissions.query({name:'push', userVisibleOnly:true});\n      return (permissionStatus.state === 'granted' || permissionStatus.state === 'denied');*\/\n      return false;\n    }\n\n    setViewAnyForm(view) {\n      localStorage.setItem(\"viewAnyForm\", view);\n      this.setCookie(\"viewAnyForm\", String(view), 14);\n    }\n\n    getViewAnyForm() {\n      if (document.cookie.includes(\"viewAnyForm=false\")) {\n        return false;\n      }\n      return ((localStorage.getItem(\"viewAnyForm\") || 'true') === 'true');\n    }\n\n    getFormViews() {\n      this.formViews = parseInt(sessionStorage.getItem(\"quizFormViews\")) >= 1 ? parseInt(sessionStorage.getItem(\"quizFormViews\")) : 0;\n      return this.formViews;\n    }\n\n    setFormViews(views) {\n      sessionStorage.setItem(\"quizFormViews\", views);\n    }\n\n    formIgnored() {\n      return (!this.skipForm && this.showForm && Math.max(this.emailTarget.value.length, this.getPhoneNumberAreaCod().length) < 5);\n    }\n\n  });\n  \n<\/script>\n<div data-controller=\"quiz\" class=\"\" style=\"\" data-quiz-target=\"quiz\" id=\"lazyBlockQuiz\" data-quiz-showhighlight-value=\"false\" >\n  \n  <section data-quiz-target=\"body\" style=\"\" class=\"text-gray-600 body-font border-gray-200 sm:border-0\">\n    <div style=\"max-width: 850px; min-height: 550px; padding: 0px;\" class=\"px-5 pt-3 mx-auto block sm:px-20\">\n      <h1 data-quiz-target=\"formTitle\" style=\"font-size: 20px;\" class=\"text-xl font-medium title-font mb-4 text-center sm:mb-10 sm:pt-6\">\n        Nos complace ayudarle a encontrar el pr\u00e9stamo ideal. Responda algunas preguntas para que podamos encontrar las ofertas disponibles que mejor se adapten a su perfil.\t\t\t<\/h1>\n\n      <div data-quiz-target=\"block\" class=\"mt-10\">\n        \n                    <div data-quiz-target=\"pane\" class=\"sm:m-auto bg-gray-100 rounded-lg p-4 flex flex-col w-full min-h-[24rem] shadow-lg border bg-white\">\n              <h2 class=\"text-gray-900 text-base font-medium title-font mb-5 text-center\">\n                \u00bfCual es tu rango de edad?              <\/h2>\n                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    18-29 a\u00f1os                  <\/button>\n                                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    \n30-40 a\u00f1os                  <\/button>\n                                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    \n40-60 a\u00f1os                  <\/button>\n                                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    \nM\u00e1s de 60                  <\/button>\n                                                                        <\/div>\n                    <div data-quiz-target=\"pane\" class=\"hidden sm:m-auto bg-gray-100 rounded-lg p-4 flex flex-col w-full min-h-[24rem] shadow-lg border bg-white\">\n              <h2 class=\"text-gray-900 text-base font-medium title-font mb-5 text-center\">\n                \u00bfCu\u00e1l es tu g\u00e9nero?              <\/h2>\n                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    Hombre                  <\/button>\n                                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    \nMujer                  <\/button>\n                                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    \nIntersexual                  <\/button>\n                                                                        <\/div>\n                    <div data-quiz-target=\"pane\" class=\"hidden sm:m-auto bg-gray-100 rounded-lg p-4 flex flex-col w-full min-h-[24rem] shadow-lg border bg-white\">\n              <h2 class=\"text-gray-900 text-base font-medium title-font mb-5 text-center\">\n                \u00bfCu\u00e1l es su situaci\u00f3n profesional?              <\/h2>\n                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    Empleado\/a                  <\/button>\n                                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    \nDesempleado\/a                  <\/button>\n                                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    \nAut\u00f3nomo\/a                  <\/button>\n                                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    \nEmprendedor\/a                  <\/button>\n                                                                <button style=\"min-height: 60px;\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"answerButton\" class=\"mt-5 border-0 py-4 px-4 focus:outline-none rounded text-base block shadow-lg\">\n                    \nFreelancer                  <\/button>\n                                                                        <\/div>\n        \n                  <div data-quiz-target=\"pane\" class=\"hidden sm:m-auto bg-gray-100 rounded-lg p-4 flex flex-col w-full min-h-[24rem] border bg-white\">\n            <h2 class=\"text-gray-900 text-base font-medium title-font mb-5 text-center\">\n              Gracias por sus respuestas. Ya hemos encontrado algunas opciones para ti. En breve ser\u00e1s redirigido a la p\u00e1gina del producto. Si desea recibir informaci\u00f3n sobre futuras ofertas, complete el formulario.            <\/h2>\n            <div data-quiz-target=\"emailDiv\" class=\"text-left relative mb-4\">\n              <label for=\"email\" class=\"px-2 leading-7 text-sm text-gray-600\">\n                E-Mail\n              <\/label>\n              <div data-quiz-target=\"tooltip\" style=\"top: 0px; right: 0px;\" class=\"hidden absolute mx-2\">\n                <button data-action=\"quiz#fixEmail\" class=\"bg-black text-white text-xs rounded py-1 px-4 right-0 bottom-full\">\n                    <span data-quiz-target=\"tip\"><\/span>\n                  <svg class=\"absolute text-black h-2 w-full left-0 top-full\" x=\"0px\" y=\"0px\" viewbox=\"0 0 255 255\" xml:space=\"preserve\"><polygon class=\"fill-current\" points=\"0,0 127.5,127.5 255,0\"\/><\/svg>\n                <\/button>\n              <\/div>\n              <input data-quiz-target=\"email\" data-action=\"quiz#enable quiz#checkEmail\" list=\"email-options\" type=\"email\" id=\"email\" name=\"email\" placeholder=\"\" class=\"w-full mt-1 bg-white rounded-lg border border-gray-300 focus:ring-2 focus:ring-gray-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out\">\n              <datalist data-quiz-target=\"emailOptions\" id=\"email-options\"><\/datalist>\n            <\/div>\n            <div data-quiz-target=\"phoneDiv\" class=\"grid grid-cols-3 gap-6 mb-4\">\n              <div class=\"col-span-3 text-left\">\n                <label for=\"phone\" class=\"px-2 leading-7 text-sm text-gray-600 text-left\">\n                  Phone Number\n                <\/label>\n                <div class=\"mt-1 flex rounded shadow\">\n                  \n                  <input data-quiz-target=\"phone\" data-action=\"quiz#enable quiz#checkPhone\" type=\"phone\" name=\"phone\" id=\"phone\" maxlength=\"16\" class=\"rounded-none rounded-r-md w-full bg-white border border-gray-300 focus:border-gray-500 focus:ring-2 focus:ring-gray-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out\">\n                <\/div>\n              <\/div>\n            <\/div>\n            <div data-quiz-target=\"nameDiv\" class=\"text-left relative mb-4\">\n              <label for=\"name\" class=\"px-2 leading-7 text-sm text-gray-600 text-left\">\n                First Name\n              <\/label>\n              <input data-quiz-target=\"name\" data-action=\"quiz#enable quiz#checkName\" type=\"text\" id=\"name\" name=\"name\" class=\"w-full mt-1 bg-white rounded-lg border border-gray-300 focus:border-gray-500 focus:ring-2 focus:ring-gray-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out\">\n            <\/div>\n            \n\n            <div data-quiz-target=\"soiDiv\" class=\"text-left relative mb-4 flex justify-start items-center\">\n              <input data-quiz-target=\"checkbox\" data-action=\"quiz#enable\" type=\"checkbox\" id=\"optin\" style=\"min-width: 25px;\" class=\"w-4 h-4 transition duration-300 rounded focus:ring-2 focus:ring-offset-0 focus:outline-none focus:ring-green-200\" \/>\n              <label data-quiz-target=\"soi\" for=\"optin\" class=\"ml-3 text-sm text-gray-600 text-left\">\n                Acepto recibir correos electr\u00f3nicos con nuevas ofertas en el futuro.              <\/label>\n            <\/div>\n            <button style=\"min-height: 60px;\" aria-label=\"Ver ofertas disponibles (10)\" disabled data-quiz-target=\"submit\" data-action='quiz#next analytics#trackQuiz' data-analytics-label=\"submitButton\" class=\"border-0 py-4 px-8 focus:outline-none rounded text-lg disabled:opacity-50 block shadow-lg\">\n              <span data-quiz-target=\"unloader\">\n                Ver ofertas disponibles (10)              <\/span>\n              <span class=\"hidden\" data-quiz-target=\"loader\">\n                <svg style=\"color: white;\" class=\"m-auto animate-spin h-4 w-4\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" fill=\"none\" viewbox=\"0 0 24 24\">\n                    <circle class=\"opacity-25\" cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" stroke-width=\"4\"><\/circle>\n                    <path class=\"opacity-75\" fill=\"currentColor\" d=\"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z\"><\/path>\n                <\/svg>\n              <\/span>\n            <\/button>\n            <button data-action='quiz#skip analytics#trackQuiz' data-quiz-target=\"skipper\" data-analytics-label=\"skipButton\" style=\"margin-top: 10px; background: none;\" class=\"text-xs text-gray-500 m-3 p-2\">\n             Skip to recommendation \u27f6\n            <\/button>\n                      <\/div>\n          \n        \n              <\/div>\n    <\/div>\n   \n    <a data-quiz-target=\"trigger\" style=\"display: none;\" class=\"hidden\" href=\"\" > \n      \n    <\/a>\n  <\/section>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":28,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[10,21],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>ES LN - 00101 - The Financial Income<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thefinancialincome.com\/at\/es-ln-00101\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ES LN - 00101 - The Financial Income\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thefinancialincome.com\/at\/es-ln-00101\/\" \/>\n<meta property=\"og:site_name\" content=\"The Financial Income\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-10T01:49:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-10T01:49:38+00:00\" \/>\n<meta name=\"author\" content=\"casamasso\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"casamasso\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/thefinancialincome.com\/es-ln-00101\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/thefinancialincome.com\/es-ln-00101\/\"},\"author\":{\"name\":\"casamasso\",\"@id\":\"https:\/\/thefinancialincome.com\/#\/schema\/person\/b45c531172d02202ccdf8acddc7c4500\"},\"headline\":\"ES LN &#8211; 00101\",\"datePublished\":\"2025-12-10T01:49:11+00:00\",\"dateModified\":\"2025-12-10T01:49:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/thefinancialincome.com\/es-ln-00101\/\"},\"wordCount\":3,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/thefinancialincome.com\/#organization\"},\"articleSection\":[\"Hidden\",\"Quiz\"],\"inLanguage\":\"de-AT\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/thefinancialincome.com\/es-ln-00101\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/thefinancialincome.com\/es-ln-00101\/\",\"url\":\"https:\/\/thefinancialincome.com\/es-ln-00101\/\",\"name\":\"ES LN - 00101 - The Financial Income\",\"isPartOf\":{\"@id\":\"https:\/\/thefinancialincome.com\/#website\"},\"datePublished\":\"2025-12-10T01:49:11+00:00\",\"dateModified\":\"2025-12-10T01:49:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/thefinancialincome.com\/es-ln-00101\/#breadcrumb\"},\"inLanguage\":\"de-AT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thefinancialincome.com\/es-ln-00101\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thefinancialincome.com\/es-ln-00101\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thefinancialincome.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ES LN &#8211; 00101\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thefinancialincome.com\/#website\",\"url\":\"https:\/\/thefinancialincome.com\/\",\"name\":\"The Financial Income\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/thefinancialincome.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thefinancialincome.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"de-AT\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/thefinancialincome.com\/#organization\",\"name\":\"The Financial Income\",\"url\":\"https:\/\/thefinancialincome.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-AT\",\"@id\":\"https:\/\/thefinancialincome.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/thefinancialincome.com\/wp-content\/uploads\/sites\/509\/2025\/12\/cropped-The-Financial-Income-01_-1.png\",\"contentUrl\":\"https:\/\/thefinancialincome.com\/wp-content\/uploads\/sites\/509\/2025\/12\/cropped-The-Financial-Income-01_-1.png\",\"width\":478,\"height\":455,\"caption\":\"The Financial Income\"},\"image\":{\"@id\":\"https:\/\/thefinancialincome.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/thefinancialincome.com\/#\/schema\/person\/b45c531172d02202ccdf8acddc7c4500\",\"name\":\"casamasso\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de-AT\",\"@id\":\"https:\/\/thefinancialincome.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8e0a73005dfaa37950cba164b2ee0bae?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8e0a73005dfaa37950cba164b2ee0bae?s=96&d=mm&r=g\",\"caption\":\"casamasso\"},\"url\":\"https:\/\/thefinancialincome.com\/at\/author\/casamasso\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ES LN - 00101 - The Financial Income","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/thefinancialincome.com\/at\/es-ln-00101\/","og_locale":"de_DE","og_type":"article","og_title":"ES LN - 00101 - The Financial Income","og_url":"https:\/\/thefinancialincome.com\/at\/es-ln-00101\/","og_site_name":"The Financial Income","article_published_time":"2025-12-10T01:49:11+00:00","article_modified_time":"2025-12-10T01:49:38+00:00","author":"casamasso","twitter_card":"summary_large_image","twitter_misc":{"Written by":"casamasso"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/thefinancialincome.com\/es-ln-00101\/#article","isPartOf":{"@id":"https:\/\/thefinancialincome.com\/es-ln-00101\/"},"author":{"name":"casamasso","@id":"https:\/\/thefinancialincome.com\/#\/schema\/person\/b45c531172d02202ccdf8acddc7c4500"},"headline":"ES LN &#8211; 00101","datePublished":"2025-12-10T01:49:11+00:00","dateModified":"2025-12-10T01:49:38+00:00","mainEntityOfPage":{"@id":"https:\/\/thefinancialincome.com\/es-ln-00101\/"},"wordCount":3,"commentCount":0,"publisher":{"@id":"https:\/\/thefinancialincome.com\/#organization"},"articleSection":["Hidden","Quiz"],"inLanguage":"de-AT","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/thefinancialincome.com\/es-ln-00101\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/thefinancialincome.com\/es-ln-00101\/","url":"https:\/\/thefinancialincome.com\/es-ln-00101\/","name":"ES LN - 00101 - The Financial Income","isPartOf":{"@id":"https:\/\/thefinancialincome.com\/#website"},"datePublished":"2025-12-10T01:49:11+00:00","dateModified":"2025-12-10T01:49:38+00:00","breadcrumb":{"@id":"https:\/\/thefinancialincome.com\/es-ln-00101\/#breadcrumb"},"inLanguage":"de-AT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thefinancialincome.com\/es-ln-00101\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/thefinancialincome.com\/es-ln-00101\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thefinancialincome.com\/"},{"@type":"ListItem","position":2,"name":"ES LN &#8211; 00101"}]},{"@type":"WebSite","@id":"https:\/\/thefinancialincome.com\/#website","url":"https:\/\/thefinancialincome.com\/","name":"The Financial Income","description":"","publisher":{"@id":"https:\/\/thefinancialincome.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thefinancialincome.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"de-AT"},{"@type":"Organization","@id":"https:\/\/thefinancialincome.com\/#organization","name":"The Financial Income","url":"https:\/\/thefinancialincome.com\/","logo":{"@type":"ImageObject","inLanguage":"de-AT","@id":"https:\/\/thefinancialincome.com\/#\/schema\/logo\/image\/","url":"https:\/\/thefinancialincome.com\/wp-content\/uploads\/sites\/509\/2025\/12\/cropped-The-Financial-Income-01_-1.png","contentUrl":"https:\/\/thefinancialincome.com\/wp-content\/uploads\/sites\/509\/2025\/12\/cropped-The-Financial-Income-01_-1.png","width":478,"height":455,"caption":"The Financial Income"},"image":{"@id":"https:\/\/thefinancialincome.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/thefinancialincome.com\/#\/schema\/person\/b45c531172d02202ccdf8acddc7c4500","name":"casamasso","image":{"@type":"ImageObject","inLanguage":"de-AT","@id":"https:\/\/thefinancialincome.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8e0a73005dfaa37950cba164b2ee0bae?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8e0a73005dfaa37950cba164b2ee0bae?s=96&d=mm&r=g","caption":"casamasso"},"url":"https:\/\/thefinancialincome.com\/at\/author\/casamasso\/"}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"trp-custom-language-flag":false},"uagb_author_info":{"display_name":"casamasso","author_link":"https:\/\/thefinancialincome.com\/at\/author\/casamasso\/"},"uagb_comment_info":0,"uagb_excerpt":null,"_links":{"self":[{"href":"https:\/\/thefinancialincome.com\/at\/wp-json\/wp\/v2\/posts\/712"}],"collection":[{"href":"https:\/\/thefinancialincome.com\/at\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thefinancialincome.com\/at\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thefinancialincome.com\/at\/wp-json\/wp\/v2\/users\/28"}],"replies":[{"embeddable":true,"href":"https:\/\/thefinancialincome.com\/at\/wp-json\/wp\/v2\/comments?post=712"}],"version-history":[{"count":2,"href":"https:\/\/thefinancialincome.com\/at\/wp-json\/wp\/v2\/posts\/712\/revisions"}],"predecessor-version":[{"id":714,"href":"https:\/\/thefinancialincome.com\/at\/wp-json\/wp\/v2\/posts\/712\/revisions\/714"}],"wp:attachment":[{"href":"https:\/\/thefinancialincome.com\/at\/wp-json\/wp\/v2\/media?parent=712"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thefinancialincome.com\/at\/wp-json\/wp\/v2\/categories?post=712"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thefinancialincome.com\/at\/wp-json\/wp\/v2\/tags?post=712"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}