[{"data":1,"prerenderedAt":1473},["ShallowReactive",2],{"content-\u002Fguides\u002Fexport-webpage-as-pdf":3,"content-doc-\u002Fguides\u002Fexport-webpage-as-pdf-inline":872,"hero-media-\u002Fguides\u002Fexport-webpage-as-pdf":873},{"id":4,"title":5,"body":6,"date":854,"description":855,"extension":856,"meta":857,"navigation":144,"order":854,"path":868,"seo":869,"stem":870,"__hash__":871},"guides\u002Fguides\u002Fexport-webpage-as-pdf.md","How to export a web page as PDF",{"type":7,"value":8,"toc":844},"minimark",[9,12,25,28,33,35,45,49,51,67,71,73,86,520,527,541,545,547,550,565,572,576,578,605,609,611,614,634,637,641,643,651,796,806,810,812,840],[10,11],"hr",{},[13,14,15,16,24],"p",{},"Automations work inside the page itself, so they can't open Chrome's print dialog or use the browser's built-in save-as-PDF. There's a workaround: generate the PDF inside the page with a ",[17,18,20],"a",{"href":19},"\u002Fdocs\u002Fno-code-tool\u002Freference\u002Fsteps\u002Fwrite-javascript",[21,22,23],"strong",{},"Write javascript"," step and the html2pdf.js library. This guide shows the three-step setup, plus two alternatives: the built-in screenshot steps when an image of the page is enough, and the Chrome API when you want true print-to-PDF from code.",[26,27],"hero-media",{},[29,30,32],"h2",{"id":31},"before-you-begin","Before you begin",[10,34],{},[36,37,38,42],"ul",{},[39,40,41],"li",{},"The target page must allow external scripts. Sites with a strict Content Security Policy (the BBC, for example) block the html2pdf.js library, and the export fails with a clear error instead of a PDF.",[39,43,44],{},"The PDF downloads through the browser. Run the automation locally so the file lands in your Chrome downloads folder.",[29,46,48],{"id":47},"step-1-go-to-the-page","Step 1: Go to the page",[10,50],{},[52,53,54,64],"ol",{},[39,55,56,57,63],{},"Add a ",[17,58,60],{"href":59},"\u002Fdocs\u002Fno-code-tool\u002Freference\u002Fsteps\u002Fgo-to-page",[21,61,62],{},"Go to page"," step.",[39,65,66],{},"Enter the URL of the page you want to export.",[29,68,70],{"id":69},"step-2-generate-the-pdf","Step 2: Generate the PDF",[10,72],{},[52,74,75,83],{},[39,76,56,77,79,80,82],{},[21,78,23],{}," step after ",[21,81,62],{},".",[39,84,85],{},"Paste the following code into the step.",[87,88,93],"pre",{"className":89,"code":90,"language":91,"meta":92,"style":92},"language-javascript shiki shiki-themes github-light-default github-dark-default","\u002F\u002F Save the current page as a PDF\n\u002F\u002F Note: run this on a page that allows external scripts (e.g. example.com).\n\u002F\u002F Strict sites like BBC block the CDN via CSP and this will not work there.\nconst CDN = 'https:\u002F\u002Fcdnjs.cloudflare.com\u002Fajax\u002Flibs\u002Fhtml2pdf.js\u002F0.10.1\u002Fhtml2pdf.bundle.min.js';\n\n\u002F\u002F 1. Load the library if it isn't already present\nif (typeof html2pdf === 'undefined') {\n  const s = document.createElement('script');\n  s.src = CDN;\n  document.head.appendChild(s);\n}\n\n\u002F\u002F 2. Wait up to 10 seconds for it to be ready\nfor (let i = 0; i \u003C 100; i++) {\n  if (typeof html2pdf !== 'undefined') break;\n  await new Promise(r => setTimeout(r, 100));\n}\n\n\u002F\u002F 3. Bail out clearly if the page blocked the library\nif (typeof html2pdf === 'undefined') {\n  return [['ERROR: library blocked by page CSP - run on a different page']];\n}\n\n\u002F\u002F 4. Generate and download the PDF\nawait html2pdf()\n  .set({\n    margin: 10,\n    filename: 'demo.pdf',\n    jsPDF: { unit: 'mm', format: 'a4', orientation: 'portrait' }\n  })\n  .from(document.body)\n  .save();\n\nreturn [['done']];\n","javascript","",[94,95,96,105,111,117,139,146,152,176,203,216,228,234,239,245,281,306,339,344,349,355,372,387,392,397,403,415,427,439,450,474,480,491,502,507],"code",{"__ignoreMap":92},[97,98,101],"span",{"class":99,"line":100},"line",1,[97,102,104],{"class":103},"sU953","\u002F\u002F Save the current page as a PDF\n",[97,106,108],{"class":99,"line":107},2,[97,109,110],{"class":103},"\u002F\u002F Note: run this on a page that allows external scripts (e.g. example.com).\n",[97,112,114],{"class":99,"line":113},3,[97,115,116],{"class":103},"\u002F\u002F Strict sites like BBC block the CDN via CSP and this will not work there.\n",[97,118,120,124,128,131,135],{"class":99,"line":119},4,[97,121,123],{"class":122},"sjeE4","const",[97,125,127],{"class":126},"sHrmB"," CDN",[97,129,130],{"class":122}," =",[97,132,134],{"class":133},"sSVrQ"," 'https:\u002F\u002Fcdnjs.cloudflare.com\u002Fajax\u002Flibs\u002Fhtml2pdf.js\u002F0.10.1\u002Fhtml2pdf.bundle.min.js'",[97,136,138],{"class":137},"s4rv2",";\n",[97,140,142],{"class":99,"line":141},5,[97,143,145],{"emptyLinePlaceholder":144},true,"\n",[97,147,149],{"class":99,"line":148},6,[97,150,151],{"class":103},"\u002F\u002F 1. Load the library if it isn't already present\n",[97,153,155,158,161,164,167,170,173],{"class":99,"line":154},7,[97,156,157],{"class":122},"if",[97,159,160],{"class":137}," (",[97,162,163],{"class":122},"typeof",[97,165,166],{"class":137}," html2pdf ",[97,168,169],{"class":122},"===",[97,171,172],{"class":133}," 'undefined'",[97,174,175],{"class":137},") {\n",[97,177,179,182,185,187,190,194,197,200],{"class":99,"line":178},8,[97,180,181],{"class":122},"  const",[97,183,184],{"class":126}," s",[97,186,130],{"class":122},[97,188,189],{"class":137}," document.",[97,191,193],{"class":192},"sbjLL","createElement",[97,195,196],{"class":137},"(",[97,198,199],{"class":133},"'script'",[97,201,202],{"class":137},");\n",[97,204,206,209,212,214],{"class":99,"line":205},9,[97,207,208],{"class":137},"  s.src ",[97,210,211],{"class":122},"=",[97,213,127],{"class":126},[97,215,138],{"class":137},[97,217,219,222,225],{"class":99,"line":218},10,[97,220,221],{"class":137},"  document.head.",[97,223,224],{"class":192},"appendChild",[97,226,227],{"class":137},"(s);\n",[97,229,231],{"class":99,"line":230},11,[97,232,233],{"class":137},"}\n",[97,235,237],{"class":99,"line":236},12,[97,238,145],{"emptyLinePlaceholder":144},[97,240,242],{"class":99,"line":241},13,[97,243,244],{"class":103},"\u002F\u002F 2. Wait up to 10 seconds for it to be ready\n",[97,246,248,251,253,256,259,261,264,267,270,273,276,279],{"class":99,"line":247},14,[97,249,250],{"class":122},"for",[97,252,160],{"class":137},[97,254,255],{"class":122},"let",[97,257,258],{"class":137}," i ",[97,260,211],{"class":122},[97,262,263],{"class":126}," 0",[97,265,266],{"class":137},"; i ",[97,268,269],{"class":122},"\u003C",[97,271,272],{"class":126}," 100",[97,274,275],{"class":137},"; i",[97,277,278],{"class":122},"++",[97,280,175],{"class":137},[97,282,284,287,289,291,293,296,298,301,304],{"class":99,"line":283},15,[97,285,286],{"class":122},"  if",[97,288,160],{"class":137},[97,290,163],{"class":122},[97,292,166],{"class":137},[97,294,295],{"class":122},"!==",[97,297,172],{"class":133},[97,299,300],{"class":137},") ",[97,302,303],{"class":122},"break",[97,305,138],{"class":137},[97,307,309,312,315,318,320,324,327,330,333,336],{"class":99,"line":308},16,[97,310,311],{"class":122},"  await",[97,313,314],{"class":122}," new",[97,316,317],{"class":126}," Promise",[97,319,196],{"class":137},[97,321,323],{"class":322},"sTDnQ","r",[97,325,326],{"class":122}," =>",[97,328,329],{"class":192}," setTimeout",[97,331,332],{"class":137},"(r, ",[97,334,335],{"class":126},"100",[97,337,338],{"class":137},"));\n",[97,340,342],{"class":99,"line":341},17,[97,343,233],{"class":137},[97,345,347],{"class":99,"line":346},18,[97,348,145],{"emptyLinePlaceholder":144},[97,350,352],{"class":99,"line":351},19,[97,353,354],{"class":103},"\u002F\u002F 3. Bail out clearly if the page blocked the library\n",[97,356,358,360,362,364,366,368,370],{"class":99,"line":357},20,[97,359,157],{"class":122},[97,361,160],{"class":137},[97,363,163],{"class":122},[97,365,166],{"class":137},[97,367,169],{"class":122},[97,369,172],{"class":133},[97,371,175],{"class":137},[97,373,375,378,381,384],{"class":99,"line":374},21,[97,376,377],{"class":122},"  return",[97,379,380],{"class":137}," [[",[97,382,383],{"class":133},"'ERROR: library blocked by page CSP - run on a different page'",[97,385,386],{"class":137},"]];\n",[97,388,390],{"class":99,"line":389},22,[97,391,233],{"class":137},[97,393,395],{"class":99,"line":394},23,[97,396,145],{"emptyLinePlaceholder":144},[97,398,400],{"class":99,"line":399},24,[97,401,402],{"class":103},"\u002F\u002F 4. Generate and download the PDF\n",[97,404,406,409,412],{"class":99,"line":405},25,[97,407,408],{"class":122},"await",[97,410,411],{"class":192}," html2pdf",[97,413,414],{"class":137},"()\n",[97,416,418,421,424],{"class":99,"line":417},26,[97,419,420],{"class":137},"  .",[97,422,423],{"class":192},"set",[97,425,426],{"class":137},"({\n",[97,428,430,433,436],{"class":99,"line":429},27,[97,431,432],{"class":137},"    margin: ",[97,434,435],{"class":126},"10",[97,437,438],{"class":137},",\n",[97,440,442,445,448],{"class":99,"line":441},28,[97,443,444],{"class":137},"    filename: ",[97,446,447],{"class":133},"'demo.pdf'",[97,449,438],{"class":137},[97,451,453,456,459,462,465,468,471],{"class":99,"line":452},29,[97,454,455],{"class":137},"    jsPDF: { unit: ",[97,457,458],{"class":133},"'mm'",[97,460,461],{"class":137},", format: ",[97,463,464],{"class":133},"'a4'",[97,466,467],{"class":137},", orientation: ",[97,469,470],{"class":133},"'portrait'",[97,472,473],{"class":137}," }\n",[97,475,477],{"class":99,"line":476},30,[97,478,479],{"class":137},"  })\n",[97,481,483,485,488],{"class":99,"line":482},31,[97,484,420],{"class":137},[97,486,487],{"class":192},"from",[97,489,490],{"class":137},"(document.body)\n",[97,492,494,496,499],{"class":99,"line":493},32,[97,495,420],{"class":137},[97,497,498],{"class":192},"save",[97,500,501],{"class":137},"();\n",[97,503,505],{"class":99,"line":504},33,[97,506,145],{"emptyLinePlaceholder":144},[97,508,510,513,515,518],{"class":99,"line":509},34,[97,511,512],{"class":122},"return",[97,514,380],{"class":137},[97,516,517],{"class":133},"'done'",[97,519,386],{"class":137},[13,521,522,523,526],{},"The code loads html2pdf.js from a CDN, waits for it to be ready, then renders the page body as an A4 PDF and downloads it. If the page blocks the library, the step returns ",[94,524,525],{},"ERROR: library blocked by page CSP - run on a different page"," instead of failing silently.",[13,528,529,530,533,534,537,538,82],{},"To change the file name, edit the ",[94,531,532],{},"filename"," value. To switch to landscape, change ",[94,535,536],{},"orientation"," to ",[94,539,540],{},"landscape",[29,542,544],{"id":543},"step-3-wait-for-the-export","Step 3: Wait for the export",[10,546],{},[13,548,549],{},"The PDF generates asynchronously, so give it time to finish before the automation moves on.",[52,551,552,562],{},[39,553,56,554,79,560,82],{},[17,555,557],{"href":556},"\u002Fdocs\u002Fno-code-tool\u002Freference\u002Fsteps\u002Fwait",[21,558,559],{},"Wait",[21,561,23],{},[39,563,564],{},"Set it to 2000 to 3000 milliseconds. For large or image-heavy pages, wait longer.",[13,566,567],{},[568,569],"img",{"alt":570,"src":571},"Exporting a web page as a PDF with an axiom.ai browser automation","\u002Fguides\u002Fexport-webpage-as-a-pdf.webp",[29,573,575],{"id":574},"limitations","Limitations",[10,577],{},[36,579,580,590,596],{},[39,581,582,585,586,589],{},[21,583,584],{},"Strict sites block the library."," Pages with a strict Content Security Policy refuse the CDN script. The step returns the ",[94,587,588],{},"ERROR"," text above. There's no workaround on that page; export a different page or source.",[39,591,592,595],{},[21,593,594],{},"The output is a rendering, not a print."," html2pdf.js redraws the page into the PDF. Complex layouts, fixed headers, and some fonts can look different from Chrome's own print output.",[39,597,598,601,602,604],{},[21,599,600],{},"Very long pages take longer."," Increase the ",[21,603,559],{}," step's duration if your PDF comes out truncated or the download doesn't appear.",[29,606,608],{"id":607},"does-it-have-to-be-a-pdf","Does it have to be a PDF?",[10,610],{},[13,612,613],{},"Often it doesn't. If you need a record of what the page looked like rather than a document file, the built-in screenshot steps do the same job with no code and no risk of being blocked:",[36,615,616,625],{},[39,617,618,624],{},[17,619,621],{"href":620},"\u002Fdocs\u002Fno-code-tool\u002Freference\u002Fsteps\u002Fsave-screenshot-locally",[21,622,623],{},"Save screenshot locally"," saves an image of the page to your computer.",[39,626,627,633],{},[17,628,630],{"href":629},"\u002Fdocs\u002Fno-code-tool\u002Freference\u002Fsteps\u002Fsave-screenshot-to-google-drive",[21,631,632],{},"Save screenshot to Google Drive"," saves it to a Drive folder instead.",[13,635,636],{},"Use the JavaScript workaround when the output genuinely has to be a PDF: archiving, invoices, or uploading to a system that only accepts PDF files.",[29,638,640],{"id":639},"export-with-the-chrome-api","Export with the Chrome API",[10,642],{},[13,644,645,646,650],{},"If you're comfortable with code, the ",[17,647,649],{"href":648},"\u002Fdocs\u002Fdeveloper-hub\u002Fapi\u002Fcdp","Chrome API"," sidesteps the limitation entirely. The Chrome DevTools Protocol includes native print-to-PDF, so a script connected to a cloud browser can produce the same PDF the print dialog would. Nothing is injected into the page, so strict Content Security Policies don't affect it.",[87,652,654],{"className":89,"code":653,"language":91,"meta":92,"style":92},"const puppeteer = require(\"puppeteer\");\n\nconst browser = await puppeteer.connect({\n  browserWSEndpoint: \"wss:\u002F\u002Fcdp-lb.axiom.ai\u002F?token=YOUR_API_KEY\"\n});\n\nconst page = await browser.newPage();\nawait page.goto(\"https:\u002F\u002Fexample.com\", { waitUntil: \"networkidle0\" });\nawait page.pdf({ path: \"page.pdf\", format: \"A4\" });\n\nawait browser.close();\n",[94,655,656,675,679,699,707,712,716,735,759,781,785],{"__ignoreMap":92},[97,657,658,660,663,665,668,670,673],{"class":99,"line":100},[97,659,123],{"class":122},[97,661,662],{"class":126}," puppeteer",[97,664,130],{"class":122},[97,666,667],{"class":192}," require",[97,669,196],{"class":137},[97,671,672],{"class":133},"\"puppeteer\"",[97,674,202],{"class":137},[97,676,677],{"class":99,"line":107},[97,678,145],{"emptyLinePlaceholder":144},[97,680,681,683,686,688,691,694,697],{"class":99,"line":113},[97,682,123],{"class":122},[97,684,685],{"class":126}," browser",[97,687,130],{"class":122},[97,689,690],{"class":122}," await",[97,692,693],{"class":137}," puppeteer.",[97,695,696],{"class":192},"connect",[97,698,426],{"class":137},[97,700,701,704],{"class":99,"line":119},[97,702,703],{"class":137},"  browserWSEndpoint: ",[97,705,706],{"class":133},"\"wss:\u002F\u002Fcdp-lb.axiom.ai\u002F?token=YOUR_API_KEY\"\n",[97,708,709],{"class":99,"line":141},[97,710,711],{"class":137},"});\n",[97,713,714],{"class":99,"line":148},[97,715,145],{"emptyLinePlaceholder":144},[97,717,718,720,723,725,727,730,733],{"class":99,"line":154},[97,719,123],{"class":122},[97,721,722],{"class":126}," page",[97,724,130],{"class":122},[97,726,690],{"class":122},[97,728,729],{"class":137}," browser.",[97,731,732],{"class":192},"newPage",[97,734,501],{"class":137},[97,736,737,739,742,745,747,750,753,756],{"class":99,"line":178},[97,738,408],{"class":122},[97,740,741],{"class":137}," page.",[97,743,744],{"class":192},"goto",[97,746,196],{"class":137},[97,748,749],{"class":133},"\"https:\u002F\u002Fexample.com\"",[97,751,752],{"class":137},", { waitUntil: ",[97,754,755],{"class":133},"\"networkidle0\"",[97,757,758],{"class":137}," });\n",[97,760,761,763,765,768,771,774,776,779],{"class":99,"line":205},[97,762,408],{"class":122},[97,764,741],{"class":137},[97,766,767],{"class":192},"pdf",[97,769,770],{"class":137},"({ path: ",[97,772,773],{"class":133},"\"page.pdf\"",[97,775,461],{"class":137},[97,777,778],{"class":133},"\"A4\"",[97,780,758],{"class":137},[97,782,783],{"class":99,"line":218},[97,784,145],{"emptyLinePlaceholder":144},[97,786,787,789,791,794],{"class":99,"line":230},[97,788,408],{"class":122},[97,790,729],{"class":137},[97,792,793],{"class":192},"close",[97,795,501],{"class":137},[13,797,798,799,805],{},"This produces true print-quality output and works on pages that block the html2pdf.js library. Generate an API key in the ",[17,800,804],{"href":801,"rel":802},"https:\u002F\u002Fcode.axiom.ai",[803],"nofollow","Code Dashboard"," to try it.",[29,807,809],{"id":808},"next-steps","Next steps",[10,811],{},[36,813,814,823,833],{},[39,815,816,817,82],{},"Save the raw page instead with ",[17,818,820],{"href":819},"\u002Fdocs\u002Fno-code-tool\u002Freference\u002Fsteps\u002Fsave-page-html",[21,821,822],{},"Save page HTML",[39,824,825,826,832],{},"Browse all the no-code ",[17,827,829],{"href":828},"\u002Fsteps",[21,830,831],{},"Steps"," to see what else you can automate.",[39,834,835,836,839],{},"Read the ",[17,837,838],{"href":648},"Chrome API guide"," for session lifecycle and limits.",[841,842,843],"style",{},"html pre.shiki code .sU953, html code.shiki .sU953{--shiki-default:#6E7781;--shiki-dark:#8B949E}html pre.shiki code .sjeE4, html code.shiki .sjeE4{--shiki-default:#CF222E;--shiki-dark:#FF7B72}html pre.shiki code .sHrmB, html code.shiki .sHrmB{--shiki-default:#0550AE;--shiki-dark:#79C0FF}html pre.shiki code .sSVrQ, html code.shiki .sSVrQ{--shiki-default:#0A3069;--shiki-dark:#A5D6FF}html pre.shiki code .s4rv2, html code.shiki .s4rv2{--shiki-default:#1F2328;--shiki-dark:#E6EDF3}html pre.shiki code .sbjLL, html code.shiki .sbjLL{--shiki-default:#8250DF;--shiki-dark:#D2A8FF}html pre.shiki code .sTDnQ, html code.shiki .sTDnQ{--shiki-default:#953800;--shiki-dark:#FFA657}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":92,"searchDepth":113,"depth":113,"links":845},[846,847,848,849,850,851,852,853],{"id":31,"depth":107,"text":32},{"id":47,"depth":107,"text":48},{"id":69,"depth":107,"text":70},{"id":543,"depth":107,"text":544},{"id":574,"depth":107,"text":575},{"id":607,"depth":107,"text":608},{"id":639,"depth":107,"text":640},{"id":808,"depth":107,"text":809},null,"Save the page your automation is visiting as a PDF using a Write javascript step and html2pdf.js. No access to Chrome's print dialog needed.","md",{"metaTitle":858,"video":859,"type":860,"format":861,"intent_type":862,"intent":863,"tags":864,"platfrom":867,"pinned":144},"Export a web page as PDF with browser automation","https:\u002F\u002Fwww.youtube.com\u002Fembed\u002F5s-SbVXqpQA?si=jZ-d3LSOsi4_pQ3P","no-code","guide","pattern","web actions",[767,865,866],"screenshot","export",[862],"\u002Fguides\u002Fexport-webpage-as-pdf",{"title":5,"description":855},"guides\u002Fexport-webpage-as-pdf","kE7xavRrhieCgoFjZ33vFkclKHiJbLhbum2fDRqpMgI",{"id":4,"title":5,"body":6,"date":854,"description":855,"extension":856,"meta":857,"navigation":144,"order":854,"path":868,"seo":869,"stem":870,"__hash__":871,"metaTitle":858,"video":859,"type":860,"format":861,"intent_type":862,"intent":863,"tags":864,"platfrom":867,"pinned":144},{"id":4,"title":5,"body":874,"date":854,"description":855,"extension":856,"meta":1469,"navigation":144,"order":854,"path":868,"seo":1472,"stem":870,"__hash__":871},{"type":7,"value":875,"toc":1459},[876,878,884,886,888,890,896,898,900,910,912,914,924,1224,1228,1236,1238,1240,1242,1254,1258,1260,1262,1280,1282,1284,1286,1300,1302,1304,1306,1310,1430,1435,1437,1439,1457],[10,877],{},[13,879,15,880,24],{},[17,881,882],{"href":19},[21,883,23],{},[26,885],{},[29,887,32],{"id":31},[10,889],{},[36,891,892,894],{},[39,893,41],{},[39,895,44],{},[29,897,48],{"id":47},[10,899],{},[52,901,902,908],{},[39,903,56,904,63],{},[17,905,906],{"href":59},[21,907,62],{},[39,909,66],{},[29,911,70],{"id":69},[10,913],{},[52,915,916,922],{},[39,917,56,918,79,920,82],{},[21,919,23],{},[21,921,62],{},[39,923,85],{},[87,925,926],{"className":89,"code":90,"language":91,"meta":92,"style":92},[94,927,928,932,936,940,952,956,960,976,994,1004,1012,1016,1020,1024,1050,1070,1092,1096,1100,1104,1120,1130,1134,1138,1142,1150,1158,1166,1174,1190,1194,1202,1210,1214],{"__ignoreMap":92},[97,929,930],{"class":99,"line":100},[97,931,104],{"class":103},[97,933,934],{"class":99,"line":107},[97,935,110],{"class":103},[97,937,938],{"class":99,"line":113},[97,939,116],{"class":103},[97,941,942,944,946,948,950],{"class":99,"line":119},[97,943,123],{"class":122},[97,945,127],{"class":126},[97,947,130],{"class":122},[97,949,134],{"class":133},[97,951,138],{"class":137},[97,953,954],{"class":99,"line":141},[97,955,145],{"emptyLinePlaceholder":144},[97,957,958],{"class":99,"line":148},[97,959,151],{"class":103},[97,961,962,964,966,968,970,972,974],{"class":99,"line":154},[97,963,157],{"class":122},[97,965,160],{"class":137},[97,967,163],{"class":122},[97,969,166],{"class":137},[97,971,169],{"class":122},[97,973,172],{"class":133},[97,975,175],{"class":137},[97,977,978,980,982,984,986,988,990,992],{"class":99,"line":178},[97,979,181],{"class":122},[97,981,184],{"class":126},[97,983,130],{"class":122},[97,985,189],{"class":137},[97,987,193],{"class":192},[97,989,196],{"class":137},[97,991,199],{"class":133},[97,993,202],{"class":137},[97,995,996,998,1000,1002],{"class":99,"line":205},[97,997,208],{"class":137},[97,999,211],{"class":122},[97,1001,127],{"class":126},[97,1003,138],{"class":137},[97,1005,1006,1008,1010],{"class":99,"line":218},[97,1007,221],{"class":137},[97,1009,224],{"class":192},[97,1011,227],{"class":137},[97,1013,1014],{"class":99,"line":230},[97,1015,233],{"class":137},[97,1017,1018],{"class":99,"line":236},[97,1019,145],{"emptyLinePlaceholder":144},[97,1021,1022],{"class":99,"line":241},[97,1023,244],{"class":103},[97,1025,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048],{"class":99,"line":247},[97,1027,250],{"class":122},[97,1029,160],{"class":137},[97,1031,255],{"class":122},[97,1033,258],{"class":137},[97,1035,211],{"class":122},[97,1037,263],{"class":126},[97,1039,266],{"class":137},[97,1041,269],{"class":122},[97,1043,272],{"class":126},[97,1045,275],{"class":137},[97,1047,278],{"class":122},[97,1049,175],{"class":137},[97,1051,1052,1054,1056,1058,1060,1062,1064,1066,1068],{"class":99,"line":283},[97,1053,286],{"class":122},[97,1055,160],{"class":137},[97,1057,163],{"class":122},[97,1059,166],{"class":137},[97,1061,295],{"class":122},[97,1063,172],{"class":133},[97,1065,300],{"class":137},[97,1067,303],{"class":122},[97,1069,138],{"class":137},[97,1071,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090],{"class":99,"line":308},[97,1073,311],{"class":122},[97,1075,314],{"class":122},[97,1077,317],{"class":126},[97,1079,196],{"class":137},[97,1081,323],{"class":322},[97,1083,326],{"class":122},[97,1085,329],{"class":192},[97,1087,332],{"class":137},[97,1089,335],{"class":126},[97,1091,338],{"class":137},[97,1093,1094],{"class":99,"line":341},[97,1095,233],{"class":137},[97,1097,1098],{"class":99,"line":346},[97,1099,145],{"emptyLinePlaceholder":144},[97,1101,1102],{"class":99,"line":351},[97,1103,354],{"class":103},[97,1105,1106,1108,1110,1112,1114,1116,1118],{"class":99,"line":357},[97,1107,157],{"class":122},[97,1109,160],{"class":137},[97,1111,163],{"class":122},[97,1113,166],{"class":137},[97,1115,169],{"class":122},[97,1117,172],{"class":133},[97,1119,175],{"class":137},[97,1121,1122,1124,1126,1128],{"class":99,"line":374},[97,1123,377],{"class":122},[97,1125,380],{"class":137},[97,1127,383],{"class":133},[97,1129,386],{"class":137},[97,1131,1132],{"class":99,"line":389},[97,1133,233],{"class":137},[97,1135,1136],{"class":99,"line":394},[97,1137,145],{"emptyLinePlaceholder":144},[97,1139,1140],{"class":99,"line":399},[97,1141,402],{"class":103},[97,1143,1144,1146,1148],{"class":99,"line":405},[97,1145,408],{"class":122},[97,1147,411],{"class":192},[97,1149,414],{"class":137},[97,1151,1152,1154,1156],{"class":99,"line":417},[97,1153,420],{"class":137},[97,1155,423],{"class":192},[97,1157,426],{"class":137},[97,1159,1160,1162,1164],{"class":99,"line":429},[97,1161,432],{"class":137},[97,1163,435],{"class":126},[97,1165,438],{"class":137},[97,1167,1168,1170,1172],{"class":99,"line":441},[97,1169,444],{"class":137},[97,1171,447],{"class":133},[97,1173,438],{"class":137},[97,1175,1176,1178,1180,1182,1184,1186,1188],{"class":99,"line":452},[97,1177,455],{"class":137},[97,1179,458],{"class":133},[97,1181,461],{"class":137},[97,1183,464],{"class":133},[97,1185,467],{"class":137},[97,1187,470],{"class":133},[97,1189,473],{"class":137},[97,1191,1192],{"class":99,"line":476},[97,1193,479],{"class":137},[97,1195,1196,1198,1200],{"class":99,"line":482},[97,1197,420],{"class":137},[97,1199,487],{"class":192},[97,1201,490],{"class":137},[97,1203,1204,1206,1208],{"class":99,"line":493},[97,1205,420],{"class":137},[97,1207,498],{"class":192},[97,1209,501],{"class":137},[97,1211,1212],{"class":99,"line":504},[97,1213,145],{"emptyLinePlaceholder":144},[97,1215,1216,1218,1220,1222],{"class":99,"line":509},[97,1217,512],{"class":122},[97,1219,380],{"class":137},[97,1221,517],{"class":133},[97,1223,386],{"class":137},[13,1225,522,1226,526],{},[94,1227,525],{},[13,1229,529,1230,533,1232,537,1234,82],{},[94,1231,532],{},[94,1233,536],{},[94,1235,540],{},[29,1237,544],{"id":543},[10,1239],{},[13,1241,549],{},[52,1243,1244,1252],{},[39,1245,56,1246,79,1250,82],{},[17,1247,1248],{"href":556},[21,1249,559],{},[21,1251,23],{},[39,1253,564],{},[13,1255,1256],{},[568,1257],{"alt":570,"src":571},[29,1259,575],{"id":574},[10,1261],{},[36,1263,1264,1270,1274],{},[39,1265,1266,585,1268,589],{},[21,1267,584],{},[94,1269,588],{},[39,1271,1272,595],{},[21,1273,594],{},[39,1275,1276,601,1278,604],{},[21,1277,600],{},[21,1279,559],{},[29,1281,608],{"id":607},[10,1283],{},[13,1285,613],{},[36,1287,1288,1294],{},[39,1289,1290,624],{},[17,1291,1292],{"href":620},[21,1293,623],{},[39,1295,1296,633],{},[17,1297,1298],{"href":629},[21,1299,632],{},[13,1301,636],{},[29,1303,640],{"id":639},[10,1305],{},[13,1307,645,1308,650],{},[17,1309,649],{"href":648},[87,1311,1312],{"className":89,"code":653,"language":91,"meta":92,"style":92},[94,1313,1314,1330,1334,1350,1356,1360,1364,1380,1398,1416,1420],{"__ignoreMap":92},[97,1315,1316,1318,1320,1322,1324,1326,1328],{"class":99,"line":100},[97,1317,123],{"class":122},[97,1319,662],{"class":126},[97,1321,130],{"class":122},[97,1323,667],{"class":192},[97,1325,196],{"class":137},[97,1327,672],{"class":133},[97,1329,202],{"class":137},[97,1331,1332],{"class":99,"line":107},[97,1333,145],{"emptyLinePlaceholder":144},[97,1335,1336,1338,1340,1342,1344,1346,1348],{"class":99,"line":113},[97,1337,123],{"class":122},[97,1339,685],{"class":126},[97,1341,130],{"class":122},[97,1343,690],{"class":122},[97,1345,693],{"class":137},[97,1347,696],{"class":192},[97,1349,426],{"class":137},[97,1351,1352,1354],{"class":99,"line":119},[97,1353,703],{"class":137},[97,1355,706],{"class":133},[97,1357,1358],{"class":99,"line":141},[97,1359,711],{"class":137},[97,1361,1362],{"class":99,"line":148},[97,1363,145],{"emptyLinePlaceholder":144},[97,1365,1366,1368,1370,1372,1374,1376,1378],{"class":99,"line":154},[97,1367,123],{"class":122},[97,1369,722],{"class":126},[97,1371,130],{"class":122},[97,1373,690],{"class":122},[97,1375,729],{"class":137},[97,1377,732],{"class":192},[97,1379,501],{"class":137},[97,1381,1382,1384,1386,1388,1390,1392,1394,1396],{"class":99,"line":178},[97,1383,408],{"class":122},[97,1385,741],{"class":137},[97,1387,744],{"class":192},[97,1389,196],{"class":137},[97,1391,749],{"class":133},[97,1393,752],{"class":137},[97,1395,755],{"class":133},[97,1397,758],{"class":137},[97,1399,1400,1402,1404,1406,1408,1410,1412,1414],{"class":99,"line":205},[97,1401,408],{"class":122},[97,1403,741],{"class":137},[97,1405,767],{"class":192},[97,1407,770],{"class":137},[97,1409,773],{"class":133},[97,1411,461],{"class":137},[97,1413,778],{"class":133},[97,1415,758],{"class":137},[97,1417,1418],{"class":99,"line":218},[97,1419,145],{"emptyLinePlaceholder":144},[97,1421,1422,1424,1426,1428],{"class":99,"line":230},[97,1423,408],{"class":122},[97,1425,729],{"class":137},[97,1427,793],{"class":192},[97,1429,501],{"class":137},[13,1431,798,1432,805],{},[17,1433,804],{"href":801,"rel":1434},[803],[29,1436,809],{"id":808},[10,1438],{},[36,1440,1441,1447,1453],{},[39,1442,816,1443,82],{},[17,1444,1445],{"href":819},[21,1446,822],{},[39,1448,825,1449,832],{},[17,1450,1451],{"href":828},[21,1452,831],{},[39,1454,835,1455,839],{},[17,1456,838],{"href":648},[841,1458,843],{},{"title":92,"searchDepth":113,"depth":113,"links":1460},[1461,1462,1463,1464,1465,1466,1467,1468],{"id":31,"depth":107,"text":32},{"id":47,"depth":107,"text":48},{"id":69,"depth":107,"text":70},{"id":543,"depth":107,"text":544},{"id":574,"depth":107,"text":575},{"id":607,"depth":107,"text":608},{"id":639,"depth":107,"text":640},{"id":808,"depth":107,"text":809},{"metaTitle":858,"video":859,"type":860,"format":861,"intent_type":862,"intent":863,"tags":1470,"platfrom":1471,"pinned":144},[767,865,866],[862],{"title":5,"description":855},1785947361538]