8232 lines
1.6 MiB
Vendored
8232 lines
1.6 MiB
Vendored
{
|
||
"cells": [
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:08:40.349875Z",
|
||
"start_time": "2025-05-28T11:08:40.322051Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": "%useLatestDescriptors",
|
||
"outputs": [],
|
||
"execution_count": 1
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:08:45.785143Z",
|
||
"start_time": "2025-05-28T11:08:40.508914Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": "%use dataframe",
|
||
"outputs": [],
|
||
"execution_count": 2
|
||
},
|
||
{
|
||
"metadata": {},
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"This example uses the YouTube Data API: [https://developers.google.com/youtube/v3/docs](https://developers.google.com/youtube/v3/docs).\n",
|
||
"Follow the tutorials over there to gain an API key.\n",
|
||
"\n",
|
||
"When running in Kotlin Notebook, you can set the API key as an environment variable, like \"YOUTUBE_API_KEY=YourKeyHere\""
|
||
]
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:08:45.943071Z",
|
||
"start_time": "2025-05-28T11:08:45.795300Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": "val apiKey = System.getenv(\"YOUTUBE_API_KEY\")",
|
||
"outputs": [],
|
||
"execution_count": 3
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:08:46.212151Z",
|
||
"start_time": "2025-05-28T11:08:45.947088Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": "fun load(path: String): AnyRow = DataRow.read(\"https://www.googleapis.com/youtube/v3/$path&key=$apiKey\")",
|
||
"outputs": [],
|
||
"execution_count": 4
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:08:47.142326Z",
|
||
"start_time": "2025-05-28T11:08:46.216500Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"fun load(path: String, maxPages: Int): AnyFrame {\n",
|
||
" val rows = mutableListOf<AnyRow>()\n",
|
||
" var pagePath = path\n",
|
||
" do {\n",
|
||
" val row = load(pagePath)\n",
|
||
" rows.add(row)\n",
|
||
" val next = row.getValueOrNull<String>(\"nextPageToken\")\n",
|
||
" pagePath = path + \"&pageToken=\" + next\n",
|
||
" } while (next != null && rows.size < maxPages)\n",
|
||
" return rows.concat()\n",
|
||
"}"
|
||
],
|
||
"outputs": [],
|
||
"execution_count": 5
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:08:53.720408Z",
|
||
"start_time": "2025-05-28T11:08:47.147977Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"val df = load(\"search?q=cute%20cats&maxResults=50&part=snippet\", 5)\n",
|
||
"df"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/html": [
|
||
" <iframe onload=\"o_resize_iframe_out_1()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_1\" frameBorder=\"0\" srcdoc=\" <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type="text/css">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
":root {\n",
|
||
" --scroll-bg: #f5f5f5;\n",
|
||
" --scroll-fg: #b3b3b3;\n",
|
||
"}\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"]{\n",
|
||
" --scroll-bg: #3c3c3c;\n",
|
||
" --scroll-fg: #97e1fb;\n",
|
||
"}\n",
|
||
"body {\n",
|
||
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar {\n",
|
||
" width: 10px; /* Mostly for vertical scrollbars */\n",
|
||
" height: 10px; /* Mostly for horizontal scrollbars */\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-thumb {\n",
|
||
" background-color: var(--scroll-fg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-track {\n",
|
||
" background-color: var(--scroll-bg);\n",
|
||
"}\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class="dataframe" id="df_1560281088"></table>\n",
|
||
"\n",
|
||
"<p class="dataframe_description">DataFrame: rowsCount = 5, columnsCount = 7</p>\n",
|
||
"\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" (function () {\n",
|
||
" window.DataFrame = window.DataFrame || new (function () {\n",
|
||
" this.addTable = function (df) {\n",
|
||
" let cols = df.cols;\n",
|
||
" for (let i = 0; i < cols.length; i++) {\n",
|
||
" for (let c of cols[i].children) {\n",
|
||
" cols[c].parent = i;\n",
|
||
" }\n",
|
||
" }\n",
|
||
" df.nrow = 0\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" if (df.cols[i].values.length > df.nrow) df.nrow = df.cols[i].values.length\n",
|
||
" }\n",
|
||
" if (df.id === df.rootId) {\n",
|
||
" df.expandedFrames = new Set()\n",
|
||
" df.childFrames = {}\n",
|
||
" const table = this.getTableElement(df.id)\n",
|
||
" table.df = df\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" let col = df.cols[i]\n",
|
||
" if (col.parent === undefined && col.children.length > 0) col.expanded = true\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" const rootDf = this.getTableData(df.rootId)\n",
|
||
" rootDf.childFrames[df.id] = df\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderData = function (df) {\n",
|
||
" let result = []\n",
|
||
" let pos = 0\n",
|
||
" for (let col = 0; col < df.cols.length; col++) {\n",
|
||
" if (df.cols[col].parent === undefined)\n",
|
||
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
|
||
" }\n",
|
||
" for (let i = 0; i < result.length; i++) {\n",
|
||
" let row = result[i]\n",
|
||
" for (let j = 0; j < row.length; j++) {\n",
|
||
" let cell = row[j]\n",
|
||
" if (j === 0)\n",
|
||
" cell.leftBd = false\n",
|
||
" if (j < row.length - 1) {\n",
|
||
" let nextData = row[j + 1]\n",
|
||
" if (nextData.leftBd) cell.rightBd = true\n",
|
||
" else if (cell.rightBd) nextData.leftBd = true\n",
|
||
" } else cell.rightBd = false\n",
|
||
" }\n",
|
||
" }\n",
|
||
" return result\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
|
||
" if (result.length === depth) {\n",
|
||
" const array = [];\n",
|
||
" if (pos > 0) {\n",
|
||
" let j = 0\n",
|
||
" for (let i = 0; j < pos; i++) {\n",
|
||
" let c = result[depth - 1][i]\n",
|
||
" j += c.span\n",
|
||
" let copy = Object.assign({empty: true}, c)\n",
|
||
" array.push(copy)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" result.push(array)\n",
|
||
" }\n",
|
||
" const col = cols[colId];\n",
|
||
" let size = 0;\n",
|
||
" if (col.expanded) {\n",
|
||
" let childPos = pos\n",
|
||
" for (let i = 0; i < col.children.length; i++) {\n",
|
||
" let child = col.children[i]\n",
|
||
" let childLeft = i === 0 && (col.children.length > 1 || leftBorder)\n",
|
||
" let childRight = i === col.children.length - 1 && (col.children.length > 1 || rightBorder)\n",
|
||
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
|
||
" childPos += childSize\n",
|
||
" size += childSize\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" for (let i = depth + 1; i < result.length; i++)\n",
|
||
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
|
||
" size = 1\n",
|
||
" }\n",
|
||
" let left = leftBorder\n",
|
||
" let right = rightBorder\n",
|
||
" if (size > 1) {\n",
|
||
" left = true\n",
|
||
" right = true\n",
|
||
" }\n",
|
||
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
|
||
" return size\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableElement = function (id) {\n",
|
||
" return document.getElementById("df_" + id)\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableData = function (id) {\n",
|
||
" return this.getTableElement(id).df\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.createExpander = function (isExpanded) {\n",
|
||
" const svgNs = "http://www.w3.org/2000/svg"\n",
|
||
" let svg = document.createElementNS(svgNs, "svg")\n",
|
||
" svg.classList.add("expanderSvg")\n",
|
||
" let path = document.createElementNS(svgNs, "path")\n",
|
||
" if (isExpanded) {\n",
|
||
" svg.setAttribute("viewBox", "0 -2 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z")\n",
|
||
" } else {\n",
|
||
" svg.setAttribute("viewBox", "-2 0 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z")\n",
|
||
" }\n",
|
||
" path.setAttribute("fill", "currentColor")\n",
|
||
" svg.appendChild(path)\n",
|
||
" return svg\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.renderTable = function (id) {\n",
|
||
"\n",
|
||
" let table = this.getTableElement(id)\n",
|
||
"\n",
|
||
" if (table === null) return\n",
|
||
"\n",
|
||
" table.innerHTML = ""\n",
|
||
"\n",
|
||
" let df = table.df\n",
|
||
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
|
||
"\n",
|
||
" // header\n",
|
||
" let header = document.createElement("thead")\n",
|
||
" table.appendChild(header)\n",
|
||
"\n",
|
||
" let renderData = this.computeRenderData(df)\n",
|
||
" for (let j = 0; j < renderData.length; j++) {\n",
|
||
" let rowData = renderData[j]\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" let isLastRow = j === renderData.length - 1\n",
|
||
" header.appendChild(tr);\n",
|
||
" for (let i = 0; i < rowData.length; i++) {\n",
|
||
" let cell = rowData[i]\n",
|
||
" let th = document.createElement("th");\n",
|
||
" th.setAttribute("colspan", cell.span)\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId];\n",
|
||
" if (!cell.empty) {\n",
|
||
" if (col.children.length === 0) {\n",
|
||
" th.innerHTML = col.name\n",
|
||
" } else {\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" col.expanded = !col.expanded\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(col.expanded))\n",
|
||
" link.innerHTML += col.name\n",
|
||
" th.appendChild(link)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (isLastRow)\n",
|
||
" classes += " bottomBorder"\n",
|
||
" if (classes.length > 0)\n",
|
||
" th.setAttribute("class", classes)\n",
|
||
" tr.appendChild(th)\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" // body\n",
|
||
" let body = document.createElement("tbody")\n",
|
||
" table.appendChild(body)\n",
|
||
"\n",
|
||
" let columns = renderData.pop()\n",
|
||
" for (let row = 0; row < df.nrow; row++) {\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" body.appendChild(tr)\n",
|
||
" for (let i = 0; i < columns.length; i++) {\n",
|
||
" let cell = columns[i]\n",
|
||
" let td = document.createElement("td");\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId]\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (classes.length > 0)\n",
|
||
" td.setAttribute("class", classes)\n",
|
||
" tr.appendChild(td)\n",
|
||
" let value = col.values[row]\n",
|
||
" if (value.frameId !== undefined) {\n",
|
||
" let frameId = value.frameId\n",
|
||
" let expanded = rootDf.expandedFrames.has(frameId)\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" if (rootDf.expandedFrames.has(frameId))\n",
|
||
" rootDf.expandedFrames.delete(frameId)\n",
|
||
" else rootDf.expandedFrames.add(frameId)\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(expanded))\n",
|
||
" link.innerHTML += value.value\n",
|
||
" if (expanded) {\n",
|
||
" td.appendChild(link)\n",
|
||
" td.appendChild(document.createElement("p"))\n",
|
||
" const childTable = document.createElement("table")\n",
|
||
" childTable.className = "dataframe"\n",
|
||
" childTable.id = "df_" + frameId\n",
|
||
" let childDf = rootDf.childFrames[frameId]\n",
|
||
" childTable.df = childDf\n",
|
||
" td.appendChild(childTable)\n",
|
||
" this.renderTable(frameId)\n",
|
||
" if (childDf.nrow !== childDf.totalRows) {\n",
|
||
" const footer = document.createElement("p")\n",
|
||
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
|
||
" td.appendChild(footer)\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" td.appendChild(link)\n",
|
||
" }\n",
|
||
" } else if (value.style !== undefined) {\n",
|
||
" td.innerHTML = value.value\n",
|
||
" td.setAttribute("style", value.style)\n",
|
||
" } else td.innerHTML = value\n",
|
||
" this.nodeScriptReplace(td)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptReplace = function (node) {\n",
|
||
" if (this.nodeScriptIs(node) === true) {\n",
|
||
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
|
||
" } else {\n",
|
||
" let i = -1, children = node.childNodes;\n",
|
||
" while (++i < children.length) {\n",
|
||
" this.nodeScriptReplace(children[i]);\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" return node;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptClone = function (node) {\n",
|
||
" let script = document.createElement("script");\n",
|
||
" script.text = node.innerHTML;\n",
|
||
"\n",
|
||
" let i = -1, attrs = node.attributes, attr;\n",
|
||
" while (++i < attrs.length) {\n",
|
||
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
|
||
" }\n",
|
||
" return script;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptIs = function (node) {\n",
|
||
" return node.tagName === 'SCRIPT';\n",
|
||
" }\n",
|
||
" })()\n",
|
||
"\n",
|
||
" window.call_DataFrame = function (f) {\n",
|
||
" return f();\n",
|
||
" };\n",
|
||
"\n",
|
||
" let funQueue = window["kotlinQueues"] && window["kotlinQueues"]["DataFrame"];\n",
|
||
" if (funQueue) {\n",
|
||
" funQueue.forEach(function (f) {\n",
|
||
" f();\n",
|
||
" });\n",
|
||
" funQueue = [];\n",
|
||
" }\n",
|
||
"})()\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#searchListResponse","youtube#searchListResponse","youtube#searchListResponse","youtube#searchListResponse","youtube#searchListResponse"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["T6udsa-TQeP9QCyAjPWhJ3t7sU4","rTQgFk1ZugVPD-3tTsRenv8hvew","kw09tM5YNHe2PYMIqfU0BnP0DLk","KM9NoV0_IUPHwT8RUB4FUjLM0d8","zkGt4KCDetsVPV6KJt1u40y3n8A"] }, \n",
|
||
"{ name: "<span title=\"nextPageToken: String\">nextPageToken</span>", children: [], rightAlign: false, values: ["CDIQAA","CGQQAA","CJYBEAA","CMgBEAA","CPoBEAA"] }, \n",
|
||
"{ name: "<span title=\"regionCode: String\">regionCode</span>", children: [], rightAlign: false, values: ["DE","DE","DE","DE","DE"] }, \n",
|
||
"{ name: "<span title=\"totalResults: Int\">totalResults</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">1000000</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1000000</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1000000</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1000000</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1000000</span></span>"] }, \n",
|
||
"{ name: "<span title=\"resultsPerPage: Int\">resultsPerPage</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>"] }, \n",
|
||
"{ name: "<span title=\"pageInfo: DataRow<*>\">pageInfo</span>", children: [4, 5], rightAlign: false, values: ["<span class=\"formatted\" title=\"totalResults: 1000000\nresultsPerPage: 50\"><span class=\"structural\">{ </span><span class=\"structural\">totalResults: </span><span class=\"numbers\">1000000</span><span class=\"structural\">, </span><span class=\"structural\">resultsPer...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"totalResults: 1000000\nresultsPerPage: 50\"><span class=\"structural\">{ </span><span class=\"structural\">totalResults: </span><span class=\"numbers\">1000000</span><span class=\"structural\">, </span><span class=\"structural\">resultsPer...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"totalResults: 1000000\nresultsPerPage: 50\"><span class=\"structural\">{ </span><span class=\"structural\">totalResults: </span><span class=\"numbers\">1000000</span><span class=\"structural\">, </span><span class=\"structural\">resultsPer...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"totalResults: 1000000\nresultsPerPage: 50\"><span class=\"structural\">{ </span><span class=\"structural\">totalResults: </span><span class=\"numbers\">1000000</span><span class=\"structural\">, </span><span class=\"structural\">resultsPer...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"totalResults: 1000000\nresultsPerPage: 50\"><span class=\"structural\">{ </span><span class=\"structural\">totalResults: </span><span class=\"numbers\">1000000</span><span class=\"structural\">, </span><span class=\"structural\">resultsPer...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"items: DataFrame<*>\">items</span>", children: [], rightAlign: false, values: [{ frameId: 1560281089, value: "<b>DataFrame 50 x 4</b>" },{ frameId: 1560281090, value: "<b>DataFrame 50 x 4</b>" },{ frameId: 1560281091, value: "<b>DataFrame 50 x 4</b>" },{ frameId: 1560281092, value: "<b>DataFrame 50 x 4</b>" },{ frameId: 1560281093, value: "<b>DataFrame 50 x 4</b>" }] }, \n",
|
||
"{ name: "<span title=\"prevPageToken: String?\">prevPageToken</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>","CDIQAQ","CGQQAQ","CJYBEAE","CMgBEAE"] }, \n",
|
||
"], id: 1560281088, rootId: 1560281088, totalRows: 5 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["webdtycT-B4LmJXWkBJvVWUmcHY","t1vv105IWNG2EOHsMAK2yRtj010","2Kd_RVdhCCBb6srFTzcoirkVZro","E6nCj0vSvJRjNcEQaFQ2d8spmhM","Qg7OO4HOlZZ3YLpsJWVYBt92Kwc"] }, \n",
|
||
"{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"videoId: String\">videoId</span>", children: [], rightAlign: false, values: ["y0sF5xhGreA","tpiyEe_CqB4","wdjpworLSk8","MlDtL2hIj-Q","1UgJI6O8T2U"] }, \n",
|
||
"{ name: "<span title=\"id: DataRow<*>\">id</span>", children: [2, 3], rightAlign: false, values: ["<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: y0sF5xhGreA\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>y0s<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: tpiyEe_CqB4\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>tpi<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: wdjpworLSk8\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>wdj<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: MlDtL2hIj-Q\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>MlD<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: 1UgJI6O8T2U\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>1Ug<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"publishedAt: String\">publishedAt</span>", children: [], rightAlign: false, values: ["2023-05-28T13:00:44Z","2020-04-10T16:00:28Z","2023-09-15T22:02:00Z","2023-11-19T19:00:10Z","2025-01-14T04:24:22Z"] }, \n",
|
||
"{ name: "<span title=\"channelId: String\">channelId</span>", children: [], rightAlign: false, values: ["UCPIvT-zcQl2H0vabdXJGcpg","UCzn2gx8zzhF0A4Utk8TEDNQ","UCQQcnrcfQbWvCl2lBvF5hoQ","UCPIvT-zcQl2H0vabdXJGcpg","UCkgRhUW4sHt6bQ32dNiQVVg"] }, \n",
|
||
"{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"20 Minutes of Adorable Kittens &#55357;&#56845; | BEST Compilation\">20 Minutes of Adorable Kittens &#55357;&#56845; | B<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute and Funny Cat Videos to Keep You Smiling! &#55357;&#56369;\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520 #cat #kittens #pets\">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"30 Minutes of the Worlds CUTEST Kittens! &#55357;&#56891;&#55357;&#56469;\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"&#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\">Cute, cuddly, and utterly chaotic! Th<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\">Hoomans! Rufus here! Cats are my best<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\">shorts #catvideos #cat #funnycats #ki<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"How cute are these kittens!!! &#9786;&#65039; &#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\">How cute are these kittens!!! &#9786;&#65039; &#10024; <span class=\"structural\">...</span></span>",""] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\">https://i.ytimg.com/vi/y0sF5xhGreA/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\">https://i.ytimg.com/vi/tpiyEe_CqB4/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\">https://i.ytimg.com/vi/wdjpworLSk8/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\">https://i.ytimg.com/vi/MlDtL2hIj-Q/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\">https://i.ytimg.com/vi/1UgJI6O8T2U/de<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>"] }, \n",
|
||
"{ name: "<span title=\"default: DataRow<*>\">default</span>", children: [9, 10, 11], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\">https://i.ytimg.com/vi/y0sF5xhGreA/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\">https://i.ytimg.com/vi/tpiyEe_CqB4/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\">https://i.ytimg.com/vi/wdjpworLSk8/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\">https://i.ytimg.com/vi/MlDtL2hIj-Q/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\">https://i.ytimg.com/vi/1UgJI6O8T2U/mq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>"] }, \n",
|
||
"{ name: "<span title=\"medium: DataRow<*>\">medium</span>", children: [13, 14, 15], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\">https://i.ytimg.com/vi/y0sF5xhGreA/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\">https://i.ytimg.com/vi/tpiyEe_CqB4/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\">https://i.ytimg.com/vi/wdjpworLSk8/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\">https://i.ytimg.com/vi/MlDtL2hIj-Q/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\">https://i.ytimg.com/vi/1UgJI6O8T2U/hq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>"] }, \n",
|
||
"{ name: "<span title=\"high: DataRow<*>\">high</span>", children: [17, 18, 19], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"thumbnails: DataRow<*>\">thumbnails</span>", children: [12, 16, 20], rightAlign: false, values: ["<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/wdjpworLSk8/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"channelTitle: String\">channelTitle</span>", children: [], rightAlign: false, values: ["The Pet Collective","Rufus"," Cute Cat&#55357;&#56369;","The Pet Collective","Dancing Cat"] }, \n",
|
||
"{ name: "<span title=\"liveBroadcastContent: String\">liveBroadcastContent</span>", children: [], rightAlign: false, values: ["none","none","none","none","none"] }, \n",
|
||
"{ name: "<span title=\"publishTime: String\">publishTime</span>", children: [], rightAlign: false, values: ["2023-05-28T13:00:44Z","2020-04-10T16:00:28Z","2023-09-15T22:02:00Z","2023-11-19T19:00:10Z","2025-01-14T04:24:22Z"] }, \n",
|
||
"{ name: "<span title=\"snippet: DataRow<*>\">snippet</span>", children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: ["<span class=\"formatted\" title=\"publishedAt: 2023-05-28T13:00:44Z\nchannelId: UCPIvT-zcQl2H0vabdXJGcpg\ntitle: 20 Minutes of Adorable Kittens &#55357;&#56845; | BEST Compilation\ndescription: Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: The Pet Collective\nliveBroadcastContent: none\npublishTime: 2023-05-28T13:00:44Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-05-28T13:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2020-04-10T16:00:28Z\nchannelId: UCzn2gx8zzhF0A4Utk8TEDNQ\ntitle: Cute and Funny Cat Videos to Keep You Smiling! &#55357;&#56369;\ndescription: Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Rufus\nliveBroadcastContent: none\npublishTime: 2020-04-10T16:00:28Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2020-04-10T16:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-09-15T22:02:00Z\nchannelId: UCQQcnrcfQbWvCl2lBvF5hoQ\ntitle: Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520 #cat #kittens #pets\ndescription: shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\nthumbnails: { default:{ url:https://i.ytimg.com/vi/wdjpworLSk8/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Cute Cat&#55357;&#56369;\nliveBroadcastContent: none\npublishTime: 2023-09-15T22:02:00Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-09-15T22:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-11-19T19:00:10Z\nchannelId: UCPIvT-zcQl2H0vabdXJGcpg\ntitle: 30 Minutes of the Worlds CUTEST Kittens! &#55357;&#56891;&#55357;&#56469;\ndescription: How cute are these kittens!!! &#9786;&#65039; &#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: The Pet Collective\nliveBroadcastContent: none\npublishTime: 2023-11-19T19:00:10Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-11-19T19:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-01-14T04:24:22Z\nchannelId: UCkgRhUW4sHt6bQ32dNiQVVg\ntitle: &#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Dancing Cat\nliveBroadcastContent: none\npublishTime: 2025-01-14T04:24:22Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-01-14T04:2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281089, rootId: 1560281088, totalRows: 50 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["kv7MVSZ2aeop-dOPcp-FeAHEA50","U4EBCE6U_LhzutW4RdWfrQG96l8","3k4MUtz5wVg_nSlA9gP9iMVs-sA","G1S5_A7vd2ZXZf9RQRWdRghk-TM","D4er9BSUik1cPRR8eta_xxnq5DU"] }, \n",
|
||
"{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"videoId: String\">videoId</span>", children: [], rightAlign: false, values: ["m_zVRAWuxac","28O4PxyCG9E","8E6NNlyMG8U","NlxYY7w1UGU","Yy0DVnqKHuI"] }, \n",
|
||
"{ name: "<span title=\"id: DataRow<*>\">id</span>", children: [2, 3], rightAlign: false, values: ["<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: m_zVRAWuxac\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>m_z<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: 28O4PxyCG9E\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>28O<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: 8E6NNlyMG8U\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>8E6<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: NlxYY7w1UGU\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>Nlx<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: Yy0DVnqKHuI\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>Yy0<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"publishedAt: String\">publishedAt</span>", children: [], rightAlign: false, values: ["2025-01-19T02:00:47Z","2023-12-25T07:55:44Z","2025-04-14T17:35:40Z","2024-01-08T13:13:21Z","2024-07-22T12:19:23Z"] }, \n",
|
||
"{ name: "<span title=\"channelId: String\">channelId</span>", children: [], rightAlign: false, values: ["UCssBz_9Te2OFHBdgfgt89Lw","UCRSLeYO3BOhRAYz0vLfVSWw","UChWSzChGjwyrEPAVxi5-NfA","UCTmml_z2rBmxDUA9Ie4o_uA","UC0HRkOUeR4l1qwpRf9gLmdA"] }, \n",
|
||
"{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"#cute #cat #cats #cats101 #shorts #shortvideo #trending #trendingshorts #short #trend #cutecat\">#cute #cat #cats #cats101 #shorts #sh<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"My Kitten&#38;#39;s Name Reveal! #cat #cute #shorts\">My Kitten&#38;#39;s Name Reveal! #cat #cu<span class=\"structural\">...</span></span>","Ranking Best Cat Veterinarian Videos","Cat videos cute cats kittens &#55357;&#56891;&#55357;&#56382;","<span class=\"formatted\" title=\"Cute cats and kittens wants take a baloons !!#cutecat #catlover #catvideos #trendingshorts\">Cute cats and kittens wants take a ba<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["","<span class=\"formatted\" title=\"My Kitten&#39;s Name Reveal! #cat #cute #shorts &#10024; hi im &#10024; sugarstar &#10024; and i make #sanrio, #miniverse and #roblox gameplay ...\">My Kitten&#39;s Name Reveal! #cat #cute #<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Ranking Best Cat Veterinarian Videos #shorts #ranking #funny #cutecats #catshorts #cat.\">Ranking Best Cat Veterinarian Videos <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"cat #cats #cute #funnycat #funnycats #cutecat #funnymoments #cutecat #kitten #kittens #catvideo #catsvideo #catfunnyvideo ...\">cat #cats #cute #funnycat #funnycats <span class=\"structural\">...</span></span>",""] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/m_zVRAWuxac/default.jpg\">https://i.ytimg.com/vi/m_zVRAWuxac/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/28O4PxyCG9E/default.jpg\">https://i.ytimg.com/vi/28O4PxyCG9E/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/8E6NNlyMG8U/default.jpg\">https://i.ytimg.com/vi/8E6NNlyMG8U/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/NlxYY7w1UGU/default.jpg\">https://i.ytimg.com/vi/NlxYY7w1UGU/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Yy0DVnqKHuI/default.jpg\">https://i.ytimg.com/vi/Yy0DVnqKHuI/de<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>"] }, \n",
|
||
"{ name: "<span title=\"default: DataRow<*>\">default</span>", children: [9, 10, 11], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/m_zVRAWuxac/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/28O4PxyCG9E/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/8E6NNlyMG8U/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/NlxYY7w1UGU/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Yy0DVnqKHuI/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/m_zVRAWuxac/mqdefault.jpg\">https://i.ytimg.com/vi/m_zVRAWuxac/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/28O4PxyCG9E/mqdefault.jpg\">https://i.ytimg.com/vi/28O4PxyCG9E/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/8E6NNlyMG8U/mqdefault.jpg\">https://i.ytimg.com/vi/8E6NNlyMG8U/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/NlxYY7w1UGU/mqdefault.jpg\">https://i.ytimg.com/vi/NlxYY7w1UGU/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Yy0DVnqKHuI/mqdefault.jpg\">https://i.ytimg.com/vi/Yy0DVnqKHuI/mq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>"] }, \n",
|
||
"{ name: "<span title=\"medium: DataRow<*>\">medium</span>", children: [13, 14, 15], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/m_zVRAWuxac/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/28O4PxyCG9E/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/8E6NNlyMG8U/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/NlxYY7w1UGU/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Yy0DVnqKHuI/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/m_zVRAWuxac/hqdefault.jpg\">https://i.ytimg.com/vi/m_zVRAWuxac/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/28O4PxyCG9E/hqdefault.jpg\">https://i.ytimg.com/vi/28O4PxyCG9E/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/8E6NNlyMG8U/hqdefault.jpg\">https://i.ytimg.com/vi/8E6NNlyMG8U/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/NlxYY7w1UGU/hqdefault.jpg\">https://i.ytimg.com/vi/NlxYY7w1UGU/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Yy0DVnqKHuI/hqdefault.jpg\">https://i.ytimg.com/vi/Yy0DVnqKHuI/hq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>"] }, \n",
|
||
"{ name: "<span title=\"high: DataRow<*>\">high</span>", children: [17, 18, 19], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/m_zVRAWuxac/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/28O4PxyCG9E/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/8E6NNlyMG8U/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/NlxYY7w1UGU/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Yy0DVnqKHuI/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"thumbnails: DataRow<*>\">thumbnails</span>", children: [12, 16, 20], rightAlign: false, values: ["<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/m_zVRAWuxac/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/m_zVRAWuxac/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/m_zVRAWuxac/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/28O4PxyCG9E/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/28O4PxyCG9E/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/28O4PxyCG9E/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/8E6NNlyMG8U/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/8E6NNlyMG8U/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/8E6NNlyMG8U/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/NlxYY7w1UGU/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/NlxYY7w1UGU/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/NlxYY7w1UGU/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/Yy0DVnqKHuI/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/Yy0DVnqKHuI/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/Yy0DVnqKHuI/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"channelTitle: String\">channelTitle</span>", children: [], rightAlign: false, values: ["Cute cat&#39;s ","SugarStar","TheCatRanked","Little Kitten 21","Lovie Jennaira"] }, \n",
|
||
"{ name: "<span title=\"liveBroadcastContent: String\">liveBroadcastContent</span>", children: [], rightAlign: false, values: ["none","none","none","none","none"] }, \n",
|
||
"{ name: "<span title=\"publishTime: String\">publishTime</span>", children: [], rightAlign: false, values: ["2025-01-19T02:00:47Z","2023-12-25T07:55:44Z","2025-04-14T17:35:40Z","2024-01-08T13:13:21Z","2024-07-22T12:19:23Z"] }, \n",
|
||
"{ name: "<span title=\"snippet: DataRow<*>\">snippet</span>", children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: ["<span class=\"formatted\" title=\"publishedAt: 2025-01-19T02:00:47Z\nchannelId: UCssBz_9Te2OFHBdgfgt89Lw\ntitle: #cute #cat #cats #cats101 #shorts #shortvideo #trending #trendingshorts #short #trend #cutecat\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/m_zVRAWuxac/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/m_zVRAWuxac/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/m_zVRAWuxac/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Cute cat&#39;s \nliveBroadcastContent: none\npublishTime: 2025-01-19T02:00:47Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-01-19T02:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-12-25T07:55:44Z\nchannelId: UCRSLeYO3BOhRAYz0vLfVSWw\ntitle: My Kitten&#38;#39;s Name Reveal! #cat #cute #shorts\ndescription: My Kitten&#39;s Name Reveal! #cat #cute #shorts &#10024; hi im &#10024; sugarstar &#10024; and i make #sanrio, #miniverse and #roblox gameplay ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/28O4PxyCG9E/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/28O4PxyCG9E/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/28O4PxyCG9E/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: SugarStar\nliveBroadcastContent: none\npublishTime: 2023-12-25T07:55:44Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-12-25T07:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-04-14T17:35:40Z\nchannelId: UChWSzChGjwyrEPAVxi5-NfA\ntitle: Ranking Best Cat Veterinarian Videos\ndescription: Ranking Best Cat Veterinarian Videos #shorts #ranking #funny #cutecats #catshorts #cat.\nthumbnails: { default:{ url:https://i.ytimg.com/vi/8E6NNlyMG8U/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/8E6NNlyMG8U/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/8E6NNlyMG8U/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: TheCatRanked\nliveBroadcastContent: none\npublishTime: 2025-04-14T17:35:40Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-04-14T17:3<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-01-08T13:13:21Z\nchannelId: UCTmml_z2rBmxDUA9Ie4o_uA\ntitle: Cat videos cute cats kittens &#55357;&#56891;&#55357;&#56382;\ndescription: cat #cats #cute #funnycat #funnycats #cutecat #funnymoments #cutecat #kitten #kittens #catvideo #catsvideo #catfunnyvideo ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/NlxYY7w1UGU/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/NlxYY7w1UGU/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/NlxYY7w1UGU/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Little Kitten 21\nliveBroadcastContent: none\npublishTime: 2024-01-08T13:13:21Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-01-08T13:1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-07-22T12:19:23Z\nchannelId: UC0HRkOUeR4l1qwpRf9gLmdA\ntitle: Cute cats and kittens wants take a baloons !!#cutecat #catlover #catvideos #trendingshorts\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/Yy0DVnqKHuI/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/Yy0DVnqKHuI/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/Yy0DVnqKHuI/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Lovie Jennaira\nliveBroadcastContent: none\npublishTime: 2024-07-22T12:19:23Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-07-22T12:1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281090, rootId: 1560281088, totalRows: 50 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["ggEd1myvu6lDjMBEOIWgmZx5c8k","bHp5F2FwnGntzzcNJQTmcUsjE7U","2csCwLHNA8or8IvJ3d-NSa6En3o","SOK-uBz4Kc2orec-1RxdFnnH1es","JubiiZK2MGCnXrEmQVzgynV5VTU"] }, \n",
|
||
"{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"videoId: String\">videoId</span>", children: [], rightAlign: false, values: ["WwV1ikzS30k","ysP4toSDGL0","VNovPP-gjDI","4kyJvjssTko","vaoC5C7f1Lk"] }, \n",
|
||
"{ name: "<span title=\"id: DataRow<*>\">id</span>", children: [2, 3], rightAlign: false, values: ["<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: WwV1ikzS30k\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>WwV<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: ysP4toSDGL0\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>ysP<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: VNovPP-gjDI\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>VNo<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: 4kyJvjssTko\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>4ky<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: vaoC5C7f1Lk\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>vao<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"publishedAt: String\">publishedAt</span>", children: [], rightAlign: false, values: ["2023-06-16T12:06:05Z","2025-01-30T07:55:46Z","2024-12-24T06:59:23Z","2025-05-27T11:10:24Z","2024-10-26T22:00:39Z"] }, \n",
|
||
"{ name: "<span title=\"channelId: String\">channelId</span>", children: [], rightAlign: false, values: ["UCS56r87Y7q1SrAB-42brE-w","UCpxhEyGRH4huNK7LnuiMBaw","UCM0ynRzEUoJa1N8dYI6N-Bw","UCsjLwvtRI0XjvKFty_s0Ykg","UCmX7Iw8rYnSEB3Q-vk3dKjQ"] }, \n",
|
||
"{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["Love Story&#55357;&#56473; #cat #cats","<span class=\"formatted\" title=\"Timelapse of cute kittens from 1 day to 1 month #cat #kitten #kucinglucu #catlover #timelapse\">Timelapse of cute kittens from 1 day <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi\">Cute Cats Moment Pyari Pyari Billiyan<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cat singing &#10084;&#65039;| Cute Cats #cutecats #cat #lovecats #cats #catvideos #catshorts #kittens #catlover\">Cat singing &#10084;&#65039;| Cute Cats #cutecats #<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Woman Found Bag Of Kittens Outside Her Door &#10084;&#65039;#kitten #catshorts #catlover\">Woman Found Bag Of Kittens Outside He<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["","","<span class=\"formatted\" title=\"Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi #shorts #shortsfeed #cst ...\">Cute Cats Moment Pyari Pyari Billiyan<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cat singing | Cute Cats&#10084;&#65039; #ShortsViral #BlackCatCharm #KittenLove #BedtimeWithCats #CatsInClothes #AnimalMagic ...\">Cat singing | Cute Cats&#10084;&#65039; #ShortsVi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"If you like wholesome animal stories like this please LIKE, COMMENT, SUBSCRIBE &#10084;&#65039; #cat #cats #cute #adorable #cuteanimal ...\">If you like wholesome animal stories <span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/WwV1ikzS30k/default.jpg\">https://i.ytimg.com/vi/WwV1ikzS30k/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ysP4toSDGL0/default.jpg\">https://i.ytimg.com/vi/ysP4toSDGL0/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/VNovPP-gjDI/default.jpg\">https://i.ytimg.com/vi/VNovPP-gjDI/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/4kyJvjssTko/default.jpg\">https://i.ytimg.com/vi/4kyJvjssTko/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/vaoC5C7f1Lk/default.jpg\">https://i.ytimg.com/vi/vaoC5C7f1Lk/de<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>"] }, \n",
|
||
"{ name: "<span title=\"default: DataRow<*>\">default</span>", children: [9, 10, 11], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/WwV1ikzS30k/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ysP4toSDGL0/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/VNovPP-gjDI/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/4kyJvjssTko/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/vaoC5C7f1Lk/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/WwV1ikzS30k/mqdefault.jpg\">https://i.ytimg.com/vi/WwV1ikzS30k/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ysP4toSDGL0/mqdefault.jpg\">https://i.ytimg.com/vi/ysP4toSDGL0/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/VNovPP-gjDI/mqdefault.jpg\">https://i.ytimg.com/vi/VNovPP-gjDI/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/4kyJvjssTko/mqdefault.jpg\">https://i.ytimg.com/vi/4kyJvjssTko/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/vaoC5C7f1Lk/mqdefault.jpg\">https://i.ytimg.com/vi/vaoC5C7f1Lk/mq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>"] }, \n",
|
||
"{ name: "<span title=\"medium: DataRow<*>\">medium</span>", children: [13, 14, 15], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/WwV1ikzS30k/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ysP4toSDGL0/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/VNovPP-gjDI/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/4kyJvjssTko/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/vaoC5C7f1Lk/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/WwV1ikzS30k/hqdefault.jpg\">https://i.ytimg.com/vi/WwV1ikzS30k/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ysP4toSDGL0/hqdefault.jpg\">https://i.ytimg.com/vi/ysP4toSDGL0/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/VNovPP-gjDI/hqdefault.jpg\">https://i.ytimg.com/vi/VNovPP-gjDI/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/4kyJvjssTko/hqdefault.jpg\">https://i.ytimg.com/vi/4kyJvjssTko/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/vaoC5C7f1Lk/hqdefault.jpg\">https://i.ytimg.com/vi/vaoC5C7f1Lk/hq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>"] }, \n",
|
||
"{ name: "<span title=\"high: DataRow<*>\">high</span>", children: [17, 18, 19], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/WwV1ikzS30k/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ysP4toSDGL0/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/VNovPP-gjDI/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/4kyJvjssTko/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/vaoC5C7f1Lk/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"thumbnails: DataRow<*>\">thumbnails</span>", children: [12, 16, 20], rightAlign: false, values: ["<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/WwV1ikzS30k/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/WwV1ikzS30k/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/WwV1ikzS30k/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/ysP4toSDGL0/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/ysP4toSDGL0/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/ysP4toSDGL0/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/VNovPP-gjDI/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/VNovPP-gjDI/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/VNovPP-gjDI/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/4kyJvjssTko/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/4kyJvjssTko/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/4kyJvjssTko/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/vaoC5C7f1Lk/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/vaoC5C7f1Lk/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/vaoC5C7f1Lk/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"channelTitle: String\">channelTitle</span>", children: [], rightAlign: false, values: ["Sonyakisa8 TT","Republic Of Cat","Cat dance official ","The Black Kitten","Wholesome Animals"] }, \n",
|
||
"{ name: "<span title=\"liveBroadcastContent: String\">liveBroadcastContent</span>", children: [], rightAlign: false, values: ["none","none","none","none","none"] }, \n",
|
||
"{ name: "<span title=\"publishTime: String\">publishTime</span>", children: [], rightAlign: false, values: ["2023-06-16T12:06:05Z","2025-01-30T07:55:46Z","2024-12-24T06:59:23Z","2025-05-27T11:10:24Z","2024-10-26T22:00:39Z"] }, \n",
|
||
"{ name: "<span title=\"snippet: DataRow<*>\">snippet</span>", children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: ["<span class=\"formatted\" title=\"publishedAt: 2023-06-16T12:06:05Z\nchannelId: UCS56r87Y7q1SrAB-42brE-w\ntitle: Love Story&#55357;&#56473; #cat #cats\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/WwV1ikzS30k/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/WwV1ikzS30k/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/WwV1ikzS30k/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Sonyakisa8 TT\nliveBroadcastContent: none\npublishTime: 2023-06-16T12:06:05Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-06-16T12:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-01-30T07:55:46Z\nchannelId: UCpxhEyGRH4huNK7LnuiMBaw\ntitle: Timelapse of cute kittens from 1 day to 1 month #cat #kitten #kucinglucu #catlover #timelapse\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/ysP4toSDGL0/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/ysP4toSDGL0/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/ysP4toSDGL0/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Republic Of Cat\nliveBroadcastContent: none\npublishTime: 2025-01-30T07:55:46Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-01-30T07:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-12-24T06:59:23Z\nchannelId: UCM0ynRzEUoJa1N8dYI6N-Bw\ntitle: Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi\ndescription: Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi #shorts #shortsfeed #cst ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/VNovPP-gjDI/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/VNovPP-gjDI/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/VNovPP-gjDI/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Cat dance official \nliveBroadcastContent: none\npublishTime: 2024-12-24T06:59:23Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-12-24T06:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-05-27T11:10:24Z\nchannelId: UCsjLwvtRI0XjvKFty_s0Ykg\ntitle: Cat singing &#10084;&#65039;| Cute Cats #cutecats #cat #lovecats #cats #catvideos #catshorts #kittens #catlover\ndescription: Cat singing | Cute Cats&#10084;&#65039; #ShortsViral #BlackCatCharm #KittenLove #BedtimeWithCats #CatsInClothes #AnimalMagic ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/4kyJvjssTko/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/4kyJvjssTko/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/4kyJvjssTko/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: The Black Kitten\nliveBroadcastContent: none\npublishTime: 2025-05-27T11:10:24Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-05-27T11:1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-10-26T22:00:39Z\nchannelId: UCmX7Iw8rYnSEB3Q-vk3dKjQ\ntitle: Woman Found Bag Of Kittens Outside Her Door &#10084;&#65039;#kitten #catshorts #catlover\ndescription: If you like wholesome animal stories like this please LIKE, COMMENT, SUBSCRIBE &#10084;&#65039; #cat #cats #cute #adorable #cuteanimal ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/vaoC5C7f1Lk/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/vaoC5C7f1Lk/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/vaoC5C7f1Lk/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Wholesome Animals\nliveBroadcastContent: none\npublishTime: 2024-10-26T22:00:39Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-10-26T22:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281091, rootId: 1560281088, totalRows: 50 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["9ObA9j-MdtGGTM6FGne5wPMiEtA","mLqrLcFax6Tz-5cHIGNblejev3U","tK-o-MTRUGIlDf8ourBDV8R6Oxk","GgWSUhZhBEaFs_MS1OC87JHSB78","iLcRw6eBYyNjJ_R2aaZf40IQToU"] }, \n",
|
||
"{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"videoId: String\">videoId</span>", children: [], rightAlign: false, values: ["qhIuSHwBwQI","dAKBqZrkuhc","Lw-HvKfC5rU","fmwM8WDN2Ig","ulSiWcHV2yI"] }, \n",
|
||
"{ name: "<span title=\"id: DataRow<*>\">id</span>", children: [2, 3], rightAlign: false, values: ["<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: qhIuSHwBwQI\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>qhI<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: dAKBqZrkuhc\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>dAK<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: Lw-HvKfC5rU\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>Lw-<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: fmwM8WDN2Ig\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>fmw<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: ulSiWcHV2yI\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>ulS<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"publishedAt: String\">publishedAt</span>", children: [], rightAlign: false, values: ["2025-05-26T19:55:00Z","2023-03-31T09:15:22Z","2025-05-26T09:52:12Z","2024-09-26T10:54:13Z","2024-11-21T01:34:17Z"] }, \n",
|
||
"{ name: "<span title=\"channelId: String\">channelId</span>", children: [], rightAlign: false, values: ["UCHU9APgMgi5ebeiMXD4FasA","UCp7VGGSdfi3QDt7JA9GuLMA","UCGXEyVf71QKVRzLYBnQcj5Q","UCd6jSrh0GcECPVig3O2QPoQ","UCMTq26KYuWZ2pvgh6F1paLw"] }, \n",
|
||
"{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Other Cats Are Cute&#8230; But not mine #Cats #FunnyCats #CuteCats #CatShorts #Pets #Kitten\">Other Cats Are Cute&#8230; But not mine #Ca<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"dancing cat&#55357;&#56369;funny dance #shorts ytshorts #viralshorts\">dancing cat&#55357;&#56369;funny dance #shorts ytsh<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"SUPER HARD #kpop #enhypen #cute #cats #fyp #shorts #subscribe #viralvideo #like #dance #song\">SUPER HARD #kpop #enhypen #cute #cats<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Funny Pets | 2024&#55357;&#56834; Funny Dogs And Funny Cats Videos &#55357;&#56369; &#55357;&#56341; &#55357;&#56836; #145\">Funny Pets | 2024&#55357;&#56834; Funny Dogs And Fu<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"English speaking cats #funny #funnycats #funnyanimals\">English speaking cats #funny #funnyca<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"facts #animals #pets #cats #funny #shorts #cat #falling #catlover #vacation #catlovers #catoftheday #catlove #cutecat #survived ...\">facts #animals #pets #cats #funny #sh<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"dancing cat funny dance #shorts ytshorts #viralshorts #funnycat.\">dancing cat funny dance #shorts ytsho<span class=\"structural\">...</span></span>","","",""] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/qhIuSHwBwQI/default.jpg\">https://i.ytimg.com/vi/qhIuSHwBwQI/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/dAKBqZrkuhc/default.jpg\">https://i.ytimg.com/vi/dAKBqZrkuhc/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Lw-HvKfC5rU/default.jpg\">https://i.ytimg.com/vi/Lw-HvKfC5rU/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/fmwM8WDN2Ig/default.jpg\">https://i.ytimg.com/vi/fmwM8WDN2Ig/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ulSiWcHV2yI/default.jpg\">https://i.ytimg.com/vi/ulSiWcHV2yI/de<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>"] }, \n",
|
||
"{ name: "<span title=\"default: DataRow<*>\">default</span>", children: [9, 10, 11], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/qhIuSHwBwQI/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/dAKBqZrkuhc/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Lw-HvKfC5rU/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/fmwM8WDN2Ig/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ulSiWcHV2yI/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/qhIuSHwBwQI/mqdefault.jpg\">https://i.ytimg.com/vi/qhIuSHwBwQI/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/dAKBqZrkuhc/mqdefault.jpg\">https://i.ytimg.com/vi/dAKBqZrkuhc/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Lw-HvKfC5rU/mqdefault.jpg\">https://i.ytimg.com/vi/Lw-HvKfC5rU/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/fmwM8WDN2Ig/mqdefault.jpg\">https://i.ytimg.com/vi/fmwM8WDN2Ig/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ulSiWcHV2yI/mqdefault.jpg\">https://i.ytimg.com/vi/ulSiWcHV2yI/mq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>"] }, \n",
|
||
"{ name: "<span title=\"medium: DataRow<*>\">medium</span>", children: [13, 14, 15], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/qhIuSHwBwQI/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/dAKBqZrkuhc/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Lw-HvKfC5rU/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/fmwM8WDN2Ig/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ulSiWcHV2yI/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/qhIuSHwBwQI/hqdefault.jpg\">https://i.ytimg.com/vi/qhIuSHwBwQI/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/dAKBqZrkuhc/hqdefault.jpg\">https://i.ytimg.com/vi/dAKBqZrkuhc/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Lw-HvKfC5rU/hqdefault.jpg\">https://i.ytimg.com/vi/Lw-HvKfC5rU/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/fmwM8WDN2Ig/hqdefault.jpg\">https://i.ytimg.com/vi/fmwM8WDN2Ig/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ulSiWcHV2yI/hqdefault.jpg\">https://i.ytimg.com/vi/ulSiWcHV2yI/hq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>"] }, \n",
|
||
"{ name: "<span title=\"high: DataRow<*>\">high</span>", children: [17, 18, 19], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/qhIuSHwBwQI/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/dAKBqZrkuhc/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Lw-HvKfC5rU/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/fmwM8WDN2Ig/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ulSiWcHV2yI/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"thumbnails: DataRow<*>\">thumbnails</span>", children: [12, 16, 20], rightAlign: false, values: ["<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/qhIuSHwBwQI/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/qhIuSHwBwQI/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/qhIuSHwBwQI/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/dAKBqZrkuhc/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/dAKBqZrkuhc/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/dAKBqZrkuhc/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/Lw-HvKfC5rU/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/Lw-HvKfC5rU/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/Lw-HvKfC5rU/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/fmwM8WDN2Ig/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/fmwM8WDN2Ig/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/fmwM8WDN2Ig/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/ulSiWcHV2yI/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/ulSiWcHV2yI/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/ulSiWcHV2yI/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"channelTitle: String\">channelTitle</span>", children: [], rightAlign: false, values: ["Paws &#38; Claws","Funny-animals&#55357;&#56613;(j.s.d)","Sunghoonverse&#9734;","wk.loverbaby","Prank"] }, \n",
|
||
"{ name: "<span title=\"liveBroadcastContent: String\">liveBroadcastContent</span>", children: [], rightAlign: false, values: ["none","none","none","none","none"] }, \n",
|
||
"{ name: "<span title=\"publishTime: String\">publishTime</span>", children: [], rightAlign: false, values: ["2025-05-26T19:55:00Z","2023-03-31T09:15:22Z","2025-05-26T09:52:12Z","2024-09-26T10:54:13Z","2024-11-21T01:34:17Z"] }, \n",
|
||
"{ name: "<span title=\"snippet: DataRow<*>\">snippet</span>", children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: ["<span class=\"formatted\" title=\"publishedAt: 2025-05-26T19:55:00Z\nchannelId: UCHU9APgMgi5ebeiMXD4FasA\ntitle: Other Cats Are Cute&#8230; But not mine #Cats #FunnyCats #CuteCats #CatShorts #Pets #Kitten\ndescription: facts #animals #pets #cats #funny #shorts #cat #falling #catlover #vacation #catlovers #catoftheday #catlove #cutecat #survived ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/qhIuSHwBwQI/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/qhIuSHwBwQI/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/qhIuSHwBwQI/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Paws &#38; Claws\nliveBroadcastContent: none\npublishTime: 2025-05-26T19:55:00Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-05-26T19:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-03-31T09:15:22Z\nchannelId: UCp7VGGSdfi3QDt7JA9GuLMA\ntitle: dancing cat&#55357;&#56369;funny dance #shorts ytshorts #viralshorts\ndescription: dancing cat funny dance #shorts ytshorts #viralshorts #funnycat.\nthumbnails: { default:{ url:https://i.ytimg.com/vi/dAKBqZrkuhc/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/dAKBqZrkuhc/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/dAKBqZrkuhc/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Funny-animals&#55357;&#56613;(j.s.d)\nliveBroadcastContent: none\npublishTime: 2023-03-31T09:15:22Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-03-31T09:1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-05-26T09:52:12Z\nchannelId: UCGXEyVf71QKVRzLYBnQcj5Q\ntitle: SUPER HARD #kpop #enhypen #cute #cats #fyp #shorts #subscribe #viralvideo #like #dance #song\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/Lw-HvKfC5rU/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/Lw-HvKfC5rU/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/Lw-HvKfC5rU/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Sunghoonverse&#9734;\nliveBroadcastContent: none\npublishTime: 2025-05-26T09:52:12Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-05-26T09:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-09-26T10:54:13Z\nchannelId: UCd6jSrh0GcECPVig3O2QPoQ\ntitle: Funny Pets | 2024&#55357;&#56834; Funny Dogs And Funny Cats Videos &#55357;&#56369; &#55357;&#56341; &#55357;&#56836; #145\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/fmwM8WDN2Ig/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/fmwM8WDN2Ig/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/fmwM8WDN2Ig/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: wk.loverbaby\nliveBroadcastContent: none\npublishTime: 2024-09-26T10:54:13Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-09-26T10:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-11-21T01:34:17Z\nchannelId: UCMTq26KYuWZ2pvgh6F1paLw\ntitle: English speaking cats #funny #funnycats #funnyanimals\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/ulSiWcHV2yI/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/ulSiWcHV2yI/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/ulSiWcHV2yI/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Prank\nliveBroadcastContent: none\npublishTime: 2024-11-21T01:34:17Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-11-21T01:3<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281092, rootId: 1560281088, totalRows: 50 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["f2TxVkPRNLpJYzvrWXIj7q_Wabk","7F5_h_2ke8u4iQWL8gLmCnSK7IA","umijxWlqN9aljPPVEWRaPVy3tF8","AIl90pHafNN_cYETgdG9MLY3ba0","9gZKTu4QY4pQO8fcmydm0ivnbmA"] }, \n",
|
||
"{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"videoId: String\">videoId</span>", children: [], rightAlign: false, values: ["7I3eb5BJih0","RO2UWZAPnQw","E17ONCWoXkM","owBUTRNGaHo","-DeXyOFd7gk"] }, \n",
|
||
"{ name: "<span title=\"id: DataRow<*>\">id</span>", children: [2, 3], rightAlign: false, values: ["<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: 7I3eb5BJih0\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>7I3<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: RO2UWZAPnQw\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>RO2<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: E17ONCWoXkM\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>E17<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: owBUTRNGaHo\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>owB<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: -DeXyOFd7gk\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>-De<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"publishedAt: String\">publishedAt</span>", children: [], rightAlign: false, values: ["2024-11-02T01:00:04Z","2024-09-27T09:47:58Z","2025-05-22T11:00:33Z","2025-04-11T08:03:27Z","2025-03-05T16:10:58Z"] }, \n",
|
||
"{ name: "<span title=\"channelId: String\">channelId</span>", children: [], rightAlign: false, values: ["UCBmAlqRHJ_fO5TLOjIwoS2A","UC5jmROOBtTrJFYj2yXUTraQ","UCe3mDJIOVSbyNMGpr7j8CmA","UCE99_6mOUeCM6oHOgxHtduA","UC7NY0oUbxinn_3JfcSXCbCQ"] }, \n",
|
||
"{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Cats can speak English #shorts #youtubeshorts #animals #pets #cute #cat\">Cats can speak English #shorts #youtu<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cat fish catjhalpree rac in wat &#55357;&#56881;A poor mermaid kitten &#55357;&#56895; #cat #ai #catlover #&#35987; #aicat\">Cat fish catjhalpree rac in wat &#55357;&#56881;A p<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"CUTE CATS AND KITTENS VERY HAPPY WATCHING COCOMELON &#55358;&#56688;&#55357;&#56570;\">CUTE CATS AND KITTENS VERY HAPPY WATC<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Girls Have Cute Cats Boys Have This &#55357;&#56448; (Part 3)\">Girls Have Cute Cats Boys Have This &#55357;<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Billi Ne Chori Kiya Baccha &#55358;&#56698; #cat video #cute cats #funnyvideo #viralvideo\">Billi Ne Chori Kiya Baccha &#55358;&#56698; #cat vi<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["","","","<span class=\"formatted\" title=\"Troll Face Edits | Skull Face Memes | Viral Shorts Bringing chaos, humor, and edits together in the funniest way possible.\">Troll Face Edits | Skull Face Memes |<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Disclaimer: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for &#34;fair use&#34; for purposes such ...\">Disclaimer: Copyright Disclaimer Unde<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/7I3eb5BJih0/default.jpg\">https://i.ytimg.com/vi/7I3eb5BJih0/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/RO2UWZAPnQw/default.jpg\">https://i.ytimg.com/vi/RO2UWZAPnQw/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/E17ONCWoXkM/default.jpg\">https://i.ytimg.com/vi/E17ONCWoXkM/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/owBUTRNGaHo/default.jpg\">https://i.ytimg.com/vi/owBUTRNGaHo/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/-DeXyOFd7gk/default.jpg\">https://i.ytimg.com/vi/-DeXyOFd7gk/de<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>"] }, \n",
|
||
"{ name: "<span title=\"default: DataRow<*>\">default</span>", children: [9, 10, 11], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/7I3eb5BJih0/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/RO2UWZAPnQw/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/E17ONCWoXkM/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/owBUTRNGaHo/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/-DeXyOFd7gk/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/7I3eb5BJih0/mqdefault.jpg\">https://i.ytimg.com/vi/7I3eb5BJih0/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/RO2UWZAPnQw/mqdefault.jpg\">https://i.ytimg.com/vi/RO2UWZAPnQw/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/E17ONCWoXkM/mqdefault.jpg\">https://i.ytimg.com/vi/E17ONCWoXkM/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/owBUTRNGaHo/mqdefault.jpg\">https://i.ytimg.com/vi/owBUTRNGaHo/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/-DeXyOFd7gk/mqdefault.jpg\">https://i.ytimg.com/vi/-DeXyOFd7gk/mq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>"] }, \n",
|
||
"{ name: "<span title=\"medium: DataRow<*>\">medium</span>", children: [13, 14, 15], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/7I3eb5BJih0/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/RO2UWZAPnQw/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/E17ONCWoXkM/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/owBUTRNGaHo/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/-DeXyOFd7gk/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/7I3eb5BJih0/hqdefault.jpg\">https://i.ytimg.com/vi/7I3eb5BJih0/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/RO2UWZAPnQw/hqdefault.jpg\">https://i.ytimg.com/vi/RO2UWZAPnQw/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/E17ONCWoXkM/hqdefault.jpg\">https://i.ytimg.com/vi/E17ONCWoXkM/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/owBUTRNGaHo/hqdefault.jpg\">https://i.ytimg.com/vi/owBUTRNGaHo/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/-DeXyOFd7gk/hqdefault.jpg\">https://i.ytimg.com/vi/-DeXyOFd7gk/hq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>"] }, \n",
|
||
"{ name: "<span title=\"high: DataRow<*>\">high</span>", children: [17, 18, 19], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/7I3eb5BJih0/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/RO2UWZAPnQw/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/E17ONCWoXkM/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/owBUTRNGaHo/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/-DeXyOFd7gk/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"thumbnails: DataRow<*>\">thumbnails</span>", children: [12, 16, 20], rightAlign: false, values: ["<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/7I3eb5BJih0/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/7I3eb5BJih0/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/7I3eb5BJih0/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/RO2UWZAPnQw/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/RO2UWZAPnQw/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/RO2UWZAPnQw/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/E17ONCWoXkM/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/E17ONCWoXkM/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/E17ONCWoXkM/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/owBUTRNGaHo/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/owBUTRNGaHo/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/owBUTRNGaHo/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/-DeXyOFd7gk/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/-DeXyOFd7gk/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/-DeXyOFd7gk/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"channelTitle: String\">channelTitle</span>", children: [], rightAlign: false, values: ["Shefali Rakhii","Ai Game ","Salim Ubey","Grinly","MY CAT NEW FUNNY INDIA"] }, \n",
|
||
"{ name: "<span title=\"liveBroadcastContent: String\">liveBroadcastContent</span>", children: [], rightAlign: false, values: ["none","none","none","none","none"] }, \n",
|
||
"{ name: "<span title=\"publishTime: String\">publishTime</span>", children: [], rightAlign: false, values: ["2024-11-02T01:00:04Z","2024-09-27T09:47:58Z","2025-05-22T11:00:33Z","2025-04-11T08:03:27Z","2025-03-05T16:10:58Z"] }, \n",
|
||
"{ name: "<span title=\"snippet: DataRow<*>\">snippet</span>", children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: ["<span class=\"formatted\" title=\"publishedAt: 2024-11-02T01:00:04Z\nchannelId: UCBmAlqRHJ_fO5TLOjIwoS2A\ntitle: Cats can speak English #shorts #youtubeshorts #animals #pets #cute #cat\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/7I3eb5BJih0/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/7I3eb5BJih0/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/7I3eb5BJih0/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Shefali Rakhii\nliveBroadcastContent: none\npublishTime: 2024-11-02T01:00:04Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-11-02T01:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-09-27T09:47:58Z\nchannelId: UC5jmROOBtTrJFYj2yXUTraQ\ntitle: Cat fish catjhalpree rac in wat &#55357;&#56881;A poor mermaid kitten &#55357;&#56895; #cat #ai #catlover #&#35987; #aicat\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/RO2UWZAPnQw/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/RO2UWZAPnQw/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/RO2UWZAPnQw/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Ai Game \nliveBroadcastContent: none\npublishTime: 2024-09-27T09:47:58Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-09-27T09:4<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-05-22T11:00:33Z\nchannelId: UCe3mDJIOVSbyNMGpr7j8CmA\ntitle: CUTE CATS AND KITTENS VERY HAPPY WATCHING COCOMELON &#55358;&#56688;&#55357;&#56570;\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/E17ONCWoXkM/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/E17ONCWoXkM/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/E17ONCWoXkM/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Salim Ubey\nliveBroadcastContent: none\npublishTime: 2025-05-22T11:00:33Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-05-22T11:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-04-11T08:03:27Z\nchannelId: UCE99_6mOUeCM6oHOgxHtduA\ntitle: Girls Have Cute Cats Boys Have This &#55357;&#56448; (Part 3)\ndescription: Troll Face Edits | Skull Face Memes | Viral Shorts Bringing chaos, humor, and edits together in the funniest way possible.\nthumbnails: { default:{ url:https://i.ytimg.com/vi/owBUTRNGaHo/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/owBUTRNGaHo/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/owBUTRNGaHo/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Grinly\nliveBroadcastContent: none\npublishTime: 2025-04-11T08:03:27Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-04-11T08:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-03-05T16:10:58Z\nchannelId: UC7NY0oUbxinn_3JfcSXCbCQ\ntitle: Billi Ne Chori Kiya Baccha &#55358;&#56698; #cat video #cute cats #funnyvideo #viralvideo\ndescription: Disclaimer: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for &#34;fair use&#34; for purposes such ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/-DeXyOFd7gk/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/-DeXyOFd7gk/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/-DeXyOFd7gk/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: MY CAT NEW FUNNY INDIA\nliveBroadcastContent: none\npublishTime: 2025-03-05T16:10:58Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-03-05T16:1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281093, rootId: 1560281088, totalRows: 50 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"call_DataFrame(function() { DataFrame.renderTable(1560281088) });\n",
|
||
"\n",
|
||
"\n",
|
||
" </script>\n",
|
||
" </html>\"></iframe>\n",
|
||
" <script>\n",
|
||
" function o_resize_iframe_out_1() {\n",
|
||
" let elem = document.getElementById(\"iframe_out_1\");\n",
|
||
" resize_iframe_out_1(elem);\n",
|
||
" setInterval(resize_iframe_out_1, 5000, elem);\n",
|
||
" }\n",
|
||
" function resize_iframe_out_1(el) {\n",
|
||
" let h = el.contentWindow.document.body.scrollHeight;\n",
|
||
" el.height = h === 0 ? 0 : h + 41;\n",
|
||
" }\n",
|
||
" </script> <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type=\"text/css\">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class=\"dataframe\" id=\"static_df_1560281094\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th style=\"text-align:left\">nextPageToken</th><th class=\"rightBorder\" style=\"text-align:left\">regionCode</th><th class=\"leftBorder\" style=\"text-align:left\">pageInfo</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\">items</th><th style=\"text-align:left\">prevPageToken</th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">totalResults</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">resultsPerPage</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchListResponse</td><td style=\"vertical-align:top\">T6udsa-TQeP9QCyAjPWhJ3t7sU4</td><td style=\"vertical-align:top\">CDIQAA</td><td class=\"rightBorder\" style=\"vertical-align:top\">DE</td><td class=\"leftBorder\" style=\"vertical-align:top\">1000000</td><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281095\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">webdtycT-B4LmJXWkBJvVWUmcHY</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">y0sF5xhGreA</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-28T13:00:44Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">20 Minutes of Adorable Kittens �� | B<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cute, cuddly, and utterly chaotic! Th<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-28T13:00:44Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">t1vv105IWNG2EOHsMAK2yRtj010</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">tpiyEe_CqB4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-04-10T16:00:28Z</td><td style=\"vertical-align:top\">UCzn2gx8zzhF0A4Utk8TEDNQ</td><td style=\"vertical-align:top\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Hoomans! Rufus here! Cats are my best<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Rufus</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2020-04-10T16:00:28Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">2Kd_RVdhCCBb6srFTzcoirkVZro</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">wdjpworLSk8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-09-15T22:02:00Z</td><td style=\"vertical-align:top\">UCQQcnrcfQbWvCl2lBvF5hoQ</td><td style=\"vertical-align:top\">Cute kittens❤️【30】#shorts #cutecat520<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">shorts #catvideos #cat #funnycats #ki<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\"> Cute Cat��</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-09-15T22:02:00Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">E6nCj0vSvJRjNcEQaFQ2d8spmhM</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">MlDtL2hIj-Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-11-19T19:00:10Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">How cute are these kittens!!! ☺️ ✨ <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-11-19T19:00:10Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">Qg7OO4HOlZZ3YLpsJWVYBt92Kwc</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">1UgJI6O8T2U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-14T04:24:22Z</td><td style=\"vertical-align:top\">UCkgRhUW4sHt6bQ32dNiQVVg</td><td style=\"vertical-align:top\">�� Funny cat videos | cute cats | Try<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Dancing Cat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-14T04:24:22Z</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td style=\"vertical-align:top\">null</td></tr><tr><td style=\"vertical-align:top\">youtube#searchListResponse</td><td style=\"vertical-align:top\">rTQgFk1ZugVPD-3tTsRenv8hvew</td><td style=\"vertical-align:top\">CGQQAA</td><td class=\"rightBorder\" style=\"vertical-align:top\">DE</td><td class=\"leftBorder\" style=\"vertical-align:top\">1000000</td><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281096\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">kv7MVSZ2aeop-dOPcp-FeAHEA50</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">m_zVRAWuxac</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-19T02:00:47Z</td><td style=\"vertical-align:top\">UCssBz_9Te2OFHBdgfgt89Lw</td><td style=\"vertical-align:top\">#cute #cat #cats #cats101 #shorts #sh<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/m_zVRAWuxac/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/m_zVRAWuxac/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/m_zVRAWuxac/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cute cat's </td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-19T02:00:47Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">U4EBCE6U_LhzutW4RdWfrQG96l8</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">28O4PxyCG9E</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-12-25T07:55:44Z</td><td style=\"vertical-align:top\">UCRSLeYO3BOhRAYz0vLfVSWw</td><td style=\"vertical-align:top\">My Kitten&#39;s Name Reveal! #cat #cu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">My Kitten's Name Reveal! #cat #cute #<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/28O4PxyCG9E/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/28O4PxyCG9E/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/28O4PxyCG9E/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">SugarStar</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-12-25T07:55:44Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">3k4MUtz5wVg_nSlA9gP9iMVs-sA</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">8E6NNlyMG8U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-04-14T17:35:40Z</td><td style=\"vertical-align:top\">UChWSzChGjwyrEPAVxi5-NfA</td><td style=\"vertical-align:top\">Ranking Best Cat Veterinarian Videos</td><td class=\"rightBorder\" style=\"vertical-align:top\">Ranking Best Cat Veterinarian Videos <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8E6NNlyMG8U/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8E6NNlyMG8U/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8E6NNlyMG8U/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">TheCatRanked</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-04-14T17:35:40Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">G1S5_A7vd2ZXZf9RQRWdRghk-TM</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">NlxYY7w1UGU</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-01-08T13:13:21Z</td><td style=\"vertical-align:top\">UCTmml_z2rBmxDUA9Ie4o_uA</td><td style=\"vertical-align:top\">Cat videos cute cats kittens ����</td><td class=\"rightBorder\" style=\"vertical-align:top\">cat #cats #cute #funnycat #funnycats <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NlxYY7w1UGU/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NlxYY7w1UGU/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NlxYY7w1UGU/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Little Kitten 21</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-01-08T13:13:21Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">D4er9BSUik1cPRR8eta_xxnq5DU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">Yy0DVnqKHuI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-07-22T12:19:23Z</td><td style=\"vertical-align:top\">UC0HRkOUeR4l1qwpRf9gLmdA</td><td style=\"vertical-align:top\">Cute cats and kittens wants take a ba<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Yy0DVnqKHuI/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Yy0DVnqKHuI/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Yy0DVnqKHuI/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Lovie Jennaira</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-07-22T12:19:23Z</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td style=\"vertical-align:top\">CDIQAQ</td></tr><tr><td style=\"vertical-align:top\">youtube#searchListResponse</td><td style=\"vertical-align:top\">kw09tM5YNHe2PYMIqfU0BnP0DLk</td><td style=\"vertical-align:top\">CJYBEAA</td><td class=\"rightBorder\" style=\"vertical-align:top\">DE</td><td class=\"leftBorder\" style=\"vertical-align:top\">1000000</td><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281097\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">ggEd1myvu6lDjMBEOIWgmZx5c8k</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">WwV1ikzS30k</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-06-16T12:06:05Z</td><td style=\"vertical-align:top\">UCS56r87Y7q1SrAB-42brE-w</td><td style=\"vertical-align:top\">Love Story�� #cat #cats</td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/WwV1ikzS30k/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/WwV1ikzS30k/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/WwV1ikzS30k/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Sonyakisa8 TT</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-06-16T12:06:05Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">bHp5F2FwnGntzzcNJQTmcUsjE7U</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">ysP4toSDGL0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-30T07:55:46Z</td><td style=\"vertical-align:top\">UCpxhEyGRH4huNK7LnuiMBaw</td><td style=\"vertical-align:top\">Timelapse of cute kittens from 1 day <span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ysP4toSDGL0/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ysP4toSDGL0/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ysP4toSDGL0/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Republic Of Cat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-30T07:55:46Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">2csCwLHNA8or8IvJ3d-NSa6En3o</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">VNovPP-gjDI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-12-24T06:59:23Z</td><td style=\"vertical-align:top\">UCM0ynRzEUoJa1N8dYI6N-Bw</td><td style=\"vertical-align:top\">Cute Cats Moment Pyari Pyari Billiyan<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cute Cats Moment Pyari Pyari Billiyan<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/VNovPP-gjDI/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/VNovPP-gjDI/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/VNovPP-gjDI/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cat dance official </td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-12-24T06:59:23Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">SOK-uBz4Kc2orec-1RxdFnnH1es</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">4kyJvjssTko</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-27T11:10:24Z</td><td style=\"vertical-align:top\">UCsjLwvtRI0XjvKFty_s0Ykg</td><td style=\"vertical-align:top\">Cat singing ❤️| Cute Cats #cutecats #<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cat singing | Cute Cats❤️ #ShortsVi<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/4kyJvjssTko/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/4kyJvjssTko/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/4kyJvjssTko/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Black Kitten</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-27T11:10:24Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">JubiiZK2MGCnXrEmQVzgynV5VTU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">vaoC5C7f1Lk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-10-26T22:00:39Z</td><td style=\"vertical-align:top\">UCmX7Iw8rYnSEB3Q-vk3dKjQ</td><td style=\"vertical-align:top\">Woman Found Bag Of Kittens Outside He<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">If you like wholesome animal stories <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/vaoC5C7f1Lk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/vaoC5C7f1Lk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/vaoC5C7f1Lk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Wholesome Animals</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-10-26T22:00:39Z</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td style=\"vertical-align:top\">CGQQAQ</td></tr><tr><td style=\"vertical-align:top\">youtube#searchListResponse</td><td style=\"vertical-align:top\">KM9NoV0_IUPHwT8RUB4FUjLM0d8</td><td style=\"vertical-align:top\">CMgBEAA</td><td class=\"rightBorder\" style=\"vertical-align:top\">DE</td><td class=\"leftBorder\" style=\"vertical-align:top\">1000000</td><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281098\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">9ObA9j-MdtGGTM6FGne5wPMiEtA</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">qhIuSHwBwQI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-26T19:55:00Z</td><td style=\"vertical-align:top\">UCHU9APgMgi5ebeiMXD4FasA</td><td style=\"vertical-align:top\">Other Cats Are Cute… But not mine #Ca<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">facts #animals #pets #cats #funny #sh<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/qhIuSHwBwQI/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/qhIuSHwBwQI/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/qhIuSHwBwQI/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Paws & Claws</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-26T19:55:00Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">mLqrLcFax6Tz-5cHIGNblejev3U</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">dAKBqZrkuhc</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-03-31T09:15:22Z</td><td style=\"vertical-align:top\">UCp7VGGSdfi3QDt7JA9GuLMA</td><td style=\"vertical-align:top\">dancing cat��funny dance #shorts ytsh<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">dancing cat funny dance #shorts ytsho<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/dAKBqZrkuhc/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/dAKBqZrkuhc/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/dAKBqZrkuhc/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Funny-animals��(j.s.d)</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-03-31T09:15:22Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">tK-o-MTRUGIlDf8ourBDV8R6Oxk</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">Lw-HvKfC5rU</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-26T09:52:12Z</td><td style=\"vertical-align:top\">UCGXEyVf71QKVRzLYBnQcj5Q</td><td style=\"vertical-align:top\">SUPER HARD #kpop #enhypen #cute #cats<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Lw-HvKfC5rU/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Lw-HvKfC5rU/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Lw-HvKfC5rU/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Sunghoonverse☆</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-26T09:52:12Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">GgWSUhZhBEaFs_MS1OC87JHSB78</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">fmwM8WDN2Ig</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-26T10:54:13Z</td><td style=\"vertical-align:top\">UCd6jSrh0GcECPVig3O2QPoQ</td><td style=\"vertical-align:top\">Funny Pets | 2024�� Funny Dogs And Fu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/fmwM8WDN2Ig/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/fmwM8WDN2Ig/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/fmwM8WDN2Ig/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">wk.loverbaby</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-26T10:54:13Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">iLcRw6eBYyNjJ_R2aaZf40IQToU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">ulSiWcHV2yI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-11-21T01:34:17Z</td><td style=\"vertical-align:top\">UCMTq26KYuWZ2pvgh6F1paLw</td><td style=\"vertical-align:top\">English speaking cats #funny #funnyca<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ulSiWcHV2yI/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ulSiWcHV2yI/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ulSiWcHV2yI/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Prank</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-11-21T01:34:17Z</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td style=\"vertical-align:top\">CJYBEAE</td></tr><tr><td style=\"vertical-align:top\">youtube#searchListResponse</td><td style=\"vertical-align:top\">zkGt4KCDetsVPV6KJt1u40y3n8A</td><td style=\"vertical-align:top\">CPoBEAA</td><td class=\"rightBorder\" style=\"vertical-align:top\">DE</td><td class=\"leftBorder\" style=\"vertical-align:top\">1000000</td><td class=\"rightBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281099\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">f2TxVkPRNLpJYzvrWXIj7q_Wabk</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">7I3eb5BJih0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-11-02T01:00:04Z</td><td style=\"vertical-align:top\">UCBmAlqRHJ_fO5TLOjIwoS2A</td><td style=\"vertical-align:top\">Cats can speak English #shorts #youtu<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/7I3eb5BJih0/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/7I3eb5BJih0/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/7I3eb5BJih0/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Shefali Rakhii</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-11-02T01:00:04Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">7F5_h_2ke8u4iQWL8gLmCnSK7IA</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">RO2UWZAPnQw</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-27T09:47:58Z</td><td style=\"vertical-align:top\">UC5jmROOBtTrJFYj2yXUTraQ</td><td style=\"vertical-align:top\">Cat fish catjhalpree rac in wat ��A p<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RO2UWZAPnQw/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RO2UWZAPnQw/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RO2UWZAPnQw/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Ai Game </td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-27T09:47:58Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">umijxWlqN9aljPPVEWRaPVy3tF8</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">E17ONCWoXkM</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-22T11:00:33Z</td><td style=\"vertical-align:top\">UCe3mDJIOVSbyNMGpr7j8CmA</td><td style=\"vertical-align:top\">CUTE CATS AND KITTENS VERY HAPPY WATC<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/E17ONCWoXkM/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/E17ONCWoXkM/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/E17ONCWoXkM/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Salim Ubey</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-22T11:00:33Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">AIl90pHafNN_cYETgdG9MLY3ba0</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">owBUTRNGaHo</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-04-11T08:03:27Z</td><td style=\"vertical-align:top\">UCE99_6mOUeCM6oHOgxHtduA</td><td style=\"vertical-align:top\">Girls Have Cute Cats Boys Have This �<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Troll Face Edits | Skull Face Memes |<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/owBUTRNGaHo/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/owBUTRNGaHo/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/owBUTRNGaHo/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Grinly</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-04-11T08:03:27Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">9gZKTu4QY4pQO8fcmydm0ivnbmA</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">-DeXyOFd7gk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-03-05T16:10:58Z</td><td style=\"vertical-align:top\">UC7NY0oUbxinn_3JfcSXCbCQ</td><td style=\"vertical-align:top\">Billi Ne Chori Kiya Baccha �� #cat vi<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Disclaimer: Copyright Disclaimer Unde<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/-DeXyOFd7gk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/-DeXyOFd7gk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/-DeXyOFd7gk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">MY CAT NEW FUNNY INDIA</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-03-05T16:10:58Z</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td style=\"vertical-align:top\">CMgBEAE</td></tr></tbody></table>\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" document.getElementById(\"static_df_1560281094\").style.display = \"none\";\n",
|
||
" </script>\n",
|
||
" </html>"
|
||
],
|
||
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"kind\",\"etag\",\"nextPageToken\",\"regionCode\",\"pageInfo\",\"items\",\"prevPageToken\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}],\"nrow\":5,\"ncol\":7},\"kotlin_dataframe\":[{\"kind\":\"youtube#searchListResponse\",\"etag\":\"T6udsa-TQeP9QCyAjPWhJ3t7sU4\",\"nextPageToken\":\"CDIQAA\",\"regionCode\":\"DE\",\"pageInfo\":{\"data\":{\"totalResults\":1000000,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"items\":{\"data\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"webdtycT-B4LmJXWkBJvVWUmcHY\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"y0sF5xhGreA\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-28T13:00:44Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"20 Minutes of Adorable Kittens 😍 | BEST Compilation\",\"description\":\"Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-28T13:00:44Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"t1vv105IWNG2EOHsMAK2yRtj010\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"tpiyEe_CqB4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2020-04-10T16:00:28Z\",\"channelId\":\"UCzn2gx8zzhF0A4Utk8TEDNQ\",\"title\":\"Cute and Funny Cat Videos to Keep You Smiling! 🐱\",\"description\":\"Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Rufus\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-04-10T16:00:28Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2Kd_RVdhCCBb6srFTzcoirkVZro\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"wdjpworLSk8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-09-15T22:02:00Z\",\"channelId\":\"UCQQcnrcfQbWvCl2lBvF5hoQ\",\"title\":\"Cute kittens❤️【30】#shorts #cutecat520 #cat #kittens #pets\",\"description\":\"shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\" Cute Cat🐱\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-09-15T22:02:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"E6nCj0vSvJRjNcEQaFQ2d8spmhM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"MlDtL2hIj-Q\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-11-19T19:00:10Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"30 Minutes of the Worlds CUTEST Kittens! 😻💕\",\"description\":\"How cute are these kittens!!! ☺️ ✨ Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-11-19T19:00:10Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Qg7OO4HOlZZ3YLpsJWVYBt92Kwc\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"1UgJI6O8T2U\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-14T04:24:22Z\",\"channelId\":\"UCkgRhUW4sHt6bQ32dNiQVVg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Dancing Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-14T04:24:22Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"13rrjHLEedgFgBm9W24i_MYXOAQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"cytJLvf-eVs\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2020-02-05T15:49:45Z\",\"channelId\":\"UC8hC-augAnujJeprhjI0YkA\",\"title\":\"Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals\",\"description\":\"Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Aww Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-02-05T15:49:45Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"XSVBsAd9es2GZHYdITYk3MBad58\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ASFCURj-2hQ\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-26T03:51:17Z\",\"channelId\":\"UCntAD-sZOPUXRIcw9syL-MQ\",\"title\":\"Cat 🐈 & cute baby 🐥 laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\",\"description\":\"Cat & cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Toon4\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-26T03:51:17Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"pIgN9Ru809WNiPWBtuGlWQAbxCQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"8iY66B5NB2w\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-31T13:00:16Z\",\"channelId\":\"UCU0nAvDjqfXo1fTA7xn527w\",\"title\":\"CATS: Crazy Antics and Unstoppable Chaos\",\"description\":\"Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CaD Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-31T13:00:16Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YRzi81_jEkZ9ME2DpoKA8Owvew4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"1TsaNbWEckk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T03:57:51Z\",\"channelId\":\"UCzznUMJ6TwMKb3voVs_CFvg\",\"title\":\"This cat is very cute #cats #catscute #world #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ODINKK 06\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T03:57:51Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"nST7mcLVAgbEWfHWUuHCcCmznAo\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"3URtTIdnXIk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-13T13:00:11Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"These CATS are too FUNNY! 🤣 | New Cat Videos 2025\",\"description\":\"You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats ✨ Subscribe to The Scoop for our most ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-13T13:00:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"nsPQ9fdFl-3JEvRvOGlkl3tQhAU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"afm0c53xO2o\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-26T17:41:01Z\",\"channelId\":\"UCI7EM9d6P4wRWRjbFXcxUlQ\",\"title\":\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"toyfunnycat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-26T17:41:01Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"3FMsKvZ4tnjiAOCqvXQe8JdAtQw\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"2M1AFRWPpy8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-27T12:23:24Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-27T12:23:24Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YARLzvIzFhBix3Ya8nPj0c9txvg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"o0Dvesp0lQU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-27T00:54:39Z\",\"channelId\":\"UCI4miDCCAqvOvZxIl5N3CPQ\",\"title\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations 😺😂😂 -EPS1203 #funnycats\",\"description\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CuteAnimalShare\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-27T00:54:39Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"5ByqGeQh1pBdfAUU_bOvX2Z4HfU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"NsMKvVdEPkw\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-06T14:18:05Z\",\"channelId\":\"UCDbVjtCeUnZliM4wTkhq2Lg\",\"title\":\"Kitten meowing to attract cats\",\"description\":\"cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute Baby Cats 267\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-06T14:18:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"VExjgdmgRBJWooA2pBfuAyzHSvQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"a7K-kWT_C2A\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-07-22T05:27:58Z\",\"channelId\":\"UCsVD3ZguqePDEKaPHUeaIuQ\",\"title\":\"Funny Cute Cats 😺\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ThomasTrucker\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-07-22T05:27:58Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"ZRWfV7XfiOfkFiGnTg09gFRNA7Q\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"BOK8T1HK4S8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-31T14:00:06Z\",\"channelId\":\"UChB8rMl6iOQbVk0GZ9VPuZg\",\"title\":\"12 minutes of adorable 🥰cats and kittens videos to keep you smiling 💕😅\",\"description\":\"12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat Fun 0\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-31T14:00:06Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"p_f8U8Yr1b-IO4aBb-TfHjU7G6Q\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"RFMuw3xpmFE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-10-08T13:00:29Z\",\"channelId\":\"UCuPLku1Zrk6HMr2S51yGkpQ\",\"title\":\"Silliest CATS on Earth 😂 Funny Cats Videos 2023\",\"description\":\"Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Little Love \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-10-08T13:00:29Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"eRGtBGQW7bQjHH4WIr_I0NYD6wU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Po098TRdOn4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-01-02T09:46:11Z\",\"channelId\":\"UC6OZkZ7VcRGNMV1uQwnt9Gg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"SRH Funny cats\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-01-02T09:46:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Wr7YkmJwDVgmgG5vhP6Nhx54eTg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"DrpvkCRE2P4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-25T10:30:02Z\",\"channelId\":\"UCO5aEyYJeUXv8rxQEvbUMeA\",\"title\":\"Cute baby kitten sound ❤️ #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovely Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-25T10:30:02Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"AGVb0f5--fq-CiJ0LWvkczCN6Us\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"OQoukB1VB5k\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-05T13:35:00Z\",\"channelId\":\"UC4-a76b3AGFmdsbIBfMa88A\",\"title\":\"Cute Cat Dancing Video (2)😺😍 #cat #dog #dogdance #catdance\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Pretty Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-05T13:35:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"prevPageToken\":null},{\"kind\":\"youtube#searchListResponse\",\"etag\":\"rTQgFk1ZugVPD-3tTsRenv8hvew\",\"nextPageToken\":\"CGQQAA\",\"regionCode\":\"DE\",\"pageInfo\":{\"data\":{\"totalResults\":1000000,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"items\":{\"data\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"kv7MVSZ2aeop-dOPcp-FeAHEA50\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"m_zVRAWuxac\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-19T02:00:47Z\",\"channelId\":\"UCssBz_9Te2OFHBdgfgt89Lw\",\"title\":\"#cute #cat #cats #cats101 #shorts #shortvideo #trending #trendingshorts #short #trend #cutecat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/m_zVRAWuxac/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/m_zVRAWuxac/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/m_zVRAWuxac/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute cat's \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-19T02:00:47Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"U4EBCE6U_LhzutW4RdWfrQG96l8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"28O4PxyCG9E\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-12-25T07:55:44Z\",\"channelId\":\"UCRSLeYO3BOhRAYz0vLfVSWw\",\"title\":\"My Kitten's Name Reveal! #cat #cute #shorts\",\"description\":\"My Kitten's Name Reveal! #cat #cute #shorts ✨ hi im ✨ sugarstar ✨ and i make #sanrio, #miniverse and #roblox gameplay ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/28O4PxyCG9E/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/28O4PxyCG9E/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/28O4PxyCG9E/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"SugarStar\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-12-25T07:55:44Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"3k4MUtz5wVg_nSlA9gP9iMVs-sA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"8E6NNlyMG8U\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-14T17:35:40Z\",\"channelId\":\"UChWSzChGjwyrEPAVxi5-NfA\",\"title\":\"Ranking Best Cat Veterinarian Videos\",\"description\":\"Ranking Best Cat Veterinarian Videos #shorts #ranking #funny #cutecats #catshorts #cat.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8E6NNlyMG8U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8E6NNlyMG8U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8E6NNlyMG8U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"TheCatRanked\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-14T17:35:40Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"G1S5_A7vd2ZXZf9RQRWdRghk-TM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"NlxYY7w1UGU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-01-08T13:13:21Z\",\"channelId\":\"UCTmml_z2rBmxDUA9Ie4o_uA\",\"title\":\"Cat videos cute cats kittens 😻🐾\",\"description\":\"cat #cats #cute #funnycat #funnycats #cutecat #funnymoments #cutecat #kitten #kittens #catvideo #catsvideo #catfunnyvideo ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NlxYY7w1UGU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NlxYY7w1UGU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NlxYY7w1UGU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Little Kitten 21\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-01-08T13:13:21Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"D4er9BSUik1cPRR8eta_xxnq5DU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Yy0DVnqKHuI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-22T12:19:23Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and kittens wants take a baloons !!#cutecat #catlover #catvideos #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Yy0DVnqKHuI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Yy0DVnqKHuI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Yy0DVnqKHuI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-22T12:19:23Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2pyOnj4TSf9rCLkaUXy_w6eMCSg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"tT377yJJg38\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-01T11:46:41Z\",\"channelId\":\"UCS56r87Y7q1SrAB-42brE-w\",\"title\":\"How do you like my new hat? 🤔 #cat #cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tT377yJJg38/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tT377yJJg38/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tT377yJJg38/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sonyakisa8 TT\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-01T11:46:41Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"8DdaWkp_h8RlEegI9M7K-R-T1mI\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Y4GFrpKSL8Y\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-02-06T16:15:13Z\",\"channelId\":\"UChB8rMl6iOQbVk0GZ9VPuZg\",\"title\":\"The Most dramatic cats moments ever! 😂🤣 Funny Cat Videos 2025\",\"description\":\"The Most dramatic cats moments ever! Funny Cat Videos 2025 What's inside? Ultimate drama queen cats! Funniest ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Y4GFrpKSL8Y/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Y4GFrpKSL8Y/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Y4GFrpKSL8Y/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat Fun 0\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-02-06T16:15:13Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"_51kRYQBZaO8Treb2dRLDzwcoJA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"zchD6u1s-jc\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-05-31T09:46:29Z\",\"channelId\":\"UCpxhEyGRH4huNK7LnuiMBaw\",\"title\":\"Timelapse Cute Kittens Aged 1 To 100 Days😻 #kucinglucu #kucing #kitten #catlover\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/zchD6u1s-jc/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/zchD6u1s-jc/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/zchD6u1s-jc/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Republic Of Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-05-31T09:46:29Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"keXQQuV6iYqwdgyb-jYIMa8PWOo\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"tHXwaPm9X5E\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-23T15:55:04Z\",\"channelId\":\"UCS56r87Y7q1SrAB-42brE-w\",\"title\":\"It seems Sonya's choice was obvious! 😅 #cat #cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tHXwaPm9X5E/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tHXwaPm9X5E/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tHXwaPm9X5E/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sonyakisa8 TT\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-23T15:55:04Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"5fYP0Xqv44YKUFwporcT5xD1yhU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ZvrWSP3kTXk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-04T01:30:29Z\",\"channelId\":\"UC1vr48dUfvIW2XBUu-G-4HQ\",\"title\":\"Super cat dance 🥰 #cute #cat #catlover #funny #short #shorts #shortvideo #yt #ytshort #ytshorts\",\"description\":\"Super cat dance #cute #cat #catlover #funny ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ZvrWSP3kTXk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ZvrWSP3kTXk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ZvrWSP3kTXk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-04T01:30:29Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Ga7zAz6mBQ9gRFMMdmp8pNqkGzM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"9ImL3zkMx2E\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-29T14:18:46Z\",\"channelId\":\"UC0URdxn-zazosQ0AnjAWi0Q\",\"title\":\"CAT MEMES 🐱 INSIDE OUT BUT CATS #cat #catlover #catvideos #insideout #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/9ImL3zkMx2E/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/9ImL3zkMx2E/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/9ImL3zkMx2E/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"OhCrayZ\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-29T14:18:46Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2msQkphBRNHn94rAJvYE8FVuZdU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"3AfETaI8Ias\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-02-21T18:58:48Z\",\"channelId\":\"UCS56r87Y7q1SrAB-42brE-w\",\"title\":\"Kisa ❤️ #cat #cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3AfETaI8Ias/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3AfETaI8Ias/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3AfETaI8Ias/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sonyakisa8 TT\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-02-21T18:58:48Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"GymqN78Cd3cBY61YE59x0ogtDu4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"qK9foZqrM2I\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-20T07:19:52Z\",\"channelId\":\"UCj9Hz8i_ZYGvrLqpPVmA31Q\",\"title\":\"Bad 👎Daddy 👨 cat 😳l #shorts #cute #cats #kitty #kittens #catlover #catvideos #catvideo #ai #cutecats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat 😍 shorts \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-20T07:19:52Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"J12Pf1fSfwUFUDxzLITgg6GFJ8o\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"A-M6s_4qo2Y\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-14T04:21:37Z\",\"channelId\":\"UCwyLBSi5sEnsyyJRno3g52w\",\"title\":\"Pinky Kitten #catvideos #catlover #frozen #letitgo #cutecat #cat #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/A-M6s_4qo2Y/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/A-M6s_4qo2Y/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/A-M6s_4qo2Y/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Jusbrend Meow\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-14T04:21:37Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"4p0AlQMzBQxn_eMHYGFQ7leD-Ds\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"qA_jwg0cjaU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-21T16:57:05Z\",\"channelId\":\"UCeMMKSD_Q61RqKna9eHdnSg\",\"title\":\"little kitten impatiently waiting for fish #viral #viral #cat #cuteanimal #cute #kitten#funny#funny\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qA_jwg0cjaU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qA_jwg0cjaU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qA_jwg0cjaU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Ai pet creations\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-21T16:57:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"8Q0Qu37UpBRzffO0d4eSzgf5aDQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"NvkDYazj_6Q\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2019-12-28T21:37:21Z\",\"channelId\":\"UCMFSkaC6CgOh4L3IcVP2P8g\",\"title\":\"Kittens and Cats learn Сatches FISH. 🐟🐠 Too funny |Too cute\",\"description\":\"Kittens and Cats learn Сatches Fish Too funny | Too cute Can any of them catch a fish? When shooting this video, no fish ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Teddy Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2019-12-28T21:37:21Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"DmCeiT_RTl1DCcUC3RqKby4vyVI\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"EM41yq0OUQ4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2022-10-01T00:00:09Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"Amazing Cat Performs Magic Trick! #Cats #Tricks\",\"description\":\"We've found @DavidBlaine in cat form! ✨ #PetTricksDay #CatTricks #AnimalTricks #FunnyCats #Funny #Cats #Kittens ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/EM41yq0OUQ4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/EM41yq0OUQ4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/EM41yq0OUQ4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2022-10-01T00:00:09Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"AXFxRfEFaYSz_MAPKhvIUGLNg7A\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"XTi0-Y5xhXA\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-19T02:00:11Z\",\"channelId\":\"UCdkiBdZ6VYTgizXeB03qL7A\",\"title\":\"Cute kitten #cat #lovecats #cats #catvideos #kittens #catlover #princesscat #kitten\",\"description\":\"Cute kitten #cat #lovecats #cats #catvideos #kittens #catlover #princesscat #kitten #kat #catvideo #catviedosforcatstowatch ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/XTi0-Y5xhXA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/XTi0-Y5xhXA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/XTi0-Y5xhXA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Princess cat 👑\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-19T02:00:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"JeJ6eMYJuPhqYdfvO39VcFN01PU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"FHUbU7ZTIkk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-03-14T08:01:07Z\",\"channelId\":\"UC5i4HsHtR7MuIl-MOiHA2_w\",\"title\":\"🌧️ Cute Cats in the Rain Wearing Adorable Raincoats – Meow Meow Sad Song 😿🎶\",\"description\":\"Watch these adorable cats as they bravely face the rain, dressed in the cutest little raincoats! ☔ Their tiny paws step carefully on ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/FHUbU7ZTIkk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/FHUbU7ZTIkk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/FHUbU7ZTIkk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Meow Memories\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-03-14T08:01:07Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"nBzI6-AwEQayq-HV1CNF3N4d4Ps\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"5ZLlN3JJ5Eg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-21T10:00:16Z\",\"channelId\":\"UCsjLwvtRI0XjvKFty_s0Ykg\",\"title\":\"Cat singing ❤️| Cute Cats #cutecats #cat #lovecats #cats #catvideos #catshorts #kittens #catlover\",\"description\":\"Cat singing | Cute Cats❤️ #ShortsViral #BlackCatCharm #KittenLove #BedtimeWithCats #CatsInClothes #AnimalMagic ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5ZLlN3JJ5Eg/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5ZLlN3JJ5Eg/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5ZLlN3JJ5Eg/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Black Kitten\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-21T10:00:16Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"prevPageToken\":\"CDIQAQ\"},{\"kind\":\"youtube#searchListResponse\",\"etag\":\"kw09tM5YNHe2PYMIqfU0BnP0DLk\",\"nextPageToken\":\"CJYBEAA\",\"regionCode\":\"DE\",\"pageInfo\":{\"data\":{\"totalResults\":1000000,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"items\":{\"data\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"ggEd1myvu6lDjMBEOIWgmZx5c8k\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"WwV1ikzS30k\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-06-16T12:06:05Z\",\"channelId\":\"UCS56r87Y7q1SrAB-42brE-w\",\"title\":\"Love Story💙 #cat #cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/WwV1ikzS30k/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/WwV1ikzS30k/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/WwV1ikzS30k/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sonyakisa8 TT\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-06-16T12:06:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"bHp5F2FwnGntzzcNJQTmcUsjE7U\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ysP4toSDGL0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-30T07:55:46Z\",\"channelId\":\"UCpxhEyGRH4huNK7LnuiMBaw\",\"title\":\"Timelapse of cute kittens from 1 day to 1 month #cat #kitten #kucinglucu #catlover #timelapse\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ysP4toSDGL0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ysP4toSDGL0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ysP4toSDGL0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Republic Of Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-30T07:55:46Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2csCwLHNA8or8IvJ3d-NSa6En3o\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"VNovPP-gjDI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-12-24T06:59:23Z\",\"channelId\":\"UCM0ynRzEUoJa1N8dYI6N-Bw\",\"title\":\"Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi\",\"description\":\"Cute Cats Moment Pyari Pyari Billiyan#Cat #Video #Shorts #CatVideo #CatVoice#CatSound #Billi #shorts #shortsfeed #cst ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/VNovPP-gjDI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/VNovPP-gjDI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/VNovPP-gjDI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat dance official \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-12-24T06:59:23Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"SOK-uBz4Kc2orec-1RxdFnnH1es\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"4kyJvjssTko\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T11:10:24Z\",\"channelId\":\"UCsjLwvtRI0XjvKFty_s0Ykg\",\"title\":\"Cat singing ❤️| Cute Cats #cutecats #cat #lovecats #cats #catvideos #catshorts #kittens #catlover\",\"description\":\"Cat singing | Cute Cats❤️ #ShortsViral #BlackCatCharm #KittenLove #BedtimeWithCats #CatsInClothes #AnimalMagic ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/4kyJvjssTko/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/4kyJvjssTko/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/4kyJvjssTko/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Black Kitten\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T11:10:24Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"JubiiZK2MGCnXrEmQVzgynV5VTU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"vaoC5C7f1Lk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-10-26T22:00:39Z\",\"channelId\":\"UCmX7Iw8rYnSEB3Q-vk3dKjQ\",\"title\":\"Woman Found Bag Of Kittens Outside Her Door ❤️#kitten #catshorts #catlover\",\"description\":\"If you like wholesome animal stories like this please LIKE, COMMENT, SUBSCRIBE ❤️ #cat #cats #cute #adorable #cuteanimal ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vaoC5C7f1Lk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vaoC5C7f1Lk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vaoC5C7f1Lk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Wholesome Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-10-26T22:00:39Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"DlljWQGh4w-aXQT6h6VC8lsNu0g\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"vMr3Gvjc5sI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-09T16:03:55Z\",\"channelId\":\"UC5qAGb_8OuCGxRYLYA-dWjQ\",\"title\":\"#cat #cute #cats #cats101 #cutecat #trend #trending #shorts #shortvideo #funny #catstory #catbaby\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vMr3Gvjc5sI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vMr3Gvjc5sI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/vMr3Gvjc5sI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat story 🐱\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-09T16:03:55Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"GymqN78Cd3cBY61YE59x0ogtDu4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"qK9foZqrM2I\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-20T07:19:52Z\",\"channelId\":\"UCj9Hz8i_ZYGvrLqpPVmA31Q\",\"title\":\"Bad 👎Daddy 👨 cat 😳l #shorts #cute #cats #kitty #kittens #catlover #catvideos #catvideo #ai #cutecats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qK9foZqrM2I/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat 😍 shorts \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-20T07:19:52Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"sy3iICLNGDxAUIbB2gLpN_4MbI8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"mHiMcv9Md84\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-09-18T11:56:57Z\",\"channelId\":\"UCS56r87Y7q1SrAB-42brE-w\",\"title\":\"Fears of Sonya's cat🐱#cat #cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mHiMcv9Md84/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mHiMcv9Md84/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mHiMcv9Md84/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sonyakisa8 TT\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-09-18T11:56:57Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"oQ7vT0WL_ZiUSFDGv07w1IEJiZs\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"5gRGKxgD_tY\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-04-30T19:56:00Z\",\"channelId\":\"UCVHgmVPe6qCeJ94wilN5J2A\",\"title\":\"Cat pooing. #cats #catshorts #catvideos #catdrawings #catcartoon #cat #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5gRGKxgD_tY/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5gRGKxgD_tY/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/5gRGKxgD_tY/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Stew-Art\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-04-30T19:56:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Q3E6do3xU-2XVNfSuhYz7oD3QJg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"mGrCV73lBZ0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-07-02T10:00:28Z\",\"channelId\":\"UCNtnAu54xWLWGNZmmFy2Apw\",\"title\":\"funny and cute cats #shortvideo #shorts\",\"description\":\"Hello, I'm Mirano, I want to know about the types of animals, their training, keeping and... I will talk about the best and funniest ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mGrCV73lBZ0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mGrCV73lBZ0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mGrCV73lBZ0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"MIRANO\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-07-02T10:00:28Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"MhYEGZa35EGkee6odL7MsoDp3TI\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"nEQVO8NaA5g\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-12-26T18:08:43Z\",\"channelId\":\"UCxXMf63hyfnGBGVj-M4KoEA\",\"title\":\"Oi ahh Catloaf 😸🍞#catloaf #cats #cutecats #funnycats #pets\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/nEQVO8NaA5g/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/nEQVO8NaA5g/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/nEQVO8NaA5g/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Organic Nature Channel\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-12-26T18:08:43Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"DAP1nJb9KKieop801lLnWbMQZA8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"_wyIKHAXZFI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-20T13:35:00Z\",\"channelId\":\"UClu8wYqI1HvMPbDyeIQrC_w\",\"title\":\"Theekuchi ❤️🥰 cat lover 😾#shorts #viral #funny #cat #shortvideos #trending\",\"description\":\"Theekuchi ❤️ cat lover #shorts #viral #funny #cat #shortvideos #trending.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/_wyIKHAXZFI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/_wyIKHAXZFI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/_wyIKHAXZFI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The BN Family\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-20T13:35:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Ut2spI_7SzoYf5iQS5QJFoeMF8c\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"cJIMjOhhR2g\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-03-08T11:49:57Z\",\"channelId\":\"UCvMabwJRJ6i-ZUcq2Q64t4Q\",\"title\":\"Orange cat #ai #cats #orangecat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cJIMjOhhR2g/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cJIMjOhhR2g/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cJIMjOhhR2g/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Acorn Studios \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-03-08T11:49:57Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"1C89HYbSzgrSjkIIWkbdBQgeLx4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"wi4xRzrFX0c\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-27T14:00:59Z\",\"channelId\":\"UCHo9E7Rh5_4TEy1yBEsh-AQ\",\"title\":\"Small cute cat is happy and singing APT song 🥰🥰🥰\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wi4xRzrFX0c/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wi4xRzrFX0c/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wi4xRzrFX0c/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"BearyDelivery\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-27T14:00:59Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"HkEQpptYEhNCz9deBarv1X-hZyw\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"i_XSK-53PYU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-09T15:34:10Z\",\"channelId\":\"UCPxQQU6qj_l6jHNUELZfiuQ\",\"title\":\"cute cats #cute #kitten #funny #cat #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/i_XSK-53PYU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/i_XSK-53PYU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/i_XSK-53PYU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"PET NATION\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-09T15:34:10Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"vQqM0utJkC4pTVbicMBL8aLd5ko\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"91z9VAOfUNw\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-17T16:29:42Z\",\"channelId\":\"UCYfgXwy99lmmogViQn_3Nzg\",\"title\":\"Cats can understand English #cat #pets #funnypets #funnycats #shorts\",\"description\":\"I do Not own this video. All credits to the original owner. Email for credits or removal.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/91z9VAOfUNw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/91z9VAOfUNw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/91z9VAOfUNw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"LOADING FUNNY CATS \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-17T16:29:42Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"rtu862QIddlOsIN_t9g-F6siruI\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"RrdKGO012_Y\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-03-21T07:47:53Z\",\"channelId\":\"UCi_HGn2j_zhU_NXqRbVbhww\",\"title\":\"What u do if phone drops in toilet?#cat #cute #kitten #funny #catlover #kitty\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RrdKGO012_Y/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RrdKGO012_Y/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RrdKGO012_Y/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Meow Motion\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-03-21T07:47:53Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"yMh_L1D4ll_JMiosob4e5Czc7lk\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"tZ-BBAAPYzA\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-24T05:00:50Z\",\"channelId\":\"UCYPY4tvo2zKVQ_wF0_CEAIA\",\"title\":\"Dad give me a big whiskas 🥰 #cat #catlover #catvideos #trendingshorts\",\"description\":\"Dad give me a big whiskas #cat #catlover #catvideos #trendingshorts.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tZ-BBAAPYzA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tZ-BBAAPYzA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tZ-BBAAPYzA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Kak Nurul\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-24T05:00:50Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"8Q0Qu37UpBRzffO0d4eSzgf5aDQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"NvkDYazj_6Q\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2019-12-28T21:37:21Z\",\"channelId\":\"UCMFSkaC6CgOh4L3IcVP2P8g\",\"title\":\"Kittens and Cats learn Сatches FISH. 🐟🐠 Too funny |Too cute\",\"description\":\"Kittens and Cats learn Сatches Fish Too funny | Too cute Can any of them catch a fish? When shooting this video, no fish ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NvkDYazj_6Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Teddy Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2019-12-28T21:37:21Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"7vuLsLpIX2p2t6gDroFUdmH3xZE\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"co9UUzg26eI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-24T22:57:00Z\",\"channelId\":\"UCFsbNXxagqyUCuhxgBrz6TA\",\"title\":\"Girls with cats vs Boys with cats 😺 #cats #cutecat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/co9UUzg26eI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/co9UUzg26eI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/co9UUzg26eI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"FunnyCatTv 10\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-24T22:57:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"prevPageToken\":\"CGQQAQ\"},{\"kind\":\"youtube#searchListResponse\",\"etag\":\"KM9NoV0_IUPHwT8RUB4FUjLM0d8\",\"nextPageToken\":\"CMgBEAA\",\"regionCode\":\"DE\",\"pageInfo\":{\"data\":{\"totalResults\":1000000,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"items\":{\"data\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"9ObA9j-MdtGGTM6FGne5wPMiEtA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"qhIuSHwBwQI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-26T19:55:00Z\",\"channelId\":\"UCHU9APgMgi5ebeiMXD4FasA\",\"title\":\"Other Cats Are Cute… But not mine #Cats #FunnyCats #CuteCats #CatShorts #Pets #Kitten\",\"description\":\"facts #animals #pets #cats #funny #shorts #cat #falling #catlover #vacation #catlovers #catoftheday #catlove #cutecat #survived ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qhIuSHwBwQI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qhIuSHwBwQI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/qhIuSHwBwQI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Paws & Claws\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-26T19:55:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"mLqrLcFax6Tz-5cHIGNblejev3U\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"dAKBqZrkuhc\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-03-31T09:15:22Z\",\"channelId\":\"UCp7VGGSdfi3QDt7JA9GuLMA\",\"title\":\"dancing cat🐱funny dance #shorts ytshorts #viralshorts\",\"description\":\"dancing cat funny dance #shorts ytshorts #viralshorts #funnycat.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/dAKBqZrkuhc/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/dAKBqZrkuhc/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/dAKBqZrkuhc/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Funny-animals🔥(j.s.d)\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-03-31T09:15:22Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"tK-o-MTRUGIlDf8ourBDV8R6Oxk\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Lw-HvKfC5rU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-26T09:52:12Z\",\"channelId\":\"UCGXEyVf71QKVRzLYBnQcj5Q\",\"title\":\"SUPER HARD #kpop #enhypen #cute #cats #fyp #shorts #subscribe #viralvideo #like #dance #song\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Lw-HvKfC5rU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Lw-HvKfC5rU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Lw-HvKfC5rU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sunghoonverse☆\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-26T09:52:12Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"GgWSUhZhBEaFs_MS1OC87JHSB78\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"fmwM8WDN2Ig\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-26T10:54:13Z\",\"channelId\":\"UCd6jSrh0GcECPVig3O2QPoQ\",\"title\":\"Funny Pets | 2024😂 Funny Dogs And Funny Cats Videos 🐱 🐕 😄 #145\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fmwM8WDN2Ig/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fmwM8WDN2Ig/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fmwM8WDN2Ig/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"wk.loverbaby\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-26T10:54:13Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"iLcRw6eBYyNjJ_R2aaZf40IQToU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ulSiWcHV2yI\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-21T01:34:17Z\",\"channelId\":\"UCMTq26KYuWZ2pvgh6F1paLw\",\"title\":\"English speaking cats #funny #funnycats #funnyanimals\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ulSiWcHV2yI/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ulSiWcHV2yI/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ulSiWcHV2yI/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Prank\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-21T01:34:17Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"MnOBa16ZzFq2U1ds9OQQNJ96OtE\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"AvRQIaBbzdM\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-26T18:56:01Z\",\"channelId\":\"UCsjLwvtRI0XjvKFty_s0Ykg\",\"title\":\"Cat singing ❤️| Cute Cats #cutecats #cat #lovecats #cats #catvideos #catshorts #kittens #catlover\",\"description\":\"Cat singing | Cute Cats❤️ #ShortsViral #BlackCatCharm #KittenLove #BedtimeWithCats #CatsInClothes #AnimalMagic ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AvRQIaBbzdM/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AvRQIaBbzdM/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AvRQIaBbzdM/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Black Kitten\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-26T18:56:01Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"enMba_hLkvAx695ARCcvkNe-J-0\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"b1xUdDL3zjE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-08-25T02:30:19Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute kitten and monkey run from tiger !!#catvideos #cutecats #catlover #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/b1xUdDL3zjE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/b1xUdDL3zjE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/b1xUdDL3zjE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-08-25T02:30:19Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"kkN5DOalTbp4vI8GVlG2MaKfwoA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"PzGI-FBzcNE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2022-09-22T14:15:30Z\",\"channelId\":\"UCw385wfnuiRoB_panBZ1cRQ\",\"title\":\"CATS & KITTENS in 4K | 2 Hours | Relaxing Ambient Piano Music Cute Pets\",\"description\":\"Check out our other *ANIMAL* videos in 4K! https://youtu.be/uYJQIKAVBw8 Part 1 https://youtu.be/PzGI-FBzcNE Part 1 ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/PzGI-FBzcNE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/PzGI-FBzcNE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/PzGI-FBzcNE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"REST EASY FILMS\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2022-09-22T14:15:30Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"BB7gcUKesrWHX5AwNLyFIE_X-LU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"0zSPPDgIZXk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2021-05-25T10:24:00Z\",\"channelId\":\"UCcQUgCWS5o6mo1FN7y3LSPg\",\"title\":\"cute baby cat crying videos | OMG So Cute Cats ♥ Best Funny Cat Videos #09\",\"description\":\"FunnyCats #CuteCats #CatVideos #Cutepets, #pets #petvideo cute baby cat crying videos | OMG So Cute Cats ♥ Best Funny Cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/0zSPPDgIZXk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/0zSPPDgIZXk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/0zSPPDgIZXk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Zon\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2021-05-25T10:24:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"cWMEmzVLqIXD9Uud-pWbH_fd6QY\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"f44o15PYQbw\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-03T00:30:52Z\",\"channelId\":\"UC5qAGb_8OuCGxRYLYA-dWjQ\",\"title\":\"#cat #cute #cats #cats101 #trend #trending #shorts #shortvideo #catstory #catbaby #cutecat #funny\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/f44o15PYQbw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/f44o15PYQbw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/f44o15PYQbw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat story 🐱\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-03T00:30:52Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"831QoNj56ZwvU3QRzghE5rihdt4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"6va9g3NQ3t0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T09:08:12Z\",\"channelId\":\"UC9ohc63LryTTWMUsVJlu7zw\",\"title\":\"cute cats 🐈#cat #cute #kitten #pets #cats #catshorts #catvideos #cutecat #catvideos #猫 #猫好き\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/6va9g3NQ3t0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/6va9g3NQ3t0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/6va9g3NQ3t0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"sleep_cats\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T09:08:12Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2S3vj21C5sTBdVc0D9lbNYOI04w\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"mYejx4KJBRM\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-12T01:39:35Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute kittens always steals my birthday cake #cutecats #catlover #catvideos #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mYejx4KJBRM/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mYejx4KJBRM/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mYejx4KJBRM/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-12T01:39:35Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"hcQEZ7JiGB9nfWLZu46XnJShtyY\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"plMzbkFlLKE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-17T01:33:48Z\",\"channelId\":\"UCJe_P0IbLiftpU372j0RPFQ\",\"title\":\"Cute Cat Became a Squid Game Doll 😱🙀 #cat #cartoon #funny #viral\",\"description\":\"squidgame #cartoon #shorts #global #viralshorts.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/plMzbkFlLKE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/plMzbkFlLKE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/plMzbkFlLKE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Meow WORLD\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-17T01:33:48Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"njVhLX2H9CR5Ot7HdSzecnAMheM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"8M5E1Vgo1-U\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-03-18T10:49:59Z\",\"channelId\":\"UCrj6b6NZy_EY_hmIfI9e63Q\",\"title\":\"CAT DEFEATING GODZILLA 😱😱 [ cat 🆚 godzilla ] #cat #kitten #cute #cutecat #cats #catlover #shorts 20\",\"description\":\"Instagram - instagram.com/catf_untv Copyright Disclaimer: - Under section 107 of the copyright Act 1976, allowance is mad for ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8M5E1Vgo1-U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8M5E1Vgo1-U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8M5E1Vgo1-U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Catfuntv\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-03-18T10:49:59Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"IqFYuc3nxnFn8h7DGE_0B21c0ao\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"kwLnfRJB6pg\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T13:01:30Z\",\"channelId\":\"UCprXtjuvPSCjIyr3QZya7Mg\",\"title\":\"cat story 🐈😺🙀 #kitty #cutecats #cartoon #kittycat #subscribe #cute #kitten #catlovers #cat #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kwLnfRJB6pg/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kwLnfRJB6pg/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kwLnfRJB6pg/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Ansari Writes\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T13:01:30Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"DoiRa5Gs8V7Xrc_skSQdZRmoLes\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"oMvE7gimZes\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-27T00:00:45Z\",\"channelId\":\"UC5T53SKmiND8o0D2I-8SpKQ\",\"title\":\"Other cats VS My cat #cat #cute #cats #cats #funny #pets #kitten#us #US #america\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/oMvE7gimZes/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/oMvE7gimZes/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/oMvE7gimZes/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CoCpet\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-27T00:00:45Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"lCB22-lar-gosg_T07VGrwE88Mw\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"stO-TG6u2BM\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-12T02:15:04Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and monkey take my kinderjoy !!#catlover #cutecat #catvideos #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/stO-TG6u2BM/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/stO-TG6u2BM/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/stO-TG6u2BM/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-12T02:15:04Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"aw8lstFO01DkMt5mZykhOWjY95w\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"IMkw2thL6k0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-03-06T08:42:25Z\",\"channelId\":\"UCzrU_uZAvElyiSfOxtJWBKg\",\"title\":\"Cats take care of human babies #cat #catshorts#cute#baby\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/IMkw2thL6k0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/IMkw2thL6k0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/IMkw2thL6k0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lucky cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-03-06T08:42:25Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"flZZ6pUMbt57SLjvBlyXH5tXPpg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"iKL4GlHoZm4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-14T20:28:08Z\",\"channelId\":\"UCRDeMJLM98LON3D_3RyoxUg\",\"title\":\"Level 10 is rough 💀 #cute #cats #cat #tiktok #fypシ゚viral #funny #kitten #audio\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/iKL4GlHoZm4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/iKL4GlHoZm4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/iKL4GlHoZm4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"matta\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-14T20:28:08Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"ww57xTQrivppY8luSE4_8qr4DF8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"92rynZr3O80\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-02-01T13:52:07Z\",\"channelId\":\"UCQlXtR8aZgjwdsu0jjgBAFw\",\"title\":\"Ai cat dance dudi dudi dum #cat #funny #catlover #catshorts #trending\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/92rynZr3O80/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/92rynZr3O80/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/92rynZr3O80/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CatClips\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-02-01T13:52:07Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"prevPageToken\":\"CJYBEAE\"},{\"kind\":\"youtube#searchListResponse\",\"etag\":\"zkGt4KCDetsVPV6KJt1u40y3n8A\",\"nextPageToken\":\"CPoBEAA\",\"regionCode\":\"DE\",\"pageInfo\":{\"data\":{\"totalResults\":1000000,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"items\":{\"data\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"f2TxVkPRNLpJYzvrWXIj7q_Wabk\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"7I3eb5BJih0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-02T01:00:04Z\",\"channelId\":\"UCBmAlqRHJ_fO5TLOjIwoS2A\",\"title\":\"Cats can speak English #shorts #youtubeshorts #animals #pets #cute #cat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/7I3eb5BJih0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/7I3eb5BJih0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/7I3eb5BJih0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Shefali Rakhii\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-02T01:00:04Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"7F5_h_2ke8u4iQWL8gLmCnSK7IA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"RO2UWZAPnQw\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-27T09:47:58Z\",\"channelId\":\"UC5jmROOBtTrJFYj2yXUTraQ\",\"title\":\"Cat fish catjhalpree rac in wat 😱A poor mermaid kitten 😿 #cat #ai #catlover #貓 #aicat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RO2UWZAPnQw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RO2UWZAPnQw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RO2UWZAPnQw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Ai Game \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-27T09:47:58Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"umijxWlqN9aljPPVEWRaPVy3tF8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"E17ONCWoXkM\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-22T11:00:33Z\",\"channelId\":\"UCe3mDJIOVSbyNMGpr7j8CmA\",\"title\":\"CUTE CATS AND KITTENS VERY HAPPY WATCHING COCOMELON 🥰📺\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/E17ONCWoXkM/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/E17ONCWoXkM/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/E17ONCWoXkM/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Salim Ubey\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-22T11:00:33Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"AIl90pHafNN_cYETgdG9MLY3ba0\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"owBUTRNGaHo\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-11T08:03:27Z\",\"channelId\":\"UCE99_6mOUeCM6oHOgxHtduA\",\"title\":\"Girls Have Cute Cats Boys Have This 💀 (Part 3)\",\"description\":\"Troll Face Edits | Skull Face Memes | Viral Shorts Bringing chaos, humor, and edits together in the funniest way possible.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/owBUTRNGaHo/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/owBUTRNGaHo/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/owBUTRNGaHo/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Grinly\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-11T08:03:27Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"9gZKTu4QY4pQO8fcmydm0ivnbmA\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"-DeXyOFd7gk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-03-05T16:10:58Z\",\"channelId\":\"UC7NY0oUbxinn_3JfcSXCbCQ\",\"title\":\"Billi Ne Chori Kiya Baccha 🥺 #cat video #cute cats #funnyvideo #viralvideo\",\"description\":\"Disclaimer: Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for \\\"fair use\\\" for purposes such ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/-DeXyOFd7gk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/-DeXyOFd7gk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/-DeXyOFd7gk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"MY CAT NEW FUNNY INDIA\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-03-05T16:10:58Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YSyMN8KgDjluhIuHv2sUvkjSx-8\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"OiEExW8mH6U\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-19T11:00:05Z\",\"channelId\":\"UCkWm_x_dKhpHGj8cYitOvgg\",\"title\":\"Cutest Baby Dance compilation with cute cats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OiEExW8mH6U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OiEExW8mH6U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OiEExW8mH6U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"NewFunStories\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-19T11:00:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"hYsSLMKNEpigB_xqYqQfmYUTUSo\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"LDSRtOcd5YQ\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2021-09-06T12:27:18Z\",\"channelId\":\"UCzGWL8gWM8ttOXD3etiazXw\",\"title\":\"Talking cat comedy videos #talkingcat\",\"description\":\"Talking cat comedy videos #talkingcat.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/LDSRtOcd5YQ/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/LDSRtOcd5YQ/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/LDSRtOcd5YQ/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Mantio\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2021-09-06T12:27:18Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"BYmscFqkheh0OQQs_3FEN3rHcz4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"kLPbjgwH_X4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-10-14T10:30:27Z\",\"channelId\":\"UCsMRgE1IQFkgGvyfBDh3BAw\",\"title\":\"Sofia and stories about saving a little Kitten\",\"description\":\"Sofia and adventures with kittens 00:00 Sofia and stories about saving a little Kitten 07:40 Sofia lost her kittens 14:34 Sofia and ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kLPbjgwH_X4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kLPbjgwH_X4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kLPbjgwH_X4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Funny Sofia Show\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-10-14T10:30:27Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"bpLRoWO6SXuuyUI4VB9oK0BCzK4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"wE8s993ZV-8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-10-04T09:00:40Z\",\"channelId\":\"UCL__0tJGg6TeyIfEVhSEjtw\",\"title\":\"The kitten approaching the daddy cat to play with him was so cute.\",\"description\":\"A kitten that came close to its daddy cat. A kitten quietly approaches the mother cat while checking her complexion. The father cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wE8s993ZV-8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wE8s993ZV-8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wE8s993ZV-8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lulu the Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-10-04T09:00:40Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"stjE6u3ygWt8HlNKKmhqJPzvmhM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"1XazWqWbSdk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-26T13:31:23Z\",\"channelId\":\"UC-Yng3ltZV9d-9jSA-pAjSQ\",\"title\":\"cute cats 😻 #cat\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1XazWqWbSdk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1XazWqWbSdk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1XazWqWbSdk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CUTE CAT🥰\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-26T13:31:23Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YL-Bgk5NnFaF5K0FU5o2e89Po7U\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"v4i0zcfYBh0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-04T13:40:01Z\",\"channelId\":\"UC28haopD28ljl7lVEKkw1PA\",\"title\":\"Caty Ka Naya Mahal 🏠💀 | Mini Vlog #shorts #minivlog #ashortaday #vlog #tranding #cats #cat\",\"description\":\"Huh Caty Ka Naya Mahal | Mini Vlog #shorts #minivlog #ashortaday #vlog #tranding #cats #cat #funny #comedy ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/v4i0zcfYBh0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/v4i0zcfYBh0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/v4i0zcfYBh0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Sirf Shreyansh\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-04T13:40:01Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"hViczuswXaY6ASBGoRqALIJx0ns\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"fNYlxliFPf8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-13T02:00:36Z\",\"channelId\":\"UC6xcY7Rtxbwwth-yCzCHWFg\",\"title\":\"Cats Still Singing AiScReam Pt. 2 😹🎤💘 #cat #animallovers #cute #adorably #catlovers #petlovers\",\"description\":\"They're back and they're still not okay These cats are singing their little hearts out to “I LOVE YOU!!!!” by AiScReam — again.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fNYlxliFPf8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fNYlxliFPf8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/fNYlxliFPf8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Pawfectly Cute\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-13T02:00:36Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"rrmNnSRIjC18MOBTaSBUfJ_o38g\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"kV81s3OUUas\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-25T20:00:33Z\",\"channelId\":\"UCcvjpsLIxSceY3bAEdxz1qw\",\"title\":\"Two cats singing the frozen theme song 🥶🎤 #catvideos #cutecats #catlovers #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kV81s3OUUas/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kV81s3OUUas/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/kV81s3OUUas/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Meowtoon Studio\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-25T20:00:33Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2Vk688YWyJYeWgYeAblFVgOgvuY\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"02t1zh_AZa0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-04-28T17:26:57Z\",\"channelId\":\"UCQgqUoJTgsbR2vsNRrg8rUQ\",\"title\":\"Dj Looks 😎😻🙀 #viral #youtube #trendingshorts #pets #meow #cat #dj\",\"description\":\"Dj Looks #viral #youtube #trendingshorts #pets #meow #cat #dj.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/02t1zh_AZa0/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/02t1zh_AZa0/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/02t1zh_AZa0/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Chpetoo_05\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-04-28T17:26:57Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Yq1qvZdmWOk0iBKwR6uYbRm30M0\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"rc0TEvLeOyA\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-02-23T02:47:09Z\",\"channelId\":\"UCqYbBfqwrQeF_j5p1rzfkHg\",\"title\":\"pet goat and cat, dog #cute #ytshorts #shorts #trending #pets #funny #cat #goat #dog #animals #video\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/rc0TEvLeOyA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/rc0TEvLeOyA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/rc0TEvLeOyA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute.videos .....1M view\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-02-23T02:47:09Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"qxkX9GSkb6VA5D2ZAQltNOb1Riw\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ipNcdD3U6JU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-12T06:03:17Z\",\"channelId\":\"UCY3HpHanDNHaKJLqUgFyUVQ\",\"title\":\""Two Cute Cats Dancing in the Rainwater"😻😺😺😻🥀#shortvideo #shortvideo #cute\",\"description\":\"These sweet little creatures will brighten your day and warm your heart. Don't forget to subscribe for more adorable moments! cute ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ipNcdD3U6JU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ipNcdD3U6JU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ipNcdD3U6JU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute Moments\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-12T06:03:17Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"eBHv7fCfcharZyhlXy-L8py1X_U\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"mZq49yYC0NM\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-03-28T10:45:05Z\",\"channelId\":\"UCrj6b6NZy_EY_hmIfI9e63Q\",\"title\":\"Fight with Elephant , fighting for daddy 😭😭 , #cat #kitten #cute #trending #cats #cutecat #shorts 9\",\"description\":\"Instagram - instagram.com/catf_untv Copyright Disclaimer: - Under section 107 of the copyright Act 1976, allowance is mad for ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mZq49yYC0NM/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mZq49yYC0NM/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/mZq49yYC0NM/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Catfuntv\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-03-28T10:45:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"hvpiAQZUAUd9EOV-Yti00wxWEgc\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"jWVYL8p9550\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-19T03:46:56Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and kittens steals my kinderjoy !!#catlover #cutecat #catvideos #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/jWVYL8p9550/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/jWVYL8p9550/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/jWVYL8p9550/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-19T03:46:56Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"5KUb2EVIVLYR3ND5VCwVWB7DoS0\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Mgbgeyz4fPE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-23T14:51:19Z\",\"channelId\":\"UCRjr9St3KF0VBFADnmDxqxQ\",\"title\":\"#120 Funniest Cats And Dogs videos 🐶🐱 #funny #animals #cuteanimals\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Mgbgeyz4fPE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Mgbgeyz4fPE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Mgbgeyz4fPE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Pets Universe\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-23T14:51:19Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"PkVGVeqGbQUmRXrwkvO2KUJhyYo\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"AlMEuWl912Q\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-11T09:45:20Z\",\"channelId\":\"UCygdMqeLQVkbDSLXGvb4pYw\",\"title\":\"The cutest meow #shortvideo #funny #funnypetschannel #cat #petschannel #pets #yourcat #funnycats\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AlMEuWl912Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AlMEuWl912Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/AlMEuWl912Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Jeff Canal\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-11T09:45:20Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"prevPageToken\":\"CMgBEAE\"}]}"
|
||
},
|
||
"execution_count": 6,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"execution_count": 6
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:09:01.631422Z",
|
||
"start_time": "2025-05-28T11:09:01.146047Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"val items = df.items.concat()\n",
|
||
"items"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/html": [
|
||
" <iframe onload=\"o_resize_iframe_out_3()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_3\" frameBorder=\"0\" srcdoc=\" <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type="text/css">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
":root {\n",
|
||
" --scroll-bg: #f5f5f5;\n",
|
||
" --scroll-fg: #b3b3b3;\n",
|
||
"}\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"]{\n",
|
||
" --scroll-bg: #3c3c3c;\n",
|
||
" --scroll-fg: #97e1fb;\n",
|
||
"}\n",
|
||
"body {\n",
|
||
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar {\n",
|
||
" width: 10px; /* Mostly for vertical scrollbars */\n",
|
||
" height: 10px; /* Mostly for horizontal scrollbars */\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-thumb {\n",
|
||
" background-color: var(--scroll-fg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-track {\n",
|
||
" background-color: var(--scroll-bg);\n",
|
||
"}\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class="dataframe" id="df_1560281112"></table>\n",
|
||
"\n",
|
||
"<p class="dataframe_description">... showing only top 20 of 250 rows</p><p class="dataframe_description">DataFrame: rowsCount = 250, columnsCount = 4</p>\n",
|
||
"\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" (function () {\n",
|
||
" window.DataFrame = window.DataFrame || new (function () {\n",
|
||
" this.addTable = function (df) {\n",
|
||
" let cols = df.cols;\n",
|
||
" for (let i = 0; i < cols.length; i++) {\n",
|
||
" for (let c of cols[i].children) {\n",
|
||
" cols[c].parent = i;\n",
|
||
" }\n",
|
||
" }\n",
|
||
" df.nrow = 0\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" if (df.cols[i].values.length > df.nrow) df.nrow = df.cols[i].values.length\n",
|
||
" }\n",
|
||
" if (df.id === df.rootId) {\n",
|
||
" df.expandedFrames = new Set()\n",
|
||
" df.childFrames = {}\n",
|
||
" const table = this.getTableElement(df.id)\n",
|
||
" table.df = df\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" let col = df.cols[i]\n",
|
||
" if (col.parent === undefined && col.children.length > 0) col.expanded = true\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" const rootDf = this.getTableData(df.rootId)\n",
|
||
" rootDf.childFrames[df.id] = df\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderData = function (df) {\n",
|
||
" let result = []\n",
|
||
" let pos = 0\n",
|
||
" for (let col = 0; col < df.cols.length; col++) {\n",
|
||
" if (df.cols[col].parent === undefined)\n",
|
||
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
|
||
" }\n",
|
||
" for (let i = 0; i < result.length; i++) {\n",
|
||
" let row = result[i]\n",
|
||
" for (let j = 0; j < row.length; j++) {\n",
|
||
" let cell = row[j]\n",
|
||
" if (j === 0)\n",
|
||
" cell.leftBd = false\n",
|
||
" if (j < row.length - 1) {\n",
|
||
" let nextData = row[j + 1]\n",
|
||
" if (nextData.leftBd) cell.rightBd = true\n",
|
||
" else if (cell.rightBd) nextData.leftBd = true\n",
|
||
" } else cell.rightBd = false\n",
|
||
" }\n",
|
||
" }\n",
|
||
" return result\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
|
||
" if (result.length === depth) {\n",
|
||
" const array = [];\n",
|
||
" if (pos > 0) {\n",
|
||
" let j = 0\n",
|
||
" for (let i = 0; j < pos; i++) {\n",
|
||
" let c = result[depth - 1][i]\n",
|
||
" j += c.span\n",
|
||
" let copy = Object.assign({empty: true}, c)\n",
|
||
" array.push(copy)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" result.push(array)\n",
|
||
" }\n",
|
||
" const col = cols[colId];\n",
|
||
" let size = 0;\n",
|
||
" if (col.expanded) {\n",
|
||
" let childPos = pos\n",
|
||
" for (let i = 0; i < col.children.length; i++) {\n",
|
||
" let child = col.children[i]\n",
|
||
" let childLeft = i === 0 && (col.children.length > 1 || leftBorder)\n",
|
||
" let childRight = i === col.children.length - 1 && (col.children.length > 1 || rightBorder)\n",
|
||
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
|
||
" childPos += childSize\n",
|
||
" size += childSize\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" for (let i = depth + 1; i < result.length; i++)\n",
|
||
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
|
||
" size = 1\n",
|
||
" }\n",
|
||
" let left = leftBorder\n",
|
||
" let right = rightBorder\n",
|
||
" if (size > 1) {\n",
|
||
" left = true\n",
|
||
" right = true\n",
|
||
" }\n",
|
||
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
|
||
" return size\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableElement = function (id) {\n",
|
||
" return document.getElementById("df_" + id)\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableData = function (id) {\n",
|
||
" return this.getTableElement(id).df\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.createExpander = function (isExpanded) {\n",
|
||
" const svgNs = "http://www.w3.org/2000/svg"\n",
|
||
" let svg = document.createElementNS(svgNs, "svg")\n",
|
||
" svg.classList.add("expanderSvg")\n",
|
||
" let path = document.createElementNS(svgNs, "path")\n",
|
||
" if (isExpanded) {\n",
|
||
" svg.setAttribute("viewBox", "0 -2 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z")\n",
|
||
" } else {\n",
|
||
" svg.setAttribute("viewBox", "-2 0 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z")\n",
|
||
" }\n",
|
||
" path.setAttribute("fill", "currentColor")\n",
|
||
" svg.appendChild(path)\n",
|
||
" return svg\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.renderTable = function (id) {\n",
|
||
"\n",
|
||
" let table = this.getTableElement(id)\n",
|
||
"\n",
|
||
" if (table === null) return\n",
|
||
"\n",
|
||
" table.innerHTML = ""\n",
|
||
"\n",
|
||
" let df = table.df\n",
|
||
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
|
||
"\n",
|
||
" // header\n",
|
||
" let header = document.createElement("thead")\n",
|
||
" table.appendChild(header)\n",
|
||
"\n",
|
||
" let renderData = this.computeRenderData(df)\n",
|
||
" for (let j = 0; j < renderData.length; j++) {\n",
|
||
" let rowData = renderData[j]\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" let isLastRow = j === renderData.length - 1\n",
|
||
" header.appendChild(tr);\n",
|
||
" for (let i = 0; i < rowData.length; i++) {\n",
|
||
" let cell = rowData[i]\n",
|
||
" let th = document.createElement("th");\n",
|
||
" th.setAttribute("colspan", cell.span)\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId];\n",
|
||
" if (!cell.empty) {\n",
|
||
" if (col.children.length === 0) {\n",
|
||
" th.innerHTML = col.name\n",
|
||
" } else {\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" col.expanded = !col.expanded\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(col.expanded))\n",
|
||
" link.innerHTML += col.name\n",
|
||
" th.appendChild(link)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (isLastRow)\n",
|
||
" classes += " bottomBorder"\n",
|
||
" if (classes.length > 0)\n",
|
||
" th.setAttribute("class", classes)\n",
|
||
" tr.appendChild(th)\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" // body\n",
|
||
" let body = document.createElement("tbody")\n",
|
||
" table.appendChild(body)\n",
|
||
"\n",
|
||
" let columns = renderData.pop()\n",
|
||
" for (let row = 0; row < df.nrow; row++) {\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" body.appendChild(tr)\n",
|
||
" for (let i = 0; i < columns.length; i++) {\n",
|
||
" let cell = columns[i]\n",
|
||
" let td = document.createElement("td");\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId]\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (classes.length > 0)\n",
|
||
" td.setAttribute("class", classes)\n",
|
||
" tr.appendChild(td)\n",
|
||
" let value = col.values[row]\n",
|
||
" if (value.frameId !== undefined) {\n",
|
||
" let frameId = value.frameId\n",
|
||
" let expanded = rootDf.expandedFrames.has(frameId)\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" if (rootDf.expandedFrames.has(frameId))\n",
|
||
" rootDf.expandedFrames.delete(frameId)\n",
|
||
" else rootDf.expandedFrames.add(frameId)\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(expanded))\n",
|
||
" link.innerHTML += value.value\n",
|
||
" if (expanded) {\n",
|
||
" td.appendChild(link)\n",
|
||
" td.appendChild(document.createElement("p"))\n",
|
||
" const childTable = document.createElement("table")\n",
|
||
" childTable.className = "dataframe"\n",
|
||
" childTable.id = "df_" + frameId\n",
|
||
" let childDf = rootDf.childFrames[frameId]\n",
|
||
" childTable.df = childDf\n",
|
||
" td.appendChild(childTable)\n",
|
||
" this.renderTable(frameId)\n",
|
||
" if (childDf.nrow !== childDf.totalRows) {\n",
|
||
" const footer = document.createElement("p")\n",
|
||
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
|
||
" td.appendChild(footer)\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" td.appendChild(link)\n",
|
||
" }\n",
|
||
" } else if (value.style !== undefined) {\n",
|
||
" td.innerHTML = value.value\n",
|
||
" td.setAttribute("style", value.style)\n",
|
||
" } else td.innerHTML = value\n",
|
||
" this.nodeScriptReplace(td)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptReplace = function (node) {\n",
|
||
" if (this.nodeScriptIs(node) === true) {\n",
|
||
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
|
||
" } else {\n",
|
||
" let i = -1, children = node.childNodes;\n",
|
||
" while (++i < children.length) {\n",
|
||
" this.nodeScriptReplace(children[i]);\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" return node;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptClone = function (node) {\n",
|
||
" let script = document.createElement("script");\n",
|
||
" script.text = node.innerHTML;\n",
|
||
"\n",
|
||
" let i = -1, attrs = node.attributes, attr;\n",
|
||
" while (++i < attrs.length) {\n",
|
||
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
|
||
" }\n",
|
||
" return script;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptIs = function (node) {\n",
|
||
" return node.tagName === 'SCRIPT';\n",
|
||
" }\n",
|
||
" })()\n",
|
||
"\n",
|
||
" window.call_DataFrame = function (f) {\n",
|
||
" return f();\n",
|
||
" };\n",
|
||
"\n",
|
||
" let funQueue = window["kotlinQueues"] && window["kotlinQueues"]["DataFrame"];\n",
|
||
" if (funQueue) {\n",
|
||
" funQueue.forEach(function (f) {\n",
|
||
" f();\n",
|
||
" });\n",
|
||
" funQueue = [];\n",
|
||
" }\n",
|
||
"})()\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult","youtube#searchResult"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["webdtycT-B4LmJXWkBJvVWUmcHY","t1vv105IWNG2EOHsMAK2yRtj010","2Kd_RVdhCCBb6srFTzcoirkVZro","E6nCj0vSvJRjNcEQaFQ2d8spmhM","Qg7OO4HOlZZ3YLpsJWVYBt92Kwc","13rrjHLEedgFgBm9W24i_MYXOAQ","XSVBsAd9es2GZHYdITYk3MBad58","pIgN9Ru809WNiPWBtuGlWQAbxCQ","YRzi81_jEkZ9ME2DpoKA8Owvew4","nST7mcLVAgbEWfHWUuHCcCmznAo","nsPQ9fdFl-3JEvRvOGlkl3tQhAU","3FMsKvZ4tnjiAOCqvXQe8JdAtQw","YARLzvIzFhBix3Ya8nPj0c9txvg","5ByqGeQh1pBdfAUU_bOvX2Z4HfU","VExjgdmgRBJWooA2pBfuAyzHSvQ","ZRWfV7XfiOfkFiGnTg09gFRNA7Q","p_f8U8Yr1b-IO4aBb-TfHjU7G6Q","eRGtBGQW7bQjHH4WIr_I0NYD6wU","Wr7YkmJwDVgmgG5vhP6Nhx54eTg","AGVb0f5--fq-CiJ0LWvkczCN6Us"] }, \n",
|
||
"{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"videoId: String\">videoId</span>", children: [], rightAlign: false, values: ["y0sF5xhGreA","tpiyEe_CqB4","wdjpworLSk8","MlDtL2hIj-Q","1UgJI6O8T2U","cytJLvf-eVs","ASFCURj-2hQ","8iY66B5NB2w","1TsaNbWEckk","3URtTIdnXIk","afm0c53xO2o","2M1AFRWPpy8","o0Dvesp0lQU","NsMKvVdEPkw","a7K-kWT_C2A","BOK8T1HK4S8","RFMuw3xpmFE","Po098TRdOn4","DrpvkCRE2P4","OQoukB1VB5k"] }, \n",
|
||
"{ name: "<span title=\"id: DataRow<*>\">id</span>", children: [2, 3], rightAlign: false, values: ["<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: y0sF5xhGreA\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>y0s<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: tpiyEe_CqB4\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>tpi<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: wdjpworLSk8\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>wdj<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: MlDtL2hIj-Q\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>MlD<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: 1UgJI6O8T2U\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>1Ug<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: cytJLvf-eVs\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>cyt<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: ASFCURj-2hQ\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>ASF<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: 8iY66B5NB2w\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>8iY<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: 1TsaNbWEckk\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>1Ts<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: 3URtTIdnXIk\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>3UR<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: afm0c53xO2o\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>afm<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: 2M1AFRWPpy8\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>2M1<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: o0Dvesp0lQU\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>o0D<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: NsMKvVdEPkw\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>NsM<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: a7K-kWT_C2A\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>a7K<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: BOK8T1HK4S8\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>BOK<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: RFMuw3xpmFE\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>RFM<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: Po098TRdOn4\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>Po0<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: DrpvkCRE2P4\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>Drp<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#video\nvideoId: OQoukB1VB5k\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#video<span class=\"structural\">, </span><span class=\"structural\">videoId: </span>OQo<span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"publishedAt: String\">publishedAt</span>", children: [], rightAlign: false, values: ["2023-05-28T13:00:44Z","2020-04-10T16:00:28Z","2023-09-15T22:02:00Z","2023-11-19T19:00:10Z","2025-01-14T04:24:22Z","2020-02-05T15:49:45Z","2024-09-26T03:51:17Z","2025-01-31T13:00:16Z","2025-05-27T03:57:51Z","2025-04-13T13:00:11Z","2024-06-26T17:41:01Z","2024-06-27T12:23:24Z","2024-11-27T00:54:39Z","2023-05-06T14:18:05Z","2023-07-22T05:27:58Z","2024-07-31T14:00:06Z","2023-10-08T13:00:29Z","2023-01-02T09:46:11Z","2023-05-25T10:30:02Z","2024-09-05T13:35:00Z"] }, \n",
|
||
"{ name: "<span title=\"channelId: String\">channelId</span>", children: [], rightAlign: false, values: ["UCPIvT-zcQl2H0vabdXJGcpg","UCzn2gx8zzhF0A4Utk8TEDNQ","UCQQcnrcfQbWvCl2lBvF5hoQ","UCPIvT-zcQl2H0vabdXJGcpg","UCkgRhUW4sHt6bQ32dNiQVVg","UC8hC-augAnujJeprhjI0YkA","UCntAD-sZOPUXRIcw9syL-MQ","UCU0nAvDjqfXo1fTA7xn527w","UCzznUMJ6TwMKb3voVs_CFvg","UCPIvT-zcQl2H0vabdXJGcpg","UCI7EM9d6P4wRWRjbFXcxUlQ","UC0HRkOUeR4l1qwpRf9gLmdA","UCI4miDCCAqvOvZxIl5N3CPQ","UCDbVjtCeUnZliM4wTkhq2Lg","UCsVD3ZguqePDEKaPHUeaIuQ","UChB8rMl6iOQbVk0GZ9VPuZg","UCuPLku1Zrk6HMr2S51yGkpQ","UC6OZkZ7VcRGNMV1uQwnt9Gg","UCO5aEyYJeUXv8rxQEvbUMeA","UC4-a76b3AGFmdsbIBfMa88A"] }, \n",
|
||
"{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"20 Minutes of Adorable Kittens &#55357;&#56845; | BEST Compilation\">20 Minutes of Adorable Kittens &#55357;&#56845; | B<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute and Funny Cat Videos to Keep You Smiling! &#55357;&#56369;\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520 #cat #kittens #pets\">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"30 Minutes of the Worlds CUTEST Kittens! &#55357;&#56891;&#55357;&#56469;\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"&#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals\">Baby Cats - Cute and Funny Cat Videos<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\">Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing vi<span class=\"structural\">...</span></span>","CATS: Crazy Antics and Unstoppable Chaos","<span class=\"formatted\" title=\"This cat is very cute #cats #catscute #world #shorts\">This cat is very cute #cats #catscute<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"These CATS are too FUNNY! &#55358;&#56611; | New Cat Videos 2025\">These CATS are too FUNNY! &#55358;&#56611; | New Ca<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\">Kitten Arrival! #CatLovers #CuteCats <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts\">Cute cats and kittens steals my kinde<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations &#55357;&#56890;&#55357;&#56834;&#55357;&#56834; -EPS1203 #funnycats\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></span>","Kitten meowing to attract cats","Funny Cute Cats &#55357;&#56890;","<span class=\"formatted\" title=\"12 minutes of adorable &#55358;&#56688;cats and kittens videos to keep you smiling &#55357;&#56469;&#55357;&#56837;\">12 minutes of adorable &#55358;&#56688;cats and kit<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Silliest CATS on Earth &#55357;&#56834; Funny Cats Videos 2023\">Silliest CATS on Earth &#55357;&#56834; Funny Cat<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"&#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></span>","Cute baby kitten sound &#10084;&#65039; #shorts","<span class=\"formatted\" title=\"Cute Cat Dancing Video (2)&#55357;&#56890;&#55357;&#56845; #cat #dog #dogdance #catdance\">Cute Cat Dancing Video (2)&#55357;&#56890;&#55357;&#56845; #cat #<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\">Cute, cuddly, and utterly chaotic! Th<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\">Hoomans! Rufus here! Cats are my best<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\">shorts #catvideos #cat #funnycats #ki<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"How cute are these kittens!!! &#9786;&#65039; &#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\">How cute are these kittens!!! &#9786;&#65039; &#10024; <span class=\"structural\">...</span></span>","","<span class=\"formatted\" title=\"Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...\">Watching funny baby cats is the harde<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cat &#38; cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.\">Cat &#38; cute baby laughing video #funny<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...\">Funniest video compilation - CATS: Cr<span class=\"structural\">...</span></span>","","<span class=\"formatted\" title=\"You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats &#10024; Subscribe to The Scoop for our most ...\">You like cats? We got em! No dogs! Ju<span class=\"structural\">...</span></span>","","","<span class=\"formatted\" title=\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...\">cat meowing to attract cats,cats meow<span class=\"structural\">...</span></span>","","<span class=\"formatted\" title=\"12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...\">12 minutes of adorable cats and kitte<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...\">Silliest CATS on Earth - Funny Cats V<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...\">Funny cat videos | cute cats | Try no<span class=\"structural\">...</span></span>","",""] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\">https://i.ytimg.com/vi/y0sF5xhGreA/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\">https://i.ytimg.com/vi/tpiyEe_CqB4/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\">https://i.ytimg.com/vi/wdjpworLSk8/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\">https://i.ytimg.com/vi/MlDtL2hIj-Q/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\">https://i.ytimg.com/vi/1UgJI6O8T2U/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg\">https://i.ytimg.com/vi/cytJLvf-eVs/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg\">https://i.ytimg.com/vi/ASFCURj-2hQ/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg\">https://i.ytimg.com/vi/8iY66B5NB2w/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg\">https://i.ytimg.com/vi/1TsaNbWEckk/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg\">https://i.ytimg.com/vi/3URtTIdnXIk/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/afm0c53xO2o/default.jpg\">https://i.ytimg.com/vi/afm0c53xO2o/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg\">https://i.ytimg.com/vi/2M1AFRWPpy8/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg\">https://i.ytimg.com/vi/o0Dvesp0lQU/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg\">https://i.ytimg.com/vi/NsMKvVdEPkw/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg\">https://i.ytimg.com/vi/a7K-kWT_C2A/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg\">https://i.ytimg.com/vi/BOK8T1HK4S8/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg\">https://i.ytimg.com/vi/RFMuw3xpmFE/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Po098TRdOn4/default.jpg\">https://i.ytimg.com/vi/Po098TRdOn4/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg\">https://i.ytimg.com/vi/DrpvkCRE2P4/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg\">https://i.ytimg.com/vi/OQoukB1VB5k/de<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>"] }, \n",
|
||
"{ name: "<span title=\"default: DataRow<*>\">default</span>", children: [9, 10, 11], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/afm0c53xO2o/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Po098TRdOn4/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\">https://i.ytimg.com/vi/y0sF5xhGreA/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\">https://i.ytimg.com/vi/tpiyEe_CqB4/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\">https://i.ytimg.com/vi/wdjpworLSk8/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\">https://i.ytimg.com/vi/MlDtL2hIj-Q/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\">https://i.ytimg.com/vi/1UgJI6O8T2U/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg\">https://i.ytimg.com/vi/cytJLvf-eVs/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg\">https://i.ytimg.com/vi/ASFCURj-2hQ/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg\">https://i.ytimg.com/vi/8iY66B5NB2w/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg\">https://i.ytimg.com/vi/1TsaNbWEckk/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg\">https://i.ytimg.com/vi/3URtTIdnXIk/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg\">https://i.ytimg.com/vi/afm0c53xO2o/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg\">https://i.ytimg.com/vi/2M1AFRWPpy8/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg\">https://i.ytimg.com/vi/o0Dvesp0lQU/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg\">https://i.ytimg.com/vi/NsMKvVdEPkw/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg\">https://i.ytimg.com/vi/a7K-kWT_C2A/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg\">https://i.ytimg.com/vi/BOK8T1HK4S8/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg\">https://i.ytimg.com/vi/RFMuw3xpmFE/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg\">https://i.ytimg.com/vi/Po098TRdOn4/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg\">https://i.ytimg.com/vi/DrpvkCRE2P4/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg\">https://i.ytimg.com/vi/OQoukB1VB5k/mq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>"] }, \n",
|
||
"{ name: "<span title=\"medium: DataRow<*>\">medium</span>", children: [13, 14, 15], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\">https://i.ytimg.com/vi/y0sF5xhGreA/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\">https://i.ytimg.com/vi/tpiyEe_CqB4/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\">https://i.ytimg.com/vi/wdjpworLSk8/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\">https://i.ytimg.com/vi/MlDtL2hIj-Q/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\">https://i.ytimg.com/vi/1UgJI6O8T2U/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg\">https://i.ytimg.com/vi/cytJLvf-eVs/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg\">https://i.ytimg.com/vi/ASFCURj-2hQ/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg\">https://i.ytimg.com/vi/8iY66B5NB2w/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg\">https://i.ytimg.com/vi/1TsaNbWEckk/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg\">https://i.ytimg.com/vi/3URtTIdnXIk/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg\">https://i.ytimg.com/vi/afm0c53xO2o/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg\">https://i.ytimg.com/vi/2M1AFRWPpy8/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg\">https://i.ytimg.com/vi/o0Dvesp0lQU/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg\">https://i.ytimg.com/vi/NsMKvVdEPkw/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg\">https://i.ytimg.com/vi/a7K-kWT_C2A/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg\">https://i.ytimg.com/vi/BOK8T1HK4S8/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg\">https://i.ytimg.com/vi/RFMuw3xpmFE/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg\">https://i.ytimg.com/vi/Po098TRdOn4/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg\">https://i.ytimg.com/vi/DrpvkCRE2P4/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg\">https://i.ytimg.com/vi/OQoukB1VB5k/hq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>"] }, \n",
|
||
"{ name: "<span title=\"high: DataRow<*>\">high</span>", children: [17, 18, 19], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"thumbnails: DataRow<*>\">thumbnails</span>", children: [12, 16, 20], rightAlign: false, values: ["<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/wdjpworLSk8/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/afm0c53xO2o/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/Po098TRdOn4/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"channelTitle: String\">channelTitle</span>", children: [], rightAlign: false, values: ["The Pet Collective","Rufus"," Cute Cat&#55357;&#56369;","The Pet Collective","Dancing Cat","Aww Animals","Toon4","CaD Animals","ODINKK 06","The Pet Collective","toyfunnycat","Lovie Jennaira","CuteAnimalShare","Cute Baby Cats 267","ThomasTrucker","Cat Fun 0","Little Love ","SRH Funny cats","Lovely Kittens","Pretty Kittens"] }, \n",
|
||
"{ name: "<span title=\"liveBroadcastContent: String\">liveBroadcastContent</span>", children: [], rightAlign: false, values: ["none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none"] }, \n",
|
||
"{ name: "<span title=\"publishTime: String\">publishTime</span>", children: [], rightAlign: false, values: ["2023-05-28T13:00:44Z","2020-04-10T16:00:28Z","2023-09-15T22:02:00Z","2023-11-19T19:00:10Z","2025-01-14T04:24:22Z","2020-02-05T15:49:45Z","2024-09-26T03:51:17Z","2025-01-31T13:00:16Z","2025-05-27T03:57:51Z","2025-04-13T13:00:11Z","2024-06-26T17:41:01Z","2024-06-27T12:23:24Z","2024-11-27T00:54:39Z","2023-05-06T14:18:05Z","2023-07-22T05:27:58Z","2024-07-31T14:00:06Z","2023-10-08T13:00:29Z","2023-01-02T09:46:11Z","2023-05-25T10:30:02Z","2024-09-05T13:35:00Z"] }, \n",
|
||
"{ name: "<span title=\"snippet: DataRow<*>\">snippet</span>", children: [5, 6, 7, 8, 21, 22, 23, 24], rightAlign: false, values: ["<span class=\"formatted\" title=\"publishedAt: 2023-05-28T13:00:44Z\nchannelId: UCPIvT-zcQl2H0vabdXJGcpg\ntitle: 20 Minutes of Adorable Kittens &#55357;&#56845; | BEST Compilation\ndescription: Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: The Pet Collective\nliveBroadcastContent: none\npublishTime: 2023-05-28T13:00:44Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-05-28T13:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2020-04-10T16:00:28Z\nchannelId: UCzn2gx8zzhF0A4Utk8TEDNQ\ntitle: Cute and Funny Cat Videos to Keep You Smiling! &#55357;&#56369;\ndescription: Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Rufus\nliveBroadcastContent: none\npublishTime: 2020-04-10T16:00:28Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2020-04-10T16:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-09-15T22:02:00Z\nchannelId: UCQQcnrcfQbWvCl2lBvF5hoQ\ntitle: Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520 #cat #kittens #pets\ndescription: shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\nthumbnails: { default:{ url:https://i.ytimg.com/vi/wdjpworLSk8/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Cute Cat&#55357;&#56369;\nliveBroadcastContent: none\npublishTime: 2023-09-15T22:02:00Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-09-15T22:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-11-19T19:00:10Z\nchannelId: UCPIvT-zcQl2H0vabdXJGcpg\ntitle: 30 Minutes of the Worlds CUTEST Kittens! &#55357;&#56891;&#55357;&#56469;\ndescription: How cute are these kittens!!! &#9786;&#65039; &#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: The Pet Collective\nliveBroadcastContent: none\npublishTime: 2023-11-19T19:00:10Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-11-19T19:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-01-14T04:24:22Z\nchannelId: UCkgRhUW4sHt6bQ32dNiQVVg\ntitle: &#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Dancing Cat\nliveBroadcastContent: none\npublishTime: 2025-01-14T04:24:22Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-01-14T04:2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2020-02-05T15:49:45Z\nchannelId: UC8hC-augAnujJeprhjI0YkA\ntitle: Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals\ndescription: Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Aww Animals\nliveBroadcastContent: none\npublishTime: 2020-02-05T15:49:45Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2020-02-05T15:4<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-09-26T03:51:17Z\nchannelId: UCntAD-sZOPUXRIcw9syL-MQ\ntitle: Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\ndescription: Cat &#38; cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.\nthumbnails: { default:{ url:https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Toon4\nliveBroadcastContent: none\npublishTime: 2024-09-26T03:51:17Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-09-26T03:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-01-31T13:00:16Z\nchannelId: UCU0nAvDjqfXo1fTA7xn527w\ntitle: CATS: Crazy Antics and Unstoppable Chaos\ndescription: Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: CaD Animals\nliveBroadcastContent: none\npublishTime: 2025-01-31T13:00:16Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-01-31T13:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-05-27T03:57:51Z\nchannelId: UCzznUMJ6TwMKb3voVs_CFvg\ntitle: This cat is very cute #cats #catscute #world #shorts\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: ODINKK 06\nliveBroadcastContent: none\npublishTime: 2025-05-27T03:57:51Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-05-27T03:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-04-13T13:00:11Z\nchannelId: UCPIvT-zcQl2H0vabdXJGcpg\ntitle: These CATS are too FUNNY! &#55358;&#56611; | New Cat Videos 2025\ndescription: You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats &#10024; Subscribe to The Scoop for our most ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: The Pet Collective\nliveBroadcastContent: none\npublishTime: 2025-04-13T13:00:11Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-04-13T13:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-06-26T17:41:01Z\nchannelId: UCI7EM9d6P4wRWRjbFXcxUlQ\ntitle: Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/afm0c53xO2o/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: toyfunnycat\nliveBroadcastContent: none\npublishTime: 2024-06-26T17:41:01Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-06-26T17:4<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-06-27T12:23:24Z\nchannelId: UC0HRkOUeR4l1qwpRf9gLmdA\ntitle: Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Lovie Jennaira\nliveBroadcastContent: none\npublishTime: 2024-06-27T12:23:24Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-06-27T12:2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-11-27T00:54:39Z\nchannelId: UCI4miDCCAqvOvZxIl5N3CPQ\ntitle: LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations &#55357;&#56890;&#55357;&#56834;&#55357;&#56834; -EPS1203 #funnycats\ndescription: LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: CuteAnimalShare\nliveBroadcastContent: none\npublishTime: 2024-11-27T00:54:39Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-11-27T00:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-05-06T14:18:05Z\nchannelId: UCDbVjtCeUnZliM4wTkhq2Lg\ntitle: Kitten meowing to attract cats\ndescription: cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Cute Baby Cats 267\nliveBroadcastContent: none\npublishTime: 2023-05-06T14:18:05Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-05-06T14:1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-07-22T05:27:58Z\nchannelId: UCsVD3ZguqePDEKaPHUeaIuQ\ntitle: Funny Cute Cats &#55357;&#56890;\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: ThomasTrucker\nliveBroadcastContent: none\npublishTime: 2023-07-22T05:27:58Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-07-22T05:2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-07-31T14:00:06Z\nchannelId: UChB8rMl6iOQbVk0GZ9VPuZg\ntitle: 12 minutes of adorable &#55358;&#56688;cats and kittens videos to keep you smiling &#55357;&#56469;&#55357;&#56837;\ndescription: 12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Cat Fun 0\nliveBroadcastContent: none\npublishTime: 2024-07-31T14:00:06Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-07-31T14:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-10-08T13:00:29Z\nchannelId: UCuPLku1Zrk6HMr2S51yGkpQ\ntitle: Silliest CATS on Earth &#55357;&#56834; Funny Cats Videos 2023\ndescription: Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Little Love \nliveBroadcastContent: none\npublishTime: 2023-10-08T13:00:29Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-10-08T13:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-01-02T09:46:11Z\nchannelId: UC6OZkZ7VcRGNMV1uQwnt9Gg\ntitle: &#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\ndescription: Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/Po098TRdOn4/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: SRH Funny cats\nliveBroadcastContent: none\npublishTime: 2023-01-02T09:46:11Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-01-02T09:4<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-05-25T10:30:02Z\nchannelId: UCO5aEyYJeUXv8rxQEvbUMeA\ntitle: Cute baby kitten sound &#10084;&#65039; #shorts\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Lovely Kittens\nliveBroadcastContent: none\npublishTime: 2023-05-25T10:30:02Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-05-25T10:3<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-09-05T13:35:00Z\nchannelId: UC4-a76b3AGFmdsbIBfMa88A\ntitle: Cute Cat Dancing Video (2)&#55357;&#56890;&#55357;&#56845; #cat #dog #dogdance #catdance\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Pretty Kittens\nliveBroadcastContent: none\npublishTime: 2024-09-05T13:35:00Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-09-05T13:3<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281112, rootId: 1560281112, totalRows: 250 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"call_DataFrame(function() { DataFrame.renderTable(1560281112) });\n",
|
||
"\n",
|
||
"\n",
|
||
" </script>\n",
|
||
" </html>\"></iframe>\n",
|
||
" <script>\n",
|
||
" function o_resize_iframe_out_3() {\n",
|
||
" let elem = document.getElementById(\"iframe_out_3\");\n",
|
||
" resize_iframe_out_3(elem);\n",
|
||
" setInterval(resize_iframe_out_3, 5000, elem);\n",
|
||
" }\n",
|
||
" function resize_iframe_out_3(el) {\n",
|
||
" let h = el.contentWindow.document.body.scrollHeight;\n",
|
||
" el.height = h === 0 ? 0 : h + 41;\n",
|
||
" }\n",
|
||
" </script> <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type=\"text/css\">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class=\"dataframe\" id=\"static_df_1560281113\"><thead><tr><th style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">etag</th><th class=\"leftBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">kind</th><th class=\"rightBorder\" style=\"text-align:left\">videoId</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">webdtycT-B4LmJXWkBJvVWUmcHY</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">y0sF5xhGreA</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-28T13:00:44Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">20 Minutes of Adorable Kittens �� | B<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cute, cuddly, and utterly chaotic! Th<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-28T13:00:44Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">t1vv105IWNG2EOHsMAK2yRtj010</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">tpiyEe_CqB4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-04-10T16:00:28Z</td><td style=\"vertical-align:top\">UCzn2gx8zzhF0A4Utk8TEDNQ</td><td style=\"vertical-align:top\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Hoomans! Rufus here! Cats are my best<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Rufus</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2020-04-10T16:00:28Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">2Kd_RVdhCCBb6srFTzcoirkVZro</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">wdjpworLSk8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-09-15T22:02:00Z</td><td style=\"vertical-align:top\">UCQQcnrcfQbWvCl2lBvF5hoQ</td><td style=\"vertical-align:top\">Cute kittens❤️【30】#shorts #cutecat520<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">shorts #catvideos #cat #funnycats #ki<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\"> Cute Cat��</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-09-15T22:02:00Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">E6nCj0vSvJRjNcEQaFQ2d8spmhM</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">MlDtL2hIj-Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-11-19T19:00:10Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">How cute are these kittens!!! ☺️ ✨ <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-11-19T19:00:10Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">Qg7OO4HOlZZ3YLpsJWVYBt92Kwc</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">1UgJI6O8T2U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-14T04:24:22Z</td><td style=\"vertical-align:top\">UCkgRhUW4sHt6bQ32dNiQVVg</td><td style=\"vertical-align:top\">�� Funny cat videos | cute cats | Try<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Dancing Cat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-14T04:24:22Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">13rrjHLEedgFgBm9W24i_MYXOAQ</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">cytJLvf-eVs</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-02-05T15:49:45Z</td><td style=\"vertical-align:top\">UC8hC-augAnujJeprhjI0YkA</td><td style=\"vertical-align:top\">Baby Cats - Cute and Funny Cat Videos<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Watching funny baby cats is the harde<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Aww Animals</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2020-02-05T15:49:45Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">XSVBsAd9es2GZHYdITYk3MBad58</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">ASFCURj-2hQ</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-26T03:51:17Z</td><td style=\"vertical-align:top\">UCntAD-sZOPUXRIcw9syL-MQ</td><td style=\"vertical-align:top\">Cat �� &amp; cute baby �� laughing vi<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cat & cute baby laughing video #funny<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Toon4</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-26T03:51:17Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">pIgN9Ru809WNiPWBtuGlWQAbxCQ</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">8iY66B5NB2w</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-31T13:00:16Z</td><td style=\"vertical-align:top\">UCU0nAvDjqfXo1fTA7xn527w</td><td style=\"vertical-align:top\">CATS: Crazy Antics and Unstoppable Chaos</td><td class=\"rightBorder\" style=\"vertical-align:top\">Funniest video compilation - CATS: Cr<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">CaD Animals</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-31T13:00:16Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">YRzi81_jEkZ9ME2DpoKA8Owvew4</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">1TsaNbWEckk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-27T03:57:51Z</td><td style=\"vertical-align:top\">UCzznUMJ6TwMKb3voVs_CFvg</td><td style=\"vertical-align:top\">This cat is very cute #cats #catscute<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">ODINKK 06</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-27T03:57:51Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">nST7mcLVAgbEWfHWUuHCcCmznAo</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">3URtTIdnXIk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-04-13T13:00:11Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">These CATS are too FUNNY! �� | New Ca<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">You like cats? We got em! No dogs! Ju<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-04-13T13:00:11Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">nsPQ9fdFl-3JEvRvOGlkl3tQhAU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">afm0c53xO2o</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-06-26T17:41:01Z</td><td style=\"vertical-align:top\">UCI7EM9d6P4wRWRjbFXcxUlQ</td><td style=\"vertical-align:top\">Kitten Arrival! #CatLovers #CuteCats <span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">toyfunnycat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-06-26T17:41:01Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">3FMsKvZ4tnjiAOCqvXQe8JdAtQw</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">2M1AFRWPpy8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-06-27T12:23:24Z</td><td style=\"vertical-align:top\">UC0HRkOUeR4l1qwpRf9gLmdA</td><td style=\"vertical-align:top\">Cute cats and kittens steals my kinde<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Lovie Jennaira</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-06-27T12:23:24Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">YARLzvIzFhBix3Ya8nPj0c9txvg</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">o0Dvesp0lQU</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-11-27T00:54:39Z</td><td style=\"vertical-align:top\">UCI4miDCCAqvOvZxIl5N3CPQ</td><td style=\"vertical-align:top\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">CuteAnimalShare</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-11-27T00:54:39Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">5ByqGeQh1pBdfAUU_bOvX2Z4HfU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">NsMKvVdEPkw</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-06T14:18:05Z</td><td style=\"vertical-align:top\">UCDbVjtCeUnZliM4wTkhq2Lg</td><td style=\"vertical-align:top\">Kitten meowing to attract cats</td><td class=\"rightBorder\" style=\"vertical-align:top\">cat meowing to attract cats,cats meow<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cute Baby Cats 267</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-06T14:18:05Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">VExjgdmgRBJWooA2pBfuAyzHSvQ</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">a7K-kWT_C2A</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-07-22T05:27:58Z</td><td style=\"vertical-align:top\">UCsVD3ZguqePDEKaPHUeaIuQ</td><td style=\"vertical-align:top\">Funny Cute Cats ��</td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">ThomasTrucker</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-07-22T05:27:58Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">ZRWfV7XfiOfkFiGnTg09gFRNA7Q</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">BOK8T1HK4S8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-07-31T14:00:06Z</td><td style=\"vertical-align:top\">UChB8rMl6iOQbVk0GZ9VPuZg</td><td style=\"vertical-align:top\">12 minutes of adorable ��cats and kit<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">12 minutes of adorable cats and kitte<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cat Fun 0</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-07-31T14:00:06Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">p_f8U8Yr1b-IO4aBb-TfHjU7G6Q</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">RFMuw3xpmFE</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-10-08T13:00:29Z</td><td style=\"vertical-align:top\">UCuPLku1Zrk6HMr2S51yGkpQ</td><td style=\"vertical-align:top\">Silliest CATS on Earth �� Funny Cat<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Silliest CATS on Earth - Funny Cats V<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Little Love </td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-10-08T13:00:29Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">eRGtBGQW7bQjHH4WIr_I0NYD6wU</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">Po098TRdOn4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-01-02T09:46:11Z</td><td style=\"vertical-align:top\">UC6OZkZ7VcRGNMV1uQwnt9Gg</td><td style=\"vertical-align:top\">�� Funny cat videos | cute cats | Try<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Funny cat videos | cute cats | Try no<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">SRH Funny cats</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-01-02T09:46:11Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">Wr7YkmJwDVgmgG5vhP6Nhx54eTg</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">DrpvkCRE2P4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-25T10:30:02Z</td><td style=\"vertical-align:top\">UCO5aEyYJeUXv8rxQEvbUMeA</td><td style=\"vertical-align:top\">Cute baby kitten sound ❤️ #shorts</td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Lovely Kittens</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-25T10:30:02Z</td></tr><tr><td style=\"vertical-align:top\">youtube#searchResult</td><td class=\"rightBorder\" style=\"vertical-align:top\">AGVb0f5--fq-CiJ0LWvkczCN6Us</td><td class=\"leftBorder\" style=\"vertical-align:top\">youtube#video</td><td class=\"rightBorder\" style=\"vertical-align:top\">OQoukB1VB5k</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-05T13:35:00Z</td><td style=\"vertical-align:top\">UC4-a76b3AGFmdsbIBfMa88A</td><td style=\"vertical-align:top\">Cute Cat Dancing Video (2)���� #cat #<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Pretty Kittens</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-05T13:35:00Z</td></tr></tbody></table>\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" document.getElementById(\"static_df_1560281113\").style.display = \"none\";\n",
|
||
" </script>\n",
|
||
" </html>"
|
||
],
|
||
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"kind\",\"etag\",\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}],\"nrow\":250,\"ncol\":4},\"kotlin_dataframe\":[{\"kind\":\"youtube#searchResult\",\"etag\":\"webdtycT-B4LmJXWkBJvVWUmcHY\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"y0sF5xhGreA\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-28T13:00:44Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"20 Minutes of Adorable Kittens 😍 | BEST Compilation\",\"description\":\"Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-28T13:00:44Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"t1vv105IWNG2EOHsMAK2yRtj010\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"tpiyEe_CqB4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2020-04-10T16:00:28Z\",\"channelId\":\"UCzn2gx8zzhF0A4Utk8TEDNQ\",\"title\":\"Cute and Funny Cat Videos to Keep You Smiling! 🐱\",\"description\":\"Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Rufus\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-04-10T16:00:28Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"2Kd_RVdhCCBb6srFTzcoirkVZro\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"wdjpworLSk8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-09-15T22:02:00Z\",\"channelId\":\"UCQQcnrcfQbWvCl2lBvF5hoQ\",\"title\":\"Cute kittens❤️【30】#shorts #cutecat520 #cat #kittens #pets\",\"description\":\"shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\" Cute Cat🐱\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-09-15T22:02:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"E6nCj0vSvJRjNcEQaFQ2d8spmhM\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"MlDtL2hIj-Q\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-11-19T19:00:10Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"30 Minutes of the Worlds CUTEST Kittens! 😻💕\",\"description\":\"How cute are these kittens!!! ☺️ ✨ Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-11-19T19:00:10Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Qg7OO4HOlZZ3YLpsJWVYBt92Kwc\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"1UgJI6O8T2U\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-14T04:24:22Z\",\"channelId\":\"UCkgRhUW4sHt6bQ32dNiQVVg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Dancing Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-14T04:24:22Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"13rrjHLEedgFgBm9W24i_MYXOAQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"cytJLvf-eVs\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2020-02-05T15:49:45Z\",\"channelId\":\"UC8hC-augAnujJeprhjI0YkA\",\"title\":\"Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals\",\"description\":\"Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Aww Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-02-05T15:49:45Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"XSVBsAd9es2GZHYdITYk3MBad58\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"ASFCURj-2hQ\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-26T03:51:17Z\",\"channelId\":\"UCntAD-sZOPUXRIcw9syL-MQ\",\"title\":\"Cat 🐈 & cute baby 🐥 laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\",\"description\":\"Cat & cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Toon4\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-26T03:51:17Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"pIgN9Ru809WNiPWBtuGlWQAbxCQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"8iY66B5NB2w\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-31T13:00:16Z\",\"channelId\":\"UCU0nAvDjqfXo1fTA7xn527w\",\"title\":\"CATS: Crazy Antics and Unstoppable Chaos\",\"description\":\"Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CaD Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-31T13:00:16Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YRzi81_jEkZ9ME2DpoKA8Owvew4\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"1TsaNbWEckk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T03:57:51Z\",\"channelId\":\"UCzznUMJ6TwMKb3voVs_CFvg\",\"title\":\"This cat is very cute #cats #catscute #world #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ODINKK 06\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T03:57:51Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"nST7mcLVAgbEWfHWUuHCcCmznAo\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"3URtTIdnXIk\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-13T13:00:11Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"These CATS are too FUNNY! 🤣 | New Cat Videos 2025\",\"description\":\"You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats ✨ Subscribe to The Scoop for our most ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-13T13:00:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"nsPQ9fdFl-3JEvRvOGlkl3tQhAU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"afm0c53xO2o\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-26T17:41:01Z\",\"channelId\":\"UCI7EM9d6P4wRWRjbFXcxUlQ\",\"title\":\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"toyfunnycat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-26T17:41:01Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"3FMsKvZ4tnjiAOCqvXQe8JdAtQw\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"2M1AFRWPpy8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-27T12:23:24Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-27T12:23:24Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"YARLzvIzFhBix3Ya8nPj0c9txvg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"o0Dvesp0lQU\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-27T00:54:39Z\",\"channelId\":\"UCI4miDCCAqvOvZxIl5N3CPQ\",\"title\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations 😺😂😂 -EPS1203 #funnycats\",\"description\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CuteAnimalShare\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-27T00:54:39Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"5ByqGeQh1pBdfAUU_bOvX2Z4HfU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"NsMKvVdEPkw\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-06T14:18:05Z\",\"channelId\":\"UCDbVjtCeUnZliM4wTkhq2Lg\",\"title\":\"Kitten meowing to attract cats\",\"description\":\"cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute Baby Cats 267\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-06T14:18:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"VExjgdmgRBJWooA2pBfuAyzHSvQ\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"a7K-kWT_C2A\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-07-22T05:27:58Z\",\"channelId\":\"UCsVD3ZguqePDEKaPHUeaIuQ\",\"title\":\"Funny Cute Cats 😺\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ThomasTrucker\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-07-22T05:27:58Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"ZRWfV7XfiOfkFiGnTg09gFRNA7Q\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"BOK8T1HK4S8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-31T14:00:06Z\",\"channelId\":\"UChB8rMl6iOQbVk0GZ9VPuZg\",\"title\":\"12 minutes of adorable 🥰cats and kittens videos to keep you smiling 💕😅\",\"description\":\"12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat Fun 0\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-31T14:00:06Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"p_f8U8Yr1b-IO4aBb-TfHjU7G6Q\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"RFMuw3xpmFE\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-10-08T13:00:29Z\",\"channelId\":\"UCuPLku1Zrk6HMr2S51yGkpQ\",\"title\":\"Silliest CATS on Earth 😂 Funny Cats Videos 2023\",\"description\":\"Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Little Love \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-10-08T13:00:29Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"eRGtBGQW7bQjHH4WIr_I0NYD6wU\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"Po098TRdOn4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-01-02T09:46:11Z\",\"channelId\":\"UC6OZkZ7VcRGNMV1uQwnt9Gg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"SRH Funny cats\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-01-02T09:46:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"Wr7YkmJwDVgmgG5vhP6Nhx54eTg\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"DrpvkCRE2P4\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-25T10:30:02Z\",\"channelId\":\"UCO5aEyYJeUXv8rxQEvbUMeA\",\"title\":\"Cute baby kitten sound ❤️ #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovely Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-25T10:30:02Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#searchResult\",\"etag\":\"AGVb0f5--fq-CiJ0LWvkczCN6Us\",\"id\":{\"data\":{\"kind\":\"youtube#video\",\"videoId\":\"OQoukB1VB5k\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"videoId\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}},\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-05T13:35:00Z\",\"channelId\":\"UC4-a76b3AGFmdsbIBfMa88A\",\"title\":\"Cute Cat Dancing Video (2)😺😍 #cat #dog #dogdance #catdance\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Pretty Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-05T13:35:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}]}"
|
||
},
|
||
"execution_count": 7,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"execution_count": 7
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:09:36.161028Z",
|
||
"start_time": "2025-05-28T11:09:35.864933Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"val videos = items.dropNulls { id.videoId }\n",
|
||
" .select { id.videoId named \"id\" and snippet }\n",
|
||
" .distinct()\n",
|
||
"videos"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/html": [
|
||
" <iframe onload=\"o_resize_iframe_out_7()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_7\" frameBorder=\"0\" srcdoc=\" <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type="text/css">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
":root {\n",
|
||
" --scroll-bg: #f5f5f5;\n",
|
||
" --scroll-fg: #b3b3b3;\n",
|
||
"}\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"]{\n",
|
||
" --scroll-bg: #3c3c3c;\n",
|
||
" --scroll-fg: #97e1fb;\n",
|
||
"}\n",
|
||
"body {\n",
|
||
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar {\n",
|
||
" width: 10px; /* Mostly for vertical scrollbars */\n",
|
||
" height: 10px; /* Mostly for horizontal scrollbars */\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-thumb {\n",
|
||
" background-color: var(--scroll-fg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-track {\n",
|
||
" background-color: var(--scroll-bg);\n",
|
||
"}\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class="dataframe" id="df_1560281120"></table>\n",
|
||
"\n",
|
||
"<p class="dataframe_description">... showing only top 20 of 232 rows</p><p class="dataframe_description">DataFrame: rowsCount = 232, columnsCount = 2</p>\n",
|
||
"\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" (function () {\n",
|
||
" window.DataFrame = window.DataFrame || new (function () {\n",
|
||
" this.addTable = function (df) {\n",
|
||
" let cols = df.cols;\n",
|
||
" for (let i = 0; i < cols.length; i++) {\n",
|
||
" for (let c of cols[i].children) {\n",
|
||
" cols[c].parent = i;\n",
|
||
" }\n",
|
||
" }\n",
|
||
" df.nrow = 0\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" if (df.cols[i].values.length > df.nrow) df.nrow = df.cols[i].values.length\n",
|
||
" }\n",
|
||
" if (df.id === df.rootId) {\n",
|
||
" df.expandedFrames = new Set()\n",
|
||
" df.childFrames = {}\n",
|
||
" const table = this.getTableElement(df.id)\n",
|
||
" table.df = df\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" let col = df.cols[i]\n",
|
||
" if (col.parent === undefined && col.children.length > 0) col.expanded = true\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" const rootDf = this.getTableData(df.rootId)\n",
|
||
" rootDf.childFrames[df.id] = df\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderData = function (df) {\n",
|
||
" let result = []\n",
|
||
" let pos = 0\n",
|
||
" for (let col = 0; col < df.cols.length; col++) {\n",
|
||
" if (df.cols[col].parent === undefined)\n",
|
||
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
|
||
" }\n",
|
||
" for (let i = 0; i < result.length; i++) {\n",
|
||
" let row = result[i]\n",
|
||
" for (let j = 0; j < row.length; j++) {\n",
|
||
" let cell = row[j]\n",
|
||
" if (j === 0)\n",
|
||
" cell.leftBd = false\n",
|
||
" if (j < row.length - 1) {\n",
|
||
" let nextData = row[j + 1]\n",
|
||
" if (nextData.leftBd) cell.rightBd = true\n",
|
||
" else if (cell.rightBd) nextData.leftBd = true\n",
|
||
" } else cell.rightBd = false\n",
|
||
" }\n",
|
||
" }\n",
|
||
" return result\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
|
||
" if (result.length === depth) {\n",
|
||
" const array = [];\n",
|
||
" if (pos > 0) {\n",
|
||
" let j = 0\n",
|
||
" for (let i = 0; j < pos; i++) {\n",
|
||
" let c = result[depth - 1][i]\n",
|
||
" j += c.span\n",
|
||
" let copy = Object.assign({empty: true}, c)\n",
|
||
" array.push(copy)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" result.push(array)\n",
|
||
" }\n",
|
||
" const col = cols[colId];\n",
|
||
" let size = 0;\n",
|
||
" if (col.expanded) {\n",
|
||
" let childPos = pos\n",
|
||
" for (let i = 0; i < col.children.length; i++) {\n",
|
||
" let child = col.children[i]\n",
|
||
" let childLeft = i === 0 && (col.children.length > 1 || leftBorder)\n",
|
||
" let childRight = i === col.children.length - 1 && (col.children.length > 1 || rightBorder)\n",
|
||
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
|
||
" childPos += childSize\n",
|
||
" size += childSize\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" for (let i = depth + 1; i < result.length; i++)\n",
|
||
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
|
||
" size = 1\n",
|
||
" }\n",
|
||
" let left = leftBorder\n",
|
||
" let right = rightBorder\n",
|
||
" if (size > 1) {\n",
|
||
" left = true\n",
|
||
" right = true\n",
|
||
" }\n",
|
||
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
|
||
" return size\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableElement = function (id) {\n",
|
||
" return document.getElementById("df_" + id)\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableData = function (id) {\n",
|
||
" return this.getTableElement(id).df\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.createExpander = function (isExpanded) {\n",
|
||
" const svgNs = "http://www.w3.org/2000/svg"\n",
|
||
" let svg = document.createElementNS(svgNs, "svg")\n",
|
||
" svg.classList.add("expanderSvg")\n",
|
||
" let path = document.createElementNS(svgNs, "path")\n",
|
||
" if (isExpanded) {\n",
|
||
" svg.setAttribute("viewBox", "0 -2 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z")\n",
|
||
" } else {\n",
|
||
" svg.setAttribute("viewBox", "-2 0 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z")\n",
|
||
" }\n",
|
||
" path.setAttribute("fill", "currentColor")\n",
|
||
" svg.appendChild(path)\n",
|
||
" return svg\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.renderTable = function (id) {\n",
|
||
"\n",
|
||
" let table = this.getTableElement(id)\n",
|
||
"\n",
|
||
" if (table === null) return\n",
|
||
"\n",
|
||
" table.innerHTML = ""\n",
|
||
"\n",
|
||
" let df = table.df\n",
|
||
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
|
||
"\n",
|
||
" // header\n",
|
||
" let header = document.createElement("thead")\n",
|
||
" table.appendChild(header)\n",
|
||
"\n",
|
||
" let renderData = this.computeRenderData(df)\n",
|
||
" for (let j = 0; j < renderData.length; j++) {\n",
|
||
" let rowData = renderData[j]\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" let isLastRow = j === renderData.length - 1\n",
|
||
" header.appendChild(tr);\n",
|
||
" for (let i = 0; i < rowData.length; i++) {\n",
|
||
" let cell = rowData[i]\n",
|
||
" let th = document.createElement("th");\n",
|
||
" th.setAttribute("colspan", cell.span)\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId];\n",
|
||
" if (!cell.empty) {\n",
|
||
" if (col.children.length === 0) {\n",
|
||
" th.innerHTML = col.name\n",
|
||
" } else {\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" col.expanded = !col.expanded\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(col.expanded))\n",
|
||
" link.innerHTML += col.name\n",
|
||
" th.appendChild(link)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (isLastRow)\n",
|
||
" classes += " bottomBorder"\n",
|
||
" if (classes.length > 0)\n",
|
||
" th.setAttribute("class", classes)\n",
|
||
" tr.appendChild(th)\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" // body\n",
|
||
" let body = document.createElement("tbody")\n",
|
||
" table.appendChild(body)\n",
|
||
"\n",
|
||
" let columns = renderData.pop()\n",
|
||
" for (let row = 0; row < df.nrow; row++) {\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" body.appendChild(tr)\n",
|
||
" for (let i = 0; i < columns.length; i++) {\n",
|
||
" let cell = columns[i]\n",
|
||
" let td = document.createElement("td");\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId]\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (classes.length > 0)\n",
|
||
" td.setAttribute("class", classes)\n",
|
||
" tr.appendChild(td)\n",
|
||
" let value = col.values[row]\n",
|
||
" if (value.frameId !== undefined) {\n",
|
||
" let frameId = value.frameId\n",
|
||
" let expanded = rootDf.expandedFrames.has(frameId)\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" if (rootDf.expandedFrames.has(frameId))\n",
|
||
" rootDf.expandedFrames.delete(frameId)\n",
|
||
" else rootDf.expandedFrames.add(frameId)\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(expanded))\n",
|
||
" link.innerHTML += value.value\n",
|
||
" if (expanded) {\n",
|
||
" td.appendChild(link)\n",
|
||
" td.appendChild(document.createElement("p"))\n",
|
||
" const childTable = document.createElement("table")\n",
|
||
" childTable.className = "dataframe"\n",
|
||
" childTable.id = "df_" + frameId\n",
|
||
" let childDf = rootDf.childFrames[frameId]\n",
|
||
" childTable.df = childDf\n",
|
||
" td.appendChild(childTable)\n",
|
||
" this.renderTable(frameId)\n",
|
||
" if (childDf.nrow !== childDf.totalRows) {\n",
|
||
" const footer = document.createElement("p")\n",
|
||
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
|
||
" td.appendChild(footer)\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" td.appendChild(link)\n",
|
||
" }\n",
|
||
" } else if (value.style !== undefined) {\n",
|
||
" td.innerHTML = value.value\n",
|
||
" td.setAttribute("style", value.style)\n",
|
||
" } else td.innerHTML = value\n",
|
||
" this.nodeScriptReplace(td)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptReplace = function (node) {\n",
|
||
" if (this.nodeScriptIs(node) === true) {\n",
|
||
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
|
||
" } else {\n",
|
||
" let i = -1, children = node.childNodes;\n",
|
||
" while (++i < children.length) {\n",
|
||
" this.nodeScriptReplace(children[i]);\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" return node;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptClone = function (node) {\n",
|
||
" let script = document.createElement("script");\n",
|
||
" script.text = node.innerHTML;\n",
|
||
"\n",
|
||
" let i = -1, attrs = node.attributes, attr;\n",
|
||
" while (++i < attrs.length) {\n",
|
||
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
|
||
" }\n",
|
||
" return script;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptIs = function (node) {\n",
|
||
" return node.tagName === 'SCRIPT';\n",
|
||
" }\n",
|
||
" })()\n",
|
||
"\n",
|
||
" window.call_DataFrame = function (f) {\n",
|
||
" return f();\n",
|
||
" };\n",
|
||
"\n",
|
||
" let funQueue = window["kotlinQueues"] && window["kotlinQueues"]["DataFrame"];\n",
|
||
" if (funQueue) {\n",
|
||
" funQueue.forEach(function (f) {\n",
|
||
" f();\n",
|
||
" });\n",
|
||
" funQueue = [];\n",
|
||
" }\n",
|
||
"})()\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"id: String\">id</span>", children: [], rightAlign: false, values: ["y0sF5xhGreA","tpiyEe_CqB4","wdjpworLSk8","MlDtL2hIj-Q","1UgJI6O8T2U","cytJLvf-eVs","ASFCURj-2hQ","8iY66B5NB2w","1TsaNbWEckk","3URtTIdnXIk","afm0c53xO2o","2M1AFRWPpy8","o0Dvesp0lQU","NsMKvVdEPkw","a7K-kWT_C2A","BOK8T1HK4S8","RFMuw3xpmFE","Po098TRdOn4","DrpvkCRE2P4","OQoukB1VB5k"] }, \n",
|
||
"{ name: "<span title=\"publishedAt: String\">publishedAt</span>", children: [], rightAlign: false, values: ["2023-05-28T13:00:44Z","2020-04-10T16:00:28Z","2023-09-15T22:02:00Z","2023-11-19T19:00:10Z","2025-01-14T04:24:22Z","2020-02-05T15:49:45Z","2024-09-26T03:51:17Z","2025-01-31T13:00:16Z","2025-05-27T03:57:51Z","2025-04-13T13:00:11Z","2024-06-26T17:41:01Z","2024-06-27T12:23:24Z","2024-11-27T00:54:39Z","2023-05-06T14:18:05Z","2023-07-22T05:27:58Z","2024-07-31T14:00:06Z","2023-10-08T13:00:29Z","2023-01-02T09:46:11Z","2023-05-25T10:30:02Z","2024-09-05T13:35:00Z"] }, \n",
|
||
"{ name: "<span title=\"channelId: String\">channelId</span>", children: [], rightAlign: false, values: ["UCPIvT-zcQl2H0vabdXJGcpg","UCzn2gx8zzhF0A4Utk8TEDNQ","UCQQcnrcfQbWvCl2lBvF5hoQ","UCPIvT-zcQl2H0vabdXJGcpg","UCkgRhUW4sHt6bQ32dNiQVVg","UC8hC-augAnujJeprhjI0YkA","UCntAD-sZOPUXRIcw9syL-MQ","UCU0nAvDjqfXo1fTA7xn527w","UCzznUMJ6TwMKb3voVs_CFvg","UCPIvT-zcQl2H0vabdXJGcpg","UCI7EM9d6P4wRWRjbFXcxUlQ","UC0HRkOUeR4l1qwpRf9gLmdA","UCI4miDCCAqvOvZxIl5N3CPQ","UCDbVjtCeUnZliM4wTkhq2Lg","UCsVD3ZguqePDEKaPHUeaIuQ","UChB8rMl6iOQbVk0GZ9VPuZg","UCuPLku1Zrk6HMr2S51yGkpQ","UC6OZkZ7VcRGNMV1uQwnt9Gg","UCO5aEyYJeUXv8rxQEvbUMeA","UC4-a76b3AGFmdsbIBfMa88A"] }, \n",
|
||
"{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"20 Minutes of Adorable Kittens &#55357;&#56845; | BEST Compilation\">20 Minutes of Adorable Kittens &#55357;&#56845; | B<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute and Funny Cat Videos to Keep You Smiling! &#55357;&#56369;\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520 #cat #kittens #pets\">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"30 Minutes of the Worlds CUTEST Kittens! &#55357;&#56891;&#55357;&#56469;\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"&#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals\">Baby Cats - Cute and Funny Cat Videos<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\">Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing vi<span class=\"structural\">...</span></span>","CATS: Crazy Antics and Unstoppable Chaos","<span class=\"formatted\" title=\"This cat is very cute #cats #catscute #world #shorts\">This cat is very cute #cats #catscute<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"These CATS are too FUNNY! &#55358;&#56611; | New Cat Videos 2025\">These CATS are too FUNNY! &#55358;&#56611; | New Ca<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\">Kitten Arrival! #CatLovers #CuteCats <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts\">Cute cats and kittens steals my kinde<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations &#55357;&#56890;&#55357;&#56834;&#55357;&#56834; -EPS1203 #funnycats\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></span>","Kitten meowing to attract cats","Funny Cute Cats &#55357;&#56890;","<span class=\"formatted\" title=\"12 minutes of adorable &#55358;&#56688;cats and kittens videos to keep you smiling &#55357;&#56469;&#55357;&#56837;\">12 minutes of adorable &#55358;&#56688;cats and kit<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Silliest CATS on Earth &#55357;&#56834; Funny Cats Videos 2023\">Silliest CATS on Earth &#55357;&#56834; Funny Cat<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"&#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></span>","Cute baby kitten sound &#10084;&#65039; #shorts","<span class=\"formatted\" title=\"Cute Cat Dancing Video (2)&#55357;&#56890;&#55357;&#56845; #cat #dog #dogdance #catdance\">Cute Cat Dancing Video (2)&#55357;&#56890;&#55357;&#56845; #cat #<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"description: String\">description</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\">Cute, cuddly, and utterly chaotic! Th<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\">Hoomans! Rufus here! Cats are my best<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\">shorts #catvideos #cat #funnycats #ki<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"How cute are these kittens!!! &#9786;&#65039; &#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\">How cute are these kittens!!! &#9786;&#65039; &#10024; <span class=\"structural\">...</span></span>","","<span class=\"formatted\" title=\"Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...\">Watching funny baby cats is the harde<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cat &#38; cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.\">Cat &#38; cute baby laughing video #funny<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...\">Funniest video compilation - CATS: Cr<span class=\"structural\">...</span></span>","","<span class=\"formatted\" title=\"You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats &#10024; Subscribe to The Scoop for our most ...\">You like cats? We got em! No dogs! Ju<span class=\"structural\">...</span></span>","","","<span class=\"formatted\" title=\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...\">cat meowing to attract cats,cats meow<span class=\"structural\">...</span></span>","","<span class=\"formatted\" title=\"12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...\">12 minutes of adorable cats and kitte<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...\">Silliest CATS on Earth - Funny Cats V<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...\">Funny cat videos | cute cats | Try no<span class=\"structural\">...</span></span>","",""] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\">https://i.ytimg.com/vi/y0sF5xhGreA/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\">https://i.ytimg.com/vi/tpiyEe_CqB4/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\">https://i.ytimg.com/vi/wdjpworLSk8/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\">https://i.ytimg.com/vi/MlDtL2hIj-Q/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\">https://i.ytimg.com/vi/1UgJI6O8T2U/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg\">https://i.ytimg.com/vi/cytJLvf-eVs/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg\">https://i.ytimg.com/vi/ASFCURj-2hQ/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg\">https://i.ytimg.com/vi/8iY66B5NB2w/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg\">https://i.ytimg.com/vi/1TsaNbWEckk/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg\">https://i.ytimg.com/vi/3URtTIdnXIk/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/afm0c53xO2o/default.jpg\">https://i.ytimg.com/vi/afm0c53xO2o/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg\">https://i.ytimg.com/vi/2M1AFRWPpy8/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg\">https://i.ytimg.com/vi/o0Dvesp0lQU/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg\">https://i.ytimg.com/vi/NsMKvVdEPkw/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg\">https://i.ytimg.com/vi/a7K-kWT_C2A/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg\">https://i.ytimg.com/vi/BOK8T1HK4S8/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg\">https://i.ytimg.com/vi/RFMuw3xpmFE/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Po098TRdOn4/default.jpg\">https://i.ytimg.com/vi/Po098TRdOn4/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg\">https://i.ytimg.com/vi/DrpvkCRE2P4/de<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg\">https://i.ytimg.com/vi/OQoukB1VB5k/de<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">90</span></span>"] }, \n",
|
||
"{ name: "<span title=\"default: DataRow<*>\">default</span>", children: [5, 6, 7], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/afm0c53xO2o/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Po098TRdOn4/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg\nwidth: 120\nheight: 90\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\">https://i.ytimg.com/vi/y0sF5xhGreA/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\">https://i.ytimg.com/vi/tpiyEe_CqB4/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\">https://i.ytimg.com/vi/wdjpworLSk8/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\">https://i.ytimg.com/vi/MlDtL2hIj-Q/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\">https://i.ytimg.com/vi/1UgJI6O8T2U/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg\">https://i.ytimg.com/vi/cytJLvf-eVs/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg\">https://i.ytimg.com/vi/ASFCURj-2hQ/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg\">https://i.ytimg.com/vi/8iY66B5NB2w/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg\">https://i.ytimg.com/vi/1TsaNbWEckk/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg\">https://i.ytimg.com/vi/3URtTIdnXIk/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg\">https://i.ytimg.com/vi/afm0c53xO2o/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg\">https://i.ytimg.com/vi/2M1AFRWPpy8/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg\">https://i.ytimg.com/vi/o0Dvesp0lQU/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg\">https://i.ytimg.com/vi/NsMKvVdEPkw/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg\">https://i.ytimg.com/vi/a7K-kWT_C2A/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg\">https://i.ytimg.com/vi/BOK8T1HK4S8/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg\">https://i.ytimg.com/vi/RFMuw3xpmFE/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg\">https://i.ytimg.com/vi/Po098TRdOn4/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg\">https://i.ytimg.com/vi/DrpvkCRE2P4/mq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg\">https://i.ytimg.com/vi/OQoukB1VB5k/mq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">320</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">180</span></span>"] }, \n",
|
||
"{ name: "<span title=\"medium: DataRow<*>\">medium</span>", children: [9, 10, 11], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg\nwidth: 320\nheight: 180\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"url: String\">url</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\">https://i.ytimg.com/vi/y0sF5xhGreA/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\">https://i.ytimg.com/vi/tpiyEe_CqB4/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\">https://i.ytimg.com/vi/wdjpworLSk8/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\">https://i.ytimg.com/vi/MlDtL2hIj-Q/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\">https://i.ytimg.com/vi/1UgJI6O8T2U/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg\">https://i.ytimg.com/vi/cytJLvf-eVs/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg\">https://i.ytimg.com/vi/ASFCURj-2hQ/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg\">https://i.ytimg.com/vi/8iY66B5NB2w/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg\">https://i.ytimg.com/vi/1TsaNbWEckk/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg\">https://i.ytimg.com/vi/3URtTIdnXIk/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg\">https://i.ytimg.com/vi/afm0c53xO2o/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg\">https://i.ytimg.com/vi/2M1AFRWPpy8/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg\">https://i.ytimg.com/vi/o0Dvesp0lQU/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg\">https://i.ytimg.com/vi/NsMKvVdEPkw/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg\">https://i.ytimg.com/vi/a7K-kWT_C2A/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg\">https://i.ytimg.com/vi/BOK8T1HK4S8/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg\">https://i.ytimg.com/vi/RFMuw3xpmFE/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg\">https://i.ytimg.com/vi/Po098TRdOn4/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg\">https://i.ytimg.com/vi/DrpvkCRE2P4/hq<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg\">https://i.ytimg.com/vi/OQoukB1VB5k/hq<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"width: Int\">width</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">480</span></span>"] }, \n",
|
||
"{ name: "<span title=\"height: Int\">height</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">360</span></span>"] }, \n",
|
||
"{ name: "<span title=\"high: DataRow<*>\">high</span>", children: [13, 14, 15], rightAlign: false, values: ["<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"url: https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg\nwidth: 480\nheight: 360\"><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https://i.ytimg.com/vi/<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"thumbnails: DataRow<*>\">thumbnails</span>", children: [8, 12, 16], rightAlign: false, values: ["<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/wdjpworLSk8/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/afm0c53xO2o/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/Po098TRdOn4/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"default: { url:https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg, width:120, height:90 }\nmedium: { url:https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg, width:320, height:180 }\nhigh: { url:https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg, width:480, height:360 }\"><span class=\"structural\">{ </span><span class=\"structural\">default: </span><span class=\"structural\">{ </span><span class=\"structural\">url: </span>https<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"channelTitle: String\">channelTitle</span>", children: [], rightAlign: false, values: ["The Pet Collective","Rufus"," Cute Cat&#55357;&#56369;","The Pet Collective","Dancing Cat","Aww Animals","Toon4","CaD Animals","ODINKK 06","The Pet Collective","toyfunnycat","Lovie Jennaira","CuteAnimalShare","Cute Baby Cats 267","ThomasTrucker","Cat Fun 0","Little Love ","SRH Funny cats","Lovely Kittens","Pretty Kittens"] }, \n",
|
||
"{ name: "<span title=\"liveBroadcastContent: String\">liveBroadcastContent</span>", children: [], rightAlign: false, values: ["none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none","none"] }, \n",
|
||
"{ name: "<span title=\"publishTime: String\">publishTime</span>", children: [], rightAlign: false, values: ["2023-05-28T13:00:44Z","2020-04-10T16:00:28Z","2023-09-15T22:02:00Z","2023-11-19T19:00:10Z","2025-01-14T04:24:22Z","2020-02-05T15:49:45Z","2024-09-26T03:51:17Z","2025-01-31T13:00:16Z","2025-05-27T03:57:51Z","2025-04-13T13:00:11Z","2024-06-26T17:41:01Z","2024-06-27T12:23:24Z","2024-11-27T00:54:39Z","2023-05-06T14:18:05Z","2023-07-22T05:27:58Z","2024-07-31T14:00:06Z","2023-10-08T13:00:29Z","2023-01-02T09:46:11Z","2023-05-25T10:30:02Z","2024-09-05T13:35:00Z"] }, \n",
|
||
"{ name: "<span title=\"snippet: DataRow<*>\">snippet</span>", children: [1, 2, 3, 4, 17, 18, 19, 20], rightAlign: false, values: ["<span class=\"formatted\" title=\"publishedAt: 2023-05-28T13:00:44Z\nchannelId: UCPIvT-zcQl2H0vabdXJGcpg\ntitle: 20 Minutes of Adorable Kittens &#55357;&#56845; | BEST Compilation\ndescription: Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: The Pet Collective\nliveBroadcastContent: none\npublishTime: 2023-05-28T13:00:44Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-05-28T13:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2020-04-10T16:00:28Z\nchannelId: UCzn2gx8zzhF0A4Utk8TEDNQ\ntitle: Cute and Funny Cat Videos to Keep You Smiling! &#55357;&#56369;\ndescription: Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Rufus\nliveBroadcastContent: none\npublishTime: 2020-04-10T16:00:28Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2020-04-10T16:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-09-15T22:02:00Z\nchannelId: UCQQcnrcfQbWvCl2lBvF5hoQ\ntitle: Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520 #cat #kittens #pets\ndescription: shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\nthumbnails: { default:{ url:https://i.ytimg.com/vi/wdjpworLSk8/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Cute Cat&#55357;&#56369;\nliveBroadcastContent: none\npublishTime: 2023-09-15T22:02:00Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-09-15T22:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-11-19T19:00:10Z\nchannelId: UCPIvT-zcQl2H0vabdXJGcpg\ntitle: 30 Minutes of the Worlds CUTEST Kittens! &#55357;&#56891;&#55357;&#56469;\ndescription: How cute are these kittens!!! &#9786;&#65039; &#10024; Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: The Pet Collective\nliveBroadcastContent: none\npublishTime: 2023-11-19T19:00:10Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-11-19T19:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-01-14T04:24:22Z\nchannelId: UCkgRhUW4sHt6bQ32dNiQVVg\ntitle: &#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Dancing Cat\nliveBroadcastContent: none\npublishTime: 2025-01-14T04:24:22Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-01-14T04:2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2020-02-05T15:49:45Z\nchannelId: UC8hC-augAnujJeprhjI0YkA\ntitle: Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals\ndescription: Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Aww Animals\nliveBroadcastContent: none\npublishTime: 2020-02-05T15:49:45Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2020-02-05T15:4<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-09-26T03:51:17Z\nchannelId: UCntAD-sZOPUXRIcw9syL-MQ\ntitle: Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\ndescription: Cat &#38; cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.\nthumbnails: { default:{ url:https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Toon4\nliveBroadcastContent: none\npublishTime: 2024-09-26T03:51:17Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-09-26T03:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-01-31T13:00:16Z\nchannelId: UCU0nAvDjqfXo1fTA7xn527w\ntitle: CATS: Crazy Antics and Unstoppable Chaos\ndescription: Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: CaD Animals\nliveBroadcastContent: none\npublishTime: 2025-01-31T13:00:16Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-01-31T13:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-05-27T03:57:51Z\nchannelId: UCzznUMJ6TwMKb3voVs_CFvg\ntitle: This cat is very cute #cats #catscute #world #shorts\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: ODINKK 06\nliveBroadcastContent: none\npublishTime: 2025-05-27T03:57:51Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-05-27T03:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2025-04-13T13:00:11Z\nchannelId: UCPIvT-zcQl2H0vabdXJGcpg\ntitle: These CATS are too FUNNY! &#55358;&#56611; | New Cat Videos 2025\ndescription: You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats &#10024; Subscribe to The Scoop for our most ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: The Pet Collective\nliveBroadcastContent: none\npublishTime: 2025-04-13T13:00:11Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2025-04-13T13:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-06-26T17:41:01Z\nchannelId: UCI7EM9d6P4wRWRjbFXcxUlQ\ntitle: Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/afm0c53xO2o/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: toyfunnycat\nliveBroadcastContent: none\npublishTime: 2024-06-26T17:41:01Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-06-26T17:4<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-06-27T12:23:24Z\nchannelId: UC0HRkOUeR4l1qwpRf9gLmdA\ntitle: Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Lovie Jennaira\nliveBroadcastContent: none\npublishTime: 2024-06-27T12:23:24Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-06-27T12:2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-11-27T00:54:39Z\nchannelId: UCI4miDCCAqvOvZxIl5N3CPQ\ntitle: LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations &#55357;&#56890;&#55357;&#56834;&#55357;&#56834; -EPS1203 #funnycats\ndescription: LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: CuteAnimalShare\nliveBroadcastContent: none\npublishTime: 2024-11-27T00:54:39Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-11-27T00:5<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-05-06T14:18:05Z\nchannelId: UCDbVjtCeUnZliM4wTkhq2Lg\ntitle: Kitten meowing to attract cats\ndescription: cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Cute Baby Cats 267\nliveBroadcastContent: none\npublishTime: 2023-05-06T14:18:05Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-05-06T14:1<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-07-22T05:27:58Z\nchannelId: UCsVD3ZguqePDEKaPHUeaIuQ\ntitle: Funny Cute Cats &#55357;&#56890;\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: ThomasTrucker\nliveBroadcastContent: none\npublishTime: 2023-07-22T05:27:58Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-07-22T05:2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-07-31T14:00:06Z\nchannelId: UChB8rMl6iOQbVk0GZ9VPuZg\ntitle: 12 minutes of adorable &#55358;&#56688;cats and kittens videos to keep you smiling &#55357;&#56469;&#55357;&#56837;\ndescription: 12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Cat Fun 0\nliveBroadcastContent: none\npublishTime: 2024-07-31T14:00:06Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-07-31T14:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-10-08T13:00:29Z\nchannelId: UCuPLku1Zrk6HMr2S51yGkpQ\ntitle: Silliest CATS on Earth &#55357;&#56834; Funny Cats Videos 2023\ndescription: Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Little Love \nliveBroadcastContent: none\npublishTime: 2023-10-08T13:00:29Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-10-08T13:0<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-01-02T09:46:11Z\nchannelId: UC6OZkZ7VcRGNMV1uQwnt9Gg\ntitle: &#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\ndescription: Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...\nthumbnails: { default:{ url:https://i.ytimg.com/vi/Po098TRdOn4/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: SRH Funny cats\nliveBroadcastContent: none\npublishTime: 2023-01-02T09:46:11Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-01-02T09:4<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2023-05-25T10:30:02Z\nchannelId: UCO5aEyYJeUXv8rxQEvbUMeA\ntitle: Cute baby kitten sound &#10084;&#65039; #shorts\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Lovely Kittens\nliveBroadcastContent: none\npublishTime: 2023-05-25T10:30:02Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2023-05-25T10:3<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"publishedAt: 2024-09-05T13:35:00Z\nchannelId: UC4-a76b3AGFmdsbIBfMa88A\ntitle: Cute Cat Dancing Video (2)&#55357;&#56890;&#55357;&#56845; #cat #dog #dogdance #catdance\ndescription: \nthumbnails: { default:{ url:https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg, width:120, height:90 }, medium:{ url:https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg, width:320, height:180 }, high:{ url:https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg, width:480, height:360 } }\nchannelTitle: Pretty Kittens\nliveBroadcastContent: none\npublishTime: 2024-09-05T13:35:00Z\"><span class=\"structural\">{ </span><span class=\"structural\">publishedAt: </span>2024-09-05T13:3<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281120, rootId: 1560281120, totalRows: 232 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"call_DataFrame(function() { DataFrame.renderTable(1560281120) });\n",
|
||
"\n",
|
||
"\n",
|
||
" </script>\n",
|
||
" </html>\"></iframe>\n",
|
||
" <script>\n",
|
||
" function o_resize_iframe_out_7() {\n",
|
||
" let elem = document.getElementById(\"iframe_out_7\");\n",
|
||
" resize_iframe_out_7(elem);\n",
|
||
" setInterval(resize_iframe_out_7, 5000, elem);\n",
|
||
" }\n",
|
||
" function resize_iframe_out_7(el) {\n",
|
||
" let h = el.contentWindow.document.body.scrollHeight;\n",
|
||
" el.height = h === 0 ? 0 : h + 41;\n",
|
||
" }\n",
|
||
" </script> <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type=\"text/css\">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class=\"dataframe\" id=\"static_df_1560281121\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">snippet</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">publishedAt</th><th style=\"text-align:left\">channelId</th><th style=\"text-align:left\">title</th><th class=\"rightBorder\" style=\"text-align:left\">description</th><th class=\"leftBorder\" style=\"text-align:left\">thumbnails</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\">channelTitle</th><th style=\"text-align:left\">liveBroadcastContent</th><th style=\"text-align:left\">publishTime</th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">default</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"leftBorder\" style=\"text-align:left\">medium</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">high</th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">url</th><th class=\"bottomBorder\" style=\"text-align:left\">width</th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\">height</th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">y0sF5xhGreA</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-28T13:00:44Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">20 Minutes of Adorable Kittens �� | B<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cute, cuddly, and utterly chaotic! Th<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/y0sF5xhGreA/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-28T13:00:44Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">tpiyEe_CqB4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-04-10T16:00:28Z</td><td style=\"vertical-align:top\">UCzn2gx8zzhF0A4Utk8TEDNQ</td><td style=\"vertical-align:top\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Hoomans! Rufus here! Cats are my best<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/tpiyEe_CqB4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Rufus</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2020-04-10T16:00:28Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">wdjpworLSk8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-09-15T22:02:00Z</td><td style=\"vertical-align:top\">UCQQcnrcfQbWvCl2lBvF5hoQ</td><td style=\"vertical-align:top\">Cute kittens❤️【30】#shorts #cutecat520<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">shorts #catvideos #cat #funnycats #ki<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/wdjpworLSk8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\"> Cute Cat��</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-09-15T22:02:00Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">MlDtL2hIj-Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-11-19T19:00:10Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">How cute are these kittens!!! ☺️ ✨ <span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/MlDtL2hIj-Q/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-11-19T19:00:10Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1UgJI6O8T2U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-14T04:24:22Z</td><td style=\"vertical-align:top\">UCkgRhUW4sHt6bQ32dNiQVVg</td><td style=\"vertical-align:top\">�� Funny cat videos | cute cats | Try<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1UgJI6O8T2U/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Dancing Cat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-14T04:24:22Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">cytJLvf-eVs</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2020-02-05T15:49:45Z</td><td style=\"vertical-align:top\">UC8hC-augAnujJeprhjI0YkA</td><td style=\"vertical-align:top\">Baby Cats - Cute and Funny Cat Videos<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Watching funny baby cats is the harde<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/cytJLvf-eVs/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Aww Animals</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2020-02-05T15:49:45Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">ASFCURj-2hQ</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-26T03:51:17Z</td><td style=\"vertical-align:top\">UCntAD-sZOPUXRIcw9syL-MQ</td><td style=\"vertical-align:top\">Cat �� &amp; cute baby �� laughing vi<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Cat & cute baby laughing video #funny<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/ASFCURj-2hQ/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Toon4</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-26T03:51:17Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">8iY66B5NB2w</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-01-31T13:00:16Z</td><td style=\"vertical-align:top\">UCU0nAvDjqfXo1fTA7xn527w</td><td style=\"vertical-align:top\">CATS: Crazy Antics and Unstoppable Chaos</td><td class=\"rightBorder\" style=\"vertical-align:top\">Funniest video compilation - CATS: Cr<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/8iY66B5NB2w/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">CaD Animals</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-01-31T13:00:16Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">1TsaNbWEckk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-05-27T03:57:51Z</td><td style=\"vertical-align:top\">UCzznUMJ6TwMKb3voVs_CFvg</td><td style=\"vertical-align:top\">This cat is very cute #cats #catscute<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/1TsaNbWEckk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">ODINKK 06</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-05-27T03:57:51Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">3URtTIdnXIk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2025-04-13T13:00:11Z</td><td style=\"vertical-align:top\">UCPIvT-zcQl2H0vabdXJGcpg</td><td style=\"vertical-align:top\">These CATS are too FUNNY! �� | New Ca<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">You like cats? We got em! No dogs! Ju<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/3URtTIdnXIk/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">The Pet Collective</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2025-04-13T13:00:11Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">afm0c53xO2o</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-06-26T17:41:01Z</td><td style=\"vertical-align:top\">UCI7EM9d6P4wRWRjbFXcxUlQ</td><td style=\"vertical-align:top\">Kitten Arrival! #CatLovers #CuteCats <span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/afm0c53xO2o/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">toyfunnycat</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-06-26T17:41:01Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">2M1AFRWPpy8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-06-27T12:23:24Z</td><td style=\"vertical-align:top\">UC0HRkOUeR4l1qwpRf9gLmdA</td><td style=\"vertical-align:top\">Cute cats and kittens steals my kinde<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/2M1AFRWPpy8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Lovie Jennaira</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-06-27T12:23:24Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">o0Dvesp0lQU</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-11-27T00:54:39Z</td><td style=\"vertical-align:top\">UCI4miDCCAqvOvZxIl5N3CPQ</td><td style=\"vertical-align:top\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">LOL Latest Funny Cats Clips Cute Cats<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/o0Dvesp0lQU/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">CuteAnimalShare</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-11-27T00:54:39Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">NsMKvVdEPkw</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-06T14:18:05Z</td><td style=\"vertical-align:top\">UCDbVjtCeUnZliM4wTkhq2Lg</td><td style=\"vertical-align:top\">Kitten meowing to attract cats</td><td class=\"rightBorder\" style=\"vertical-align:top\">cat meowing to attract cats,cats meow<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/NsMKvVdEPkw/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cute Baby Cats 267</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-06T14:18:05Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">a7K-kWT_C2A</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-07-22T05:27:58Z</td><td style=\"vertical-align:top\">UCsVD3ZguqePDEKaPHUeaIuQ</td><td style=\"vertical-align:top\">Funny Cute Cats ��</td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/a7K-kWT_C2A/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">ThomasTrucker</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-07-22T05:27:58Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">BOK8T1HK4S8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-07-31T14:00:06Z</td><td style=\"vertical-align:top\">UChB8rMl6iOQbVk0GZ9VPuZg</td><td style=\"vertical-align:top\">12 minutes of adorable ��cats and kit<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">12 minutes of adorable cats and kitte<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/BOK8T1HK4S8/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Cat Fun 0</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-07-31T14:00:06Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">RFMuw3xpmFE</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-10-08T13:00:29Z</td><td style=\"vertical-align:top\">UCuPLku1Zrk6HMr2S51yGkpQ</td><td style=\"vertical-align:top\">Silliest CATS on Earth �� Funny Cat<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Silliest CATS on Earth - Funny Cats V<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/RFMuw3xpmFE/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Little Love </td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-10-08T13:00:29Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">Po098TRdOn4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-01-02T09:46:11Z</td><td style=\"vertical-align:top\">UC6OZkZ7VcRGNMV1uQwnt9Gg</td><td style=\"vertical-align:top\">�� Funny cat videos | cute cats | Try<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\">Funny cat videos | cute cats | Try no<span class=\"structural\">...</span></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/Po098TRdOn4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">SRH Funny cats</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-01-02T09:46:11Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">DrpvkCRE2P4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2023-05-25T10:30:02Z</td><td style=\"vertical-align:top\">UCO5aEyYJeUXv8rxQEvbUMeA</td><td style=\"vertical-align:top\">Cute baby kitten sound ❤️ #shorts</td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/DrpvkCRE2P4/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Lovely Kittens</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2023-05-25T10:30:02Z</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">OQoukB1VB5k</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">2024-09-05T13:35:00Z</td><td style=\"vertical-align:top\">UC4-a76b3AGFmdsbIBfMa88A</td><td style=\"vertical-align:top\">Cute Cat Dancing Video (2)���� #cat #<span class=\"structural\">...</span></td><td class=\"rightBorder\" style=\"vertical-align:top\"></td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/de<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">120</td><td class=\"rightBorder\" style=\"vertical-align:top\">90</td><td class=\"leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/mq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">320</td><td class=\"rightBorder\" style=\"vertical-align:top\">180</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">https://i.ytimg.com/vi/OQoukB1VB5k/hq<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">480</td><td class=\"rightBorder\" style=\"vertical-align:top\">360</td><td style=\"vertical-align:top\">Pretty Kittens</td><td style=\"vertical-align:top\">none</td><td style=\"vertical-align:top\">2024-09-05T13:35:00Z</td></tr></tbody></table>\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" document.getElementById(\"static_df_1560281121\").style.display = \"none\";\n",
|
||
" </script>\n",
|
||
" </html>"
|
||
],
|
||
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"id\",\"snippet\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"nrow\":232,\"ncol\":2},\"kotlin_dataframe\":[{\"id\":\"y0sF5xhGreA\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-28T13:00:44Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"20 Minutes of Adorable Kittens 😍 | BEST Compilation\",\"description\":\"Cute, cuddly, and utterly chaotic! These adorable kittens are jumping in the dog-pile in this collection of cute and hilarious kitty ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/y0sF5xhGreA/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-28T13:00:44Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"tpiyEe_CqB4\",\"snippet\":{\"data\":{\"publishedAt\":\"2020-04-10T16:00:28Z\",\"channelId\":\"UCzn2gx8zzhF0A4Utk8TEDNQ\",\"title\":\"Cute and Funny Cat Videos to Keep You Smiling! 🐱\",\"description\":\"Hoomans! Rufus here! Cats are my best frens! I made this brand new compilation for you of my favorite Cat, Kittens and even ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/tpiyEe_CqB4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Rufus\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-04-10T16:00:28Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"wdjpworLSk8\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-09-15T22:02:00Z\",\"channelId\":\"UCQQcnrcfQbWvCl2lBvF5hoQ\",\"title\":\"Cute kittens❤️【30】#shorts #cutecat520 #cat #kittens #pets\",\"description\":\"shorts #catvideos #cat #funnycats #kitten #cutecat #babycat #catshorts #catlover #kitty Funny and cute cats.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/wdjpworLSk8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\" Cute Cat🐱\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-09-15T22:02:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"MlDtL2hIj-Q\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-11-19T19:00:10Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"30 Minutes of the Worlds CUTEST Kittens! 😻💕\",\"description\":\"How cute are these kittens!!! ☺️ ✨ Subscribe to The Scoop for our most entertaining pet videos, helpful pet parenting tips, ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/MlDtL2hIj-Q/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-11-19T19:00:10Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"1UgJI6O8T2U\",\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-14T04:24:22Z\",\"channelId\":\"UCkgRhUW4sHt6bQ32dNiQVVg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1UgJI6O8T2U/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Dancing Cat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-14T04:24:22Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"cytJLvf-eVs\",\"snippet\":{\"data\":{\"publishedAt\":\"2020-02-05T15:49:45Z\",\"channelId\":\"UC8hC-augAnujJeprhjI0YkA\",\"title\":\"Baby Cats - Cute and Funny Cat Videos Compilation #21 | Aww Animals\",\"description\":\"Watching funny baby cats is the hardest try not to laugh challenge. Baby cats are amazing creature because they are the cutest ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/cytJLvf-eVs/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Aww Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2020-02-05T15:49:45Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"ASFCURj-2hQ\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-26T03:51:17Z\",\"channelId\":\"UCntAD-sZOPUXRIcw9syL-MQ\",\"title\":\"Cat 🐈 & cute baby 🐥 laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\",\"description\":\"Cat & cute baby laughing video #funnyvideo #cutebaby #comedy #laugh #shorts.\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/ASFCURj-2hQ/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Toon4\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-26T03:51:17Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"8iY66B5NB2w\",\"snippet\":{\"data\":{\"publishedAt\":\"2025-01-31T13:00:16Z\",\"channelId\":\"UCU0nAvDjqfXo1fTA7xn527w\",\"title\":\"CATS: Crazy Antics and Unstoppable Chaos\",\"description\":\"Funniest video compilation - CATS: Crazy Antics and Unstoppable Chaos funny cat videos, cat videos, funny cats, funny cat, cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/8iY66B5NB2w/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CaD Animals\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-01-31T13:00:16Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"1TsaNbWEckk\",\"snippet\":{\"data\":{\"publishedAt\":\"2025-05-27T03:57:51Z\",\"channelId\":\"UCzznUMJ6TwMKb3voVs_CFvg\",\"title\":\"This cat is very cute #cats #catscute #world #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/1TsaNbWEckk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ODINKK 06\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-05-27T03:57:51Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"3URtTIdnXIk\",\"snippet\":{\"data\":{\"publishedAt\":\"2025-04-13T13:00:11Z\",\"channelId\":\"UCPIvT-zcQl2H0vabdXJGcpg\",\"title\":\"These CATS are too FUNNY! 🤣 | New Cat Videos 2025\",\"description\":\"You like cats? We got em! No dogs! Just cats! Seriously, all cats! #Funny #fails #Cats ✨ Subscribe to The Scoop for our most ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/3URtTIdnXIk/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"The Pet Collective\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2025-04-13T13:00:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"afm0c53xO2o\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-26T17:41:01Z\",\"channelId\":\"UCI7EM9d6P4wRWRjbFXcxUlQ\",\"title\":\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/afm0c53xO2o/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"toyfunnycat\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-26T17:41:01Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"2M1AFRWPpy8\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-06-27T12:23:24Z\",\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"title\":\"Cute cats and kittens steals my kinderjoy !!!! ##catvideos #cutecats #catlover #trendingshorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/2M1AFRWPpy8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovie Jennaira\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-06-27T12:23:24Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"o0Dvesp0lQU\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-11-27T00:54:39Z\",\"channelId\":\"UCI4miDCCAqvOvZxIl5N3CPQ\",\"title\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations 😺😂😂 -EPS1203 #funnycats\",\"description\":\"LOL Latest Funny Cats Clips Cute Cats Shorts Videos Compilations -EPS1203 @CuteAnimalShare #cats #cutecats ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/o0Dvesp0lQU/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"CuteAnimalShare\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-11-27T00:54:39Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"NsMKvVdEPkw\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-06T14:18:05Z\",\"channelId\":\"UCDbVjtCeUnZliM4wTkhq2Lg\",\"title\":\"Kitten meowing to attract cats\",\"description\":\"cat meowing to attract cats,cats meowing,cats meowing to attract cats,cat sounds to attract cats,sounds to attract cats,kittens ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/NsMKvVdEPkw/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cute Baby Cats 267\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-06T14:18:05Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"a7K-kWT_C2A\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-07-22T05:27:58Z\",\"channelId\":\"UCsVD3ZguqePDEKaPHUeaIuQ\",\"title\":\"Funny Cute Cats 😺\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/a7K-kWT_C2A/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"ThomasTrucker\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-07-22T05:27:58Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"BOK8T1HK4S8\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-07-31T14:00:06Z\",\"channelId\":\"UChB8rMl6iOQbVk0GZ9VPuZg\",\"title\":\"12 minutes of adorable 🥰cats and kittens videos to keep you smiling 💕😅\",\"description\":\"12 minutes of adorable cats and kittens videos to keep you smiling funny animal videos, funny animal video, best animal ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/BOK8T1HK4S8/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Cat Fun 0\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-07-31T14:00:06Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"RFMuw3xpmFE\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-10-08T13:00:29Z\",\"channelId\":\"UCuPLku1Zrk6HMr2S51yGkpQ\",\"title\":\"Silliest CATS on Earth 😂 Funny Cats Videos 2023\",\"description\":\"Silliest CATS on Earth - Funny Cats Videos 2023 In this video, you will witness adorable and funny moments when your cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/RFMuw3xpmFE/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Little Love \",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-10-08T13:00:29Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"Po098TRdOn4\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-01-02T09:46:11Z\",\"channelId\":\"UC6OZkZ7VcRGNMV1uQwnt9Gg\",\"title\":\"🐱 Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts 🐈\",\"description\":\"Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts #funnycats #funnycatvideos #funnyshorts #cat ...\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/Po098TRdOn4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"SRH Funny cats\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-01-02T09:46:11Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"DrpvkCRE2P4\",\"snippet\":{\"data\":{\"publishedAt\":\"2023-05-25T10:30:02Z\",\"channelId\":\"UCO5aEyYJeUXv8rxQEvbUMeA\",\"title\":\"Cute baby kitten sound ❤️ #shorts\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/DrpvkCRE2P4/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Lovely Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2023-05-25T10:30:02Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"id\":\"OQoukB1VB5k\",\"snippet\":{\"data\":{\"publishedAt\":\"2024-09-05T13:35:00Z\",\"channelId\":\"UC4-a76b3AGFmdsbIBfMa88A\",\"title\":\"Cute Cat Dancing Video (2)😺😍 #cat #dog #dogdance #catdance\",\"description\":\"\",\"thumbnails\":{\"data\":{\"default\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/default.jpg\",\"width\":120,\"height\":90},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"medium\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/mqdefault.jpg\",\"width\":320,\"height\":180},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}},\"high\":{\"data\":{\"url\":\"https://i.ytimg.com/vi/OQoukB1VB5k/hqdefault.jpg\",\"width\":480,\"height\":360},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"url\",\"width\",\"height\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"default\",\"medium\",\"high\"],\"types\":[{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ColumnGroup\"}]}},\"channelTitle\":\"Pretty Kittens\",\"liveBroadcastContent\":\"none\",\"publishTime\":\"2024-09-05T13:35:00Z\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"publishedAt\",\"channelId\",\"title\",\"description\",\"thumbnails\",\"channelTitle\",\"liveBroadcastContent\",\"publishTime\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}]}"
|
||
},
|
||
"execution_count": 9,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"execution_count": 9
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:09:41.068829Z",
|
||
"start_time": "2025-05-28T11:09:39.782168Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": "val parsed = videos.parse()",
|
||
"outputs": [],
|
||
"execution_count": 10
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:09:49.784057Z",
|
||
"start_time": "2025-05-28T11:09:48.824956Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"val loaded = parsed.convert { colsAtAnyDepth().colsOf<URL>() }.with { IMG(it, maxHeight = 150) }\n",
|
||
" .add(\"video\") { IFRAME(\"https://www.youtube.com/embed/$id\") }"
|
||
],
|
||
"outputs": [],
|
||
"execution_count": 11
|
||
},
|
||
{
|
||
"metadata": {},
|
||
"cell_type": "markdown",
|
||
"source": [
|
||
"NOTE: For this example, the DataFrame needs to be rendered as HTML. This means that when running in Kotlin Notebook, \"Render DataFrame tables natively\" needs to be turned off or\n",
|
||
"the DataFrame needs to be explicitly converted to HTML when displayed."
|
||
]
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:11:04.020296Z",
|
||
"start_time": "2025-05-28T11:11:03.732110Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"val clean = loaded.move { snippet.channelId and snippet.channelTitle }.under(\"channel\")\n",
|
||
" .move { snippet.title and snippet.publishedAt }.toTop()\n",
|
||
" .remove { snippet }\n",
|
||
"\n",
|
||
"clean.head().toHtml()"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/html": [
|
||
" <iframe onload=\"o_resize_iframe_out_12()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_12\" frameBorder=\"0\" srcdoc=\" <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type="text/css">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
":root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
":root {\n",
|
||
" --scroll-bg: #f5f5f5;\n",
|
||
" --scroll-fg: #b3b3b3;\n",
|
||
"}\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"]{\n",
|
||
" --scroll-bg: #3c3c3c;\n",
|
||
" --scroll-fg: #97e1fb;\n",
|
||
"}\n",
|
||
"body {\n",
|
||
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar {\n",
|
||
" width: 10px; /* Mostly for vertical scrollbars */\n",
|
||
" height: 10px; /* Mostly for horizontal scrollbars */\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-thumb {\n",
|
||
" background-color: var(--scroll-fg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-track {\n",
|
||
" background-color: var(--scroll-bg);\n",
|
||
"}\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class="dataframe" id="df_1560281130"></table>\n",
|
||
"\n",
|
||
"<table class="dataframe" id="static_df_1560281131"><thead><tr><th style="text-align:left">id</th><th style="text-align:left">title</th><th class="rightBorder" style="text-align:left">publishedAt</th><th class="leftBorder" style="text-align:left">channel</th><th class="rightBorder" style="text-align:left"></th><th style="text-align:left">video</th></tr><tr><th class="bottomBorder" style="text-align:left"></th><th class="bottomBorder" style="text-align:left"></th><th class="bottomBorder rightBorder" style="text-align:left"></th><th class="bottomBorder leftBorder" style="text-align:left">channelId</th><th class="bottomBorder rightBorder" style="text-align:left">channelTitle</th><th class="bottomBorder" style="text-align:left"></th></tr></thead><tbody><tr><td style="vertical-align:top">y0sF5xhGreA</td><td style="vertical-align:top">20 Minutes of Adorable Kittens &#55357;&#56845; | B<span class="structural">...</span></td><td class="rightBorder" style="vertical-align:top">2023-05-28T13:00:44Z</td><td class="leftBorder" style="vertical-align:top">UCPIvT-zcQl2H0vabdXJGcpg</td><td class="rightBorder" style="vertical-align:top">The Pet Collective</td><td style="vertical-align:top">&#60;iframe src=&#34;https://www.youtube.com/<span class="structural">...</span></td></tr><tr><td style="vertical-align:top">tpiyEe_CqB4</td><td style="vertical-align:top">Cute and Funny Cat Videos to Keep You<span class="structural">...</span></td><td class="rightBorder" style="vertical-align:top">2020-04-10T16:00:28Z</td><td class="leftBorder" style="vertical-align:top">UCzn2gx8zzhF0A4Utk8TEDNQ</td><td class="rightBorder" style="vertical-align:top">Rufus</td><td style="vertical-align:top">&#60;iframe src=&#34;https://www.youtube.com/<span class="structural">...</span></td></tr><tr><td style="vertical-align:top">wdjpworLSk8</td><td style="vertical-align:top">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class="structural">...</span></td><td class="rightBorder" style="vertical-align:top">2023-09-15T22:02:00Z</td><td class="leftBorder" style="vertical-align:top">UCQQcnrcfQbWvCl2lBvF5hoQ</td><td class="rightBorder" style="vertical-align:top"> Cute Cat&#55357;&#56369;</td><td style="vertical-align:top">&#60;iframe src=&#34;https://www.youtube.com/<span class="structural">...</span></td></tr><tr><td style="vertical-align:top">MlDtL2hIj-Q</td><td style="vertical-align:top">30 Minutes of the Worlds CUTEST Kitte<span class="structural">...</span></td><td class="rightBorder" style="vertical-align:top">2023-11-19T19:00:10Z</td><td class="leftBorder" style="vertical-align:top">UCPIvT-zcQl2H0vabdXJGcpg</td><td class="rightBorder" style="vertical-align:top">The Pet Collective</td><td style="vertical-align:top">&#60;iframe src=&#34;https://www.youtube.com/<span class="structural">...</span></td></tr><tr><td style="vertical-align:top">1UgJI6O8T2U</td><td style="vertical-align:top">&#55357;&#56369; Funny cat videos | cute cats | Try<span class="structural">...</span></td><td class="rightBorder" style="vertical-align:top">2025-01-14T04:24:22Z</td><td class="leftBorder" style="vertical-align:top">UCkgRhUW4sHt6bQ32dNiQVVg</td><td class="rightBorder" style="vertical-align:top">Dancing Cat</td><td style="vertical-align:top">&#60;iframe src=&#34;https://www.youtube.com/<span class="structural">...</span></td></tr></tbody></table>\n",
|
||
"<p class="dataframe_description">DataFrame [5 x 5]</p>\n",
|
||
"\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" (function () {\n",
|
||
" window.DataFrame = window.DataFrame || new (function () {\n",
|
||
" this.addTable = function (df) {\n",
|
||
" let cols = df.cols;\n",
|
||
" for (let i = 0; i < cols.length; i++) {\n",
|
||
" for (let c of cols[i].children) {\n",
|
||
" cols[c].parent = i;\n",
|
||
" }\n",
|
||
" }\n",
|
||
" df.nrow = 0\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" if (df.cols[i].values.length > df.nrow) df.nrow = df.cols[i].values.length\n",
|
||
" }\n",
|
||
" if (df.id === df.rootId) {\n",
|
||
" df.expandedFrames = new Set()\n",
|
||
" df.childFrames = {}\n",
|
||
" const table = this.getTableElement(df.id)\n",
|
||
" table.df = df\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" let col = df.cols[i]\n",
|
||
" if (col.parent === undefined && col.children.length > 0) col.expanded = true\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" const rootDf = this.getTableData(df.rootId)\n",
|
||
" rootDf.childFrames[df.id] = df\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderData = function (df) {\n",
|
||
" let result = []\n",
|
||
" let pos = 0\n",
|
||
" for (let col = 0; col < df.cols.length; col++) {\n",
|
||
" if (df.cols[col].parent === undefined)\n",
|
||
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
|
||
" }\n",
|
||
" for (let i = 0; i < result.length; i++) {\n",
|
||
" let row = result[i]\n",
|
||
" for (let j = 0; j < row.length; j++) {\n",
|
||
" let cell = row[j]\n",
|
||
" if (j === 0)\n",
|
||
" cell.leftBd = false\n",
|
||
" if (j < row.length - 1) {\n",
|
||
" let nextData = row[j + 1]\n",
|
||
" if (nextData.leftBd) cell.rightBd = true\n",
|
||
" else if (cell.rightBd) nextData.leftBd = true\n",
|
||
" } else cell.rightBd = false\n",
|
||
" }\n",
|
||
" }\n",
|
||
" return result\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
|
||
" if (result.length === depth) {\n",
|
||
" const array = [];\n",
|
||
" if (pos > 0) {\n",
|
||
" let j = 0\n",
|
||
" for (let i = 0; j < pos; i++) {\n",
|
||
" let c = result[depth - 1][i]\n",
|
||
" j += c.span\n",
|
||
" let copy = Object.assign({empty: true}, c)\n",
|
||
" array.push(copy)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" result.push(array)\n",
|
||
" }\n",
|
||
" const col = cols[colId];\n",
|
||
" let size = 0;\n",
|
||
" if (col.expanded) {\n",
|
||
" let childPos = pos\n",
|
||
" for (let i = 0; i < col.children.length; i++) {\n",
|
||
" let child = col.children[i]\n",
|
||
" let childLeft = i === 0 && (col.children.length > 1 || leftBorder)\n",
|
||
" let childRight = i === col.children.length - 1 && (col.children.length > 1 || rightBorder)\n",
|
||
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
|
||
" childPos += childSize\n",
|
||
" size += childSize\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" for (let i = depth + 1; i < result.length; i++)\n",
|
||
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
|
||
" size = 1\n",
|
||
" }\n",
|
||
" let left = leftBorder\n",
|
||
" let right = rightBorder\n",
|
||
" if (size > 1) {\n",
|
||
" left = true\n",
|
||
" right = true\n",
|
||
" }\n",
|
||
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
|
||
" return size\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableElement = function (id) {\n",
|
||
" return document.getElementById("df_" + id)\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableData = function (id) {\n",
|
||
" return this.getTableElement(id).df\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.createExpander = function (isExpanded) {\n",
|
||
" const svgNs = "http://www.w3.org/2000/svg"\n",
|
||
" let svg = document.createElementNS(svgNs, "svg")\n",
|
||
" svg.classList.add("expanderSvg")\n",
|
||
" let path = document.createElementNS(svgNs, "path")\n",
|
||
" if (isExpanded) {\n",
|
||
" svg.setAttribute("viewBox", "0 -2 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z")\n",
|
||
" } else {\n",
|
||
" svg.setAttribute("viewBox", "-2 0 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z")\n",
|
||
" }\n",
|
||
" path.setAttribute("fill", "currentColor")\n",
|
||
" svg.appendChild(path)\n",
|
||
" return svg\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.renderTable = function (id) {\n",
|
||
"\n",
|
||
" let table = this.getTableElement(id)\n",
|
||
"\n",
|
||
" if (table === null) return\n",
|
||
"\n",
|
||
" table.innerHTML = ""\n",
|
||
"\n",
|
||
" let df = table.df\n",
|
||
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
|
||
"\n",
|
||
" // header\n",
|
||
" let header = document.createElement("thead")\n",
|
||
" table.appendChild(header)\n",
|
||
"\n",
|
||
" let renderData = this.computeRenderData(df)\n",
|
||
" for (let j = 0; j < renderData.length; j++) {\n",
|
||
" let rowData = renderData[j]\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" let isLastRow = j === renderData.length - 1\n",
|
||
" header.appendChild(tr);\n",
|
||
" for (let i = 0; i < rowData.length; i++) {\n",
|
||
" let cell = rowData[i]\n",
|
||
" let th = document.createElement("th");\n",
|
||
" th.setAttribute("colspan", cell.span)\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId];\n",
|
||
" if (!cell.empty) {\n",
|
||
" if (col.children.length === 0) {\n",
|
||
" th.innerHTML = col.name\n",
|
||
" } else {\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" col.expanded = !col.expanded\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(col.expanded))\n",
|
||
" link.innerHTML += col.name\n",
|
||
" th.appendChild(link)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (isLastRow)\n",
|
||
" classes += " bottomBorder"\n",
|
||
" if (classes.length > 0)\n",
|
||
" th.setAttribute("class", classes)\n",
|
||
" tr.appendChild(th)\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" // body\n",
|
||
" let body = document.createElement("tbody")\n",
|
||
" table.appendChild(body)\n",
|
||
"\n",
|
||
" let columns = renderData.pop()\n",
|
||
" for (let row = 0; row < df.nrow; row++) {\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" body.appendChild(tr)\n",
|
||
" for (let i = 0; i < columns.length; i++) {\n",
|
||
" let cell = columns[i]\n",
|
||
" let td = document.createElement("td");\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId]\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (classes.length > 0)\n",
|
||
" td.setAttribute("class", classes)\n",
|
||
" tr.appendChild(td)\n",
|
||
" let value = col.values[row]\n",
|
||
" if (value.frameId !== undefined) {\n",
|
||
" let frameId = value.frameId\n",
|
||
" let expanded = rootDf.expandedFrames.has(frameId)\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" if (rootDf.expandedFrames.has(frameId))\n",
|
||
" rootDf.expandedFrames.delete(frameId)\n",
|
||
" else rootDf.expandedFrames.add(frameId)\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(expanded))\n",
|
||
" link.innerHTML += value.value\n",
|
||
" if (expanded) {\n",
|
||
" td.appendChild(link)\n",
|
||
" td.appendChild(document.createElement("p"))\n",
|
||
" const childTable = document.createElement("table")\n",
|
||
" childTable.className = "dataframe"\n",
|
||
" childTable.id = "df_" + frameId\n",
|
||
" let childDf = rootDf.childFrames[frameId]\n",
|
||
" childTable.df = childDf\n",
|
||
" td.appendChild(childTable)\n",
|
||
" this.renderTable(frameId)\n",
|
||
" if (childDf.nrow !== childDf.totalRows) {\n",
|
||
" const footer = document.createElement("p")\n",
|
||
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
|
||
" td.appendChild(footer)\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" td.appendChild(link)\n",
|
||
" }\n",
|
||
" } else if (value.style !== undefined) {\n",
|
||
" td.innerHTML = value.value\n",
|
||
" td.setAttribute("style", value.style)\n",
|
||
" } else td.innerHTML = value\n",
|
||
" this.nodeScriptReplace(td)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptReplace = function (node) {\n",
|
||
" if (this.nodeScriptIs(node) === true) {\n",
|
||
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
|
||
" } else {\n",
|
||
" let i = -1, children = node.childNodes;\n",
|
||
" while (++i < children.length) {\n",
|
||
" this.nodeScriptReplace(children[i]);\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" return node;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptClone = function (node) {\n",
|
||
" let script = document.createElement("script");\n",
|
||
" script.text = node.innerHTML;\n",
|
||
"\n",
|
||
" let i = -1, attrs = node.attributes, attr;\n",
|
||
" while (++i < attrs.length) {\n",
|
||
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
|
||
" }\n",
|
||
" return script;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptIs = function (node) {\n",
|
||
" return node.tagName === 'SCRIPT';\n",
|
||
" }\n",
|
||
" })()\n",
|
||
"\n",
|
||
" window.call_DataFrame = function (f) {\n",
|
||
" return f();\n",
|
||
" };\n",
|
||
"\n",
|
||
" let funQueue = window["kotlinQueues"] && window["kotlinQueues"]["DataFrame"];\n",
|
||
" if (funQueue) {\n",
|
||
" funQueue.forEach(function (f) {\n",
|
||
" f();\n",
|
||
" });\n",
|
||
" funQueue = [];\n",
|
||
" }\n",
|
||
"})()\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"id: String\">id</span>", children: [], rightAlign: false, values: ["y0sF5xhGreA","tpiyEe_CqB4","wdjpworLSk8","MlDtL2hIj-Q","1UgJI6O8T2U"] }, \n",
|
||
"{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"20 Minutes of Adorable Kittens &#55357;&#56845; | BEST Compilation\">20 Minutes of Adorable Kittens &#55357;&#56845; | B<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute and Funny Cat Videos to Keep You Smiling! &#55357;&#56369;\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520 #cat #kittens #pets\">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"30 Minutes of the Worlds CUTEST Kittens! &#55357;&#56891;&#55357;&#56469;\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"&#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"publishedAt: kotlinx.datetime.Instant\">publishedAt</span>", children: [], rightAlign: false, values: ["2023-05-28T13:00:44Z","2020-04-10T16:00:28Z","2023-09-15T22:02:00Z","2023-11-19T19:00:10Z","2025-01-14T04:24:22Z"] }, \n",
|
||
"{ name: "<span title=\"channelId: String\">channelId</span>", children: [], rightAlign: false, values: ["UCPIvT-zcQl2H0vabdXJGcpg","UCzn2gx8zzhF0A4Utk8TEDNQ","UCQQcnrcfQbWvCl2lBvF5hoQ","UCPIvT-zcQl2H0vabdXJGcpg","UCkgRhUW4sHt6bQ32dNiQVVg"] }, \n",
|
||
"{ name: "<span title=\"channelTitle: String\">channelTitle</span>", children: [], rightAlign: false, values: ["The Pet Collective","Rufus"," Cute Cat&#55357;&#56369;","The Pet Collective","Dancing Cat"] }, \n",
|
||
"{ name: "<span title=\"channel: DataRow<*>\">channel</span>", children: [3, 4], rightAlign: false, values: ["<span class=\"formatted\" title=\"channelId: UCPIvT-zcQl2H0vabdXJGcpg\nchannelTitle: The Pet Collective\"><span class=\"structural\">{ </span><span class=\"structural\">channelId: </span>UCPIvT-zcQl2H0va<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">c...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"channelId: UCzn2gx8zzhF0A4Utk8TEDNQ\nchannelTitle: Rufus\"><span class=\"structural\">{ </span><span class=\"structural\">channelId: </span>UCzn2gx8zzhF0A4U<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">c...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"channelId: UCQQcnrcfQbWvCl2lBvF5hoQ\nchannelTitle: Cute Cat&#55357;&#56369;\"><span class=\"structural\">{ </span><span class=\"structural\">channelId: </span>UCQQcnrcfQbWvCl2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">c...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"channelId: UCPIvT-zcQl2H0vabdXJGcpg\nchannelTitle: The Pet Collective\"><span class=\"structural\">{ </span><span class=\"structural\">channelId: </span>UCPIvT-zcQl2H0va<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">c...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"channelId: UCkgRhUW4sHt6bQ32dNiQVVg\nchannelTitle: Dancing Cat\"><span class=\"structural\">{ </span><span class=\"structural\">channelId: </span>UCkgRhUW4sHt6bQ3<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">c...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"video: dataTypes.IFRAME\">video</span>", children: [], rightAlign: false, values: ["<iframe src=\"https://www.youtube.com/embed/y0sF5xhGreA\" frameborder=0/>","<iframe src=\"https://www.youtube.com/embed/tpiyEe_CqB4\" frameborder=0/>","<iframe src=\"https://www.youtube.com/embed/wdjpworLSk8\" frameborder=0/>","<iframe src=\"https://www.youtube.com/embed/MlDtL2hIj-Q\" frameborder=0/>","<iframe src=\"https://www.youtube.com/embed/1UgJI6O8T2U\" frameborder=0/>"] }, \n",
|
||
"], id: 1560281130, rootId: 1560281130, totalRows: 5 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"call_DataFrame(function() { DataFrame.renderTable(1560281130) });\n",
|
||
"\n",
|
||
"document.getElementById("static_df_1560281131").style.display = "none";\n",
|
||
"\n",
|
||
" </script>\n",
|
||
" </html>\"></iframe>\n",
|
||
" <script>\n",
|
||
" function o_resize_iframe_out_12() {\n",
|
||
" let elem = document.getElementById(\"iframe_out_12\");\n",
|
||
" resize_iframe_out_12(elem);\n",
|
||
" setInterval(resize_iframe_out_12, 5000, elem);\n",
|
||
" }\n",
|
||
" function resize_iframe_out_12(el) {\n",
|
||
" let h = el.contentWindow.document.body.scrollHeight;\n",
|
||
" el.height = h === 0 ? 0 : h + 41;\n",
|
||
" }\n",
|
||
" </script>"
|
||
]
|
||
},
|
||
"execution_count": 14,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"execution_count": 14
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:11:21.318364Z",
|
||
"start_time": "2025-05-28T11:11:20.140795Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"val statPages = clean.id.chunked(50).map {\n",
|
||
" val ids = it.joinToString(\"%2C\")\n",
|
||
" load(\"videos?part=statistics&id=$ids\")\n",
|
||
"}\n",
|
||
"statPages"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/html": [
|
||
" <iframe onload=\"o_resize_iframe_out_13()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_13\" frameBorder=\"0\" srcdoc=\" <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type="text/css">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
":root {\n",
|
||
" --scroll-bg: #f5f5f5;\n",
|
||
" --scroll-fg: #b3b3b3;\n",
|
||
"}\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"]{\n",
|
||
" --scroll-bg: #3c3c3c;\n",
|
||
" --scroll-fg: #97e1fb;\n",
|
||
"}\n",
|
||
"body {\n",
|
||
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar {\n",
|
||
" width: 10px; /* Mostly for vertical scrollbars */\n",
|
||
" height: 10px; /* Mostly for horizontal scrollbars */\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-thumb {\n",
|
||
" background-color: var(--scroll-fg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-track {\n",
|
||
" background-color: var(--scroll-bg);\n",
|
||
"}\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class="dataframe" id="df_1560281132"></table>\n",
|
||
"\n",
|
||
"<p class="dataframe_description">DataFrame: rowsCount = 5, columnsCount = 4</p>\n",
|
||
"\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" (function () {\n",
|
||
" window.DataFrame = window.DataFrame || new (function () {\n",
|
||
" this.addTable = function (df) {\n",
|
||
" let cols = df.cols;\n",
|
||
" for (let i = 0; i < cols.length; i++) {\n",
|
||
" for (let c of cols[i].children) {\n",
|
||
" cols[c].parent = i;\n",
|
||
" }\n",
|
||
" }\n",
|
||
" df.nrow = 0\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" if (df.cols[i].values.length > df.nrow) df.nrow = df.cols[i].values.length\n",
|
||
" }\n",
|
||
" if (df.id === df.rootId) {\n",
|
||
" df.expandedFrames = new Set()\n",
|
||
" df.childFrames = {}\n",
|
||
" const table = this.getTableElement(df.id)\n",
|
||
" table.df = df\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" let col = df.cols[i]\n",
|
||
" if (col.parent === undefined && col.children.length > 0) col.expanded = true\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" const rootDf = this.getTableData(df.rootId)\n",
|
||
" rootDf.childFrames[df.id] = df\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderData = function (df) {\n",
|
||
" let result = []\n",
|
||
" let pos = 0\n",
|
||
" for (let col = 0; col < df.cols.length; col++) {\n",
|
||
" if (df.cols[col].parent === undefined)\n",
|
||
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
|
||
" }\n",
|
||
" for (let i = 0; i < result.length; i++) {\n",
|
||
" let row = result[i]\n",
|
||
" for (let j = 0; j < row.length; j++) {\n",
|
||
" let cell = row[j]\n",
|
||
" if (j === 0)\n",
|
||
" cell.leftBd = false\n",
|
||
" if (j < row.length - 1) {\n",
|
||
" let nextData = row[j + 1]\n",
|
||
" if (nextData.leftBd) cell.rightBd = true\n",
|
||
" else if (cell.rightBd) nextData.leftBd = true\n",
|
||
" } else cell.rightBd = false\n",
|
||
" }\n",
|
||
" }\n",
|
||
" return result\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
|
||
" if (result.length === depth) {\n",
|
||
" const array = [];\n",
|
||
" if (pos > 0) {\n",
|
||
" let j = 0\n",
|
||
" for (let i = 0; j < pos; i++) {\n",
|
||
" let c = result[depth - 1][i]\n",
|
||
" j += c.span\n",
|
||
" let copy = Object.assign({empty: true}, c)\n",
|
||
" array.push(copy)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" result.push(array)\n",
|
||
" }\n",
|
||
" const col = cols[colId];\n",
|
||
" let size = 0;\n",
|
||
" if (col.expanded) {\n",
|
||
" let childPos = pos\n",
|
||
" for (let i = 0; i < col.children.length; i++) {\n",
|
||
" let child = col.children[i]\n",
|
||
" let childLeft = i === 0 && (col.children.length > 1 || leftBorder)\n",
|
||
" let childRight = i === col.children.length - 1 && (col.children.length > 1 || rightBorder)\n",
|
||
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
|
||
" childPos += childSize\n",
|
||
" size += childSize\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" for (let i = depth + 1; i < result.length; i++)\n",
|
||
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
|
||
" size = 1\n",
|
||
" }\n",
|
||
" let left = leftBorder\n",
|
||
" let right = rightBorder\n",
|
||
" if (size > 1) {\n",
|
||
" left = true\n",
|
||
" right = true\n",
|
||
" }\n",
|
||
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
|
||
" return size\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableElement = function (id) {\n",
|
||
" return document.getElementById("df_" + id)\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableData = function (id) {\n",
|
||
" return this.getTableElement(id).df\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.createExpander = function (isExpanded) {\n",
|
||
" const svgNs = "http://www.w3.org/2000/svg"\n",
|
||
" let svg = document.createElementNS(svgNs, "svg")\n",
|
||
" svg.classList.add("expanderSvg")\n",
|
||
" let path = document.createElementNS(svgNs, "path")\n",
|
||
" if (isExpanded) {\n",
|
||
" svg.setAttribute("viewBox", "0 -2 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z")\n",
|
||
" } else {\n",
|
||
" svg.setAttribute("viewBox", "-2 0 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z")\n",
|
||
" }\n",
|
||
" path.setAttribute("fill", "currentColor")\n",
|
||
" svg.appendChild(path)\n",
|
||
" return svg\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.renderTable = function (id) {\n",
|
||
"\n",
|
||
" let table = this.getTableElement(id)\n",
|
||
"\n",
|
||
" if (table === null) return\n",
|
||
"\n",
|
||
" table.innerHTML = ""\n",
|
||
"\n",
|
||
" let df = table.df\n",
|
||
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
|
||
"\n",
|
||
" // header\n",
|
||
" let header = document.createElement("thead")\n",
|
||
" table.appendChild(header)\n",
|
||
"\n",
|
||
" let renderData = this.computeRenderData(df)\n",
|
||
" for (let j = 0; j < renderData.length; j++) {\n",
|
||
" let rowData = renderData[j]\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" let isLastRow = j === renderData.length - 1\n",
|
||
" header.appendChild(tr);\n",
|
||
" for (let i = 0; i < rowData.length; i++) {\n",
|
||
" let cell = rowData[i]\n",
|
||
" let th = document.createElement("th");\n",
|
||
" th.setAttribute("colspan", cell.span)\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId];\n",
|
||
" if (!cell.empty) {\n",
|
||
" if (col.children.length === 0) {\n",
|
||
" th.innerHTML = col.name\n",
|
||
" } else {\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" col.expanded = !col.expanded\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(col.expanded))\n",
|
||
" link.innerHTML += col.name\n",
|
||
" th.appendChild(link)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (isLastRow)\n",
|
||
" classes += " bottomBorder"\n",
|
||
" if (classes.length > 0)\n",
|
||
" th.setAttribute("class", classes)\n",
|
||
" tr.appendChild(th)\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" // body\n",
|
||
" let body = document.createElement("tbody")\n",
|
||
" table.appendChild(body)\n",
|
||
"\n",
|
||
" let columns = renderData.pop()\n",
|
||
" for (let row = 0; row < df.nrow; row++) {\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" body.appendChild(tr)\n",
|
||
" for (let i = 0; i < columns.length; i++) {\n",
|
||
" let cell = columns[i]\n",
|
||
" let td = document.createElement("td");\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId]\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (classes.length > 0)\n",
|
||
" td.setAttribute("class", classes)\n",
|
||
" tr.appendChild(td)\n",
|
||
" let value = col.values[row]\n",
|
||
" if (value.frameId !== undefined) {\n",
|
||
" let frameId = value.frameId\n",
|
||
" let expanded = rootDf.expandedFrames.has(frameId)\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" if (rootDf.expandedFrames.has(frameId))\n",
|
||
" rootDf.expandedFrames.delete(frameId)\n",
|
||
" else rootDf.expandedFrames.add(frameId)\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(expanded))\n",
|
||
" link.innerHTML += value.value\n",
|
||
" if (expanded) {\n",
|
||
" td.appendChild(link)\n",
|
||
" td.appendChild(document.createElement("p"))\n",
|
||
" const childTable = document.createElement("table")\n",
|
||
" childTable.className = "dataframe"\n",
|
||
" childTable.id = "df_" + frameId\n",
|
||
" let childDf = rootDf.childFrames[frameId]\n",
|
||
" childTable.df = childDf\n",
|
||
" td.appendChild(childTable)\n",
|
||
" this.renderTable(frameId)\n",
|
||
" if (childDf.nrow !== childDf.totalRows) {\n",
|
||
" const footer = document.createElement("p")\n",
|
||
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
|
||
" td.appendChild(footer)\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" td.appendChild(link)\n",
|
||
" }\n",
|
||
" } else if (value.style !== undefined) {\n",
|
||
" td.innerHTML = value.value\n",
|
||
" td.setAttribute("style", value.style)\n",
|
||
" } else td.innerHTML = value\n",
|
||
" this.nodeScriptReplace(td)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptReplace = function (node) {\n",
|
||
" if (this.nodeScriptIs(node) === true) {\n",
|
||
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
|
||
" } else {\n",
|
||
" let i = -1, children = node.childNodes;\n",
|
||
" while (++i < children.length) {\n",
|
||
" this.nodeScriptReplace(children[i]);\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" return node;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptClone = function (node) {\n",
|
||
" let script = document.createElement("script");\n",
|
||
" script.text = node.innerHTML;\n",
|
||
"\n",
|
||
" let i = -1, attrs = node.attributes, attr;\n",
|
||
" while (++i < attrs.length) {\n",
|
||
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
|
||
" }\n",
|
||
" return script;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptIs = function (node) {\n",
|
||
" return node.tagName === 'SCRIPT';\n",
|
||
" }\n",
|
||
" })()\n",
|
||
"\n",
|
||
" window.call_DataFrame = function (f) {\n",
|
||
" return f();\n",
|
||
" };\n",
|
||
"\n",
|
||
" let funQueue = window["kotlinQueues"] && window["kotlinQueues"]["DataFrame"];\n",
|
||
" if (funQueue) {\n",
|
||
" funQueue.forEach(function (f) {\n",
|
||
" f();\n",
|
||
" });\n",
|
||
" funQueue = [];\n",
|
||
" }\n",
|
||
"})()\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#videoListResponse","youtube#videoListResponse","youtube#videoListResponse","youtube#videoListResponse","youtube#videoListResponse"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["si8jURGAyE8nJdcsPVQ_zmnnFtA","CAK8IKfEw7jZeCXZv7ecMv2KmsM","D8EsZXaxDIYLLyim0rtIJqtUEzs","DUSxQ2r0DW0lRu9UhVIBi9Q7FYQ","YbFuapJqhyJ-96DMcokZ3WvfiKQ"] }, \n",
|
||
"{ name: "<span title=\"items: DataFrame<*>\">items</span>", children: [], rightAlign: false, values: [{ frameId: 1560281133, value: "<b>DataFrame 50 x 4</b>" },{ frameId: 1560281134, value: "<b>DataFrame 50 x 4</b>" },{ frameId: 1560281135, value: "<b>DataFrame 50 x 4</b>" },{ frameId: 1560281136, value: "<b>DataFrame 50 x 4</b>" },{ frameId: 1560281137, value: "<b>DataFrame 32 x 4</b>" }] }, \n",
|
||
"{ name: "<span title=\"totalResults: Int\">totalResults</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">32</span></span>"] }, \n",
|
||
"{ name: "<span title=\"resultsPerPage: Int\">resultsPerPage</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">50</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">32</span></span>"] }, \n",
|
||
"{ name: "<span title=\"pageInfo: DataRow<*>\">pageInfo</span>", children: [3, 4], rightAlign: false, values: ["<span class=\"formatted\" title=\"totalResults: 50\nresultsPerPage: 50\"><span class=\"structural\">{ </span><span class=\"structural\">totalResults: </span><span class=\"numbers\">50</span><span class=\"structural\">, </span><span class=\"structural\">resultsPerPage: </span><span class=\"numbers\">50</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"totalResults: 50\nresultsPerPage: 50\"><span class=\"structural\">{ </span><span class=\"structural\">totalResults: </span><span class=\"numbers\">50</span><span class=\"structural\">, </span><span class=\"structural\">resultsPerPage: </span><span class=\"numbers\">50</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"totalResults: 50\nresultsPerPage: 50\"><span class=\"structural\">{ </span><span class=\"structural\">totalResults: </span><span class=\"numbers\">50</span><span class=\"structural\">, </span><span class=\"structural\">resultsPerPage: </span><span class=\"numbers\">50</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"totalResults: 50\nresultsPerPage: 50\"><span class=\"structural\">{ </span><span class=\"structural\">totalResults: </span><span class=\"numbers\">50</span><span class=\"structural\">, </span><span class=\"structural\">resultsPerPage: </span><span class=\"numbers\">50</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"totalResults: 32\nresultsPerPage: 32\"><span class=\"structural\">{ </span><span class=\"structural\">totalResults: </span><span class=\"numbers\">32</span><span class=\"structural\">, </span><span class=\"structural\">resultsPerPage: </span><span class=\"numbers\">32</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"id: DataRow<*>\">id</span>", children: [0, 1, 2, 5], rightAlign: false, values: ["<span class=\"formatted\" title=\"kind: youtube#videoListResponse\netag: si8jURGAyE8nJdcsPVQ_zmnnFtA\nitems: kind etag id statistics\n 0 youtube#video NPemCfyy7gnv4pTM231EcuQwKfg y0sF5xhGreA { viewCount:18909559, likeCount:65910...\n 1 youtube#video nf9LCeR5y5dadtIGPZrZC6h2i34 tpiyEe_CqB4 { viewCount:15055970, likeCount:10524...\n 2 youtube#video LqOqjW2s86I9ohCgwVWapCy7c34 wdjpworLSk8 { viewCount:120508334, likeCount:1907...\n 3 youtube#video _xzjHgolqrY2Oe163SpKSscBESE MlDtL2hIj-Q { viewCount:1371373, likeCount:5922, ...\n 4 youtube#video lfsa5_RoMR-MoqwpGrVbpSuRaKY 1UgJI6O8T2U { viewCount:15684154, likeCount:16736...\n 5 youtube#video qFC_5WkhaaJVaSYH8HfIkQDjAYk cytJLvf-eVs { viewCount:37184151, likeCount:24982...\n 6 youtube#video SvzZQYEW0qnahwUzhj0GarDz3jg ASFCURj-2hQ { viewCount:104732562, favoriteCount:...\n 7 youtube#video Nk2XmCBOeJB9Ojv2-Q914NO1oHc 8iY66B5NB2w { viewCount:2534065, likeCount:18949,...\n 8 youtube#video -6_JM4fW64wwL0_cbEE2l1Ts09Y 1TsaNbWEckk { viewCount:1781, likeCount:21, favor...\n 9 youtube#video ByfBRzk16thUv2obnj0QguABdVM 3URtTIdnXIk { viewCount:882603, likeCount:4336, f...\n 10 youtube#video cwzrcqifrt5-bqSPs7k5LTDJZhI afm0c53xO2o { viewCount:80092074, likeCount:18383...\n 11 youtube#video bdb0OGITDwFcBGbojckRKoZJCOQ 2M1AFRWPpy8 { viewCount:156002206, likeCount:1436...\n 12 youtube#video JLrPwmLNgobFU_iDz5fzGNFNtag o0Dvesp0lQU { viewCount:2574039, likeCount:97428,...\n 13 youtube#video m8JEgUviblFsV2obece5TYVVzg4 NsMKvVdEPkw { viewCount:371948067, likeCount:3755...\n 14 youtube#video gJnz3GmzbGNpoccK-_M8EdmPqQs a7K-kWT_C2A { viewCount:86752254, likeCount:31501...\n 15 youtube#video TMVhimLrkR3wgcXrqCi-BDV6sE4 BOK8T1HK4S8 { viewCount:555221, favoriteCount:0, ...\n 16 youtube#video 9tx9nxj-89GvtNBra5uuxsJYFoY RFMuw3xpmFE { viewCount:2948360, likeCount:13561,...\n 17 youtube#video xG2rYA1xcNN434Jyy0ezgBJie-U Po098TRdOn4 { viewCount:57103131, likeCount:91032...\n 18 youtube#video ml-Qrdib1dqvZHjOfz6ltwWvAMI DrpvkCRE2P4 { viewCount:81447629, likeCount:12567...\n 19 youtube#video pvdmsqQQwB0dzLXOlAlTqOZkQS0 OQoukB1VB5k { viewCount:88424540, likeCount:90848...\n...\n\npageInfo: { totalResults:50, resultsPerPage:50 }\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#videoListResponse<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#videoListResponse\netag: CAK8IKfEw7jZeCXZv7ecMv2KmsM\nitems: kind etag id statistics\n 0 youtube#video EzixDnuMfhJNipb5bri_RUB-drc 28O4PxyCG9E { viewCount:99885747, likeCount:36110...\n 1 youtube#video t-mVQN7JWlEWKzCkOQtfHfcs5tM 8E6NNlyMG8U { viewCount:20745861, likeCount:39269...\n 2 youtube#video HKTicoyLUFkh4txG_0MQNOmu5LY NlxYY7w1UGU { viewCount:71295598, likeCount:18027...\n 3 youtube#video Q67yQ0pUV-znSzbLJl8rmcjIWlA Yy0DVnqKHuI { viewCount:8123734, likeCount:55073,...\n 4 youtube#video 7BwOD9HqhKwwq3P1u7v3biv7dG0 tT377yJJg38 { viewCount:444649648, likeCount:9100...\n 5 youtube#video CecOM3fLJ3e2UMqF4mbC7wLUeKw Y4GFrpKSL8Y { viewCount:511175, favoriteCount:0, ...\n 6 youtube#video Z6cnXhXBAZo7MUlHQrTXXgPnwGM zchD6u1s-jc { viewCount:8533754, likeCount:230298...\n 7 youtube#video V0BY3ao6BnnEwYfnB57H6iqFqg4 9ImL3zkMx2E { viewCount:6071764, likeCount:187053...\n 8 youtube#video By0TUqXtHel-1AR46Zz05FWCT0c 3AfETaI8Ias { viewCount:23127145, likeCount:14254...\n 9 youtube#video lgsektZcKk0w8lSv-6lw846bQM8 qK9foZqrM2I { viewCount:19736473, likeCount:38982...\n 10 youtube#video NB8hSrnzInJ8SZn8nDBmjNo3Ys8 A-M6s_4qo2Y { viewCount:14585648, likeCount:10135...\n 11 youtube#video d9FoN3ndfxfZhIGDys9YcICQtZI qA_jwg0cjaU { viewCount:1730633, likeCount:56914,...\n 12 youtube#video D8OIPDbIlvszJnd3HYWcVtyASe8 NvkDYazj_6Q { viewCount:6436450, likeCount:26859,...\n 13 youtube#video ofGcDpyhuAvIAkGabKzqL7V7qpk EM41yq0OUQ4 { viewCount:4092460, likeCount:65186,...\n 14 youtube#video SeqV4L9vdPK9l1-5LaXusA26b40 XTi0-Y5xhXA { viewCount:42352995, likeCount:10411...\n 15 youtube#video Bo_wFa2AmbRyeVqRJE81hJYwtxc FHUbU7ZTIkk { viewCount:4600995, likeCount:39501,...\n 16 youtube#video Qtk1tx_sZ2IvI6dJMzFpUd04HKE 5ZLlN3JJ5Eg { viewCount:35709, likeCount:887, fav...\n 17 youtube#video JC_pkwJbPwaaETFOA1PFewq6__c 0AwB4ivE-Uw { viewCount:33729611, likeCount:22657...\n 18 youtube#video 3q_FAzgK_3pPIinSioDvVrXg2qk rWrwrI_MtqE { viewCount:3289204, favoriteCount:0,...\n 19 youtube#video MnfFvM1rSo3tjRiVVksebdlXelY adbGYRuZ5OQ { viewCount:27347215, likeCount:27352...\n...\n\npageInfo: { totalResults:50, resultsPerPage:50 }\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#videoListResponse<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#videoListResponse\netag: D8EsZXaxDIYLLyim0rtIJqtUEzs\nitems: kind etag id statistics\n 0 youtube#video q8u8R5aCj3Mps4a6GkrSYHukgq8 4kyJvjssTko { viewCount:10593, likeCount:965, fav...\n 1 youtube#video Ysb6cdDDFuR_NIWbFsB2sXay6zo vaoC5C7f1Lk { viewCount:10735648, likeCount:65057...\n 2 youtube#video oT65CQ3V6KxXotLCKC5HpXS7gow vMr3Gvjc5sI { viewCount:37642, likeCount:104, fav...\n 3 youtube#video qDb8WinqsLo2A5NvckRj6joxygA mHiMcv9Md84 { viewCount:235453777, likeCount:7521...\n 4 youtube#video dBLZiBVOU7ySHxmEKzNDzOD-5-M 5gRGKxgD_tY { viewCount:16557316, likeCount:19278...\n 5 youtube#video MUB2QNOmG110VykjjVo18GcD9Sk mGrCV73lBZ0 { viewCount:136636865, likeCount:5946...\n 6 youtube#video sgkgir2G75z8RyZY4heU-Ky8biE nEQVO8NaA5g { viewCount:9021911, likeCount:306327...\n 7 youtube#video m_HobBop7g_Bwhj4ApLwrtJzBfY _wyIKHAXZFI { viewCount:31923429, likeCount:32531...\n 8 youtube#video Dftq48zrYsZjy_8Ad_JUz10_K0M cJIMjOhhR2g { viewCount:1010213, likeCount:8829, ...\n 9 youtube#video LZ5eGpgaIu6h_s0hbyGCOmoK9W4 wi4xRzrFX0c { viewCount:1645219, likeCount:34040,...\n 10 youtube#video ACUKkVNKlUeZphY5OAtXhBp2GSc 91z9VAOfUNw { viewCount:8260945, likeCount:538885...\n 11 youtube#video o2BBp0J4Y1h67zVg0En6DXxB2qI RrdKGO012_Y { viewCount:89961347, likeCount:20688...\n 12 youtube#video YPRn-WsaVq54iqxVwJ38Ar_kQ-o tZ-BBAAPYzA { viewCount:11543804, likeCount:79805...\n 13 youtube#video KqThHrOKNlKvmKa60ZNMSwBzaK4 co9UUzg26eI { viewCount:35618400, likeCount:13887...\n 14 youtube#video CjBPiO67DWBsV-C_bQxUAt2frSE JNl0Lx6LY-M { viewCount:17510, likeCount:489, fav...\n 15 youtube#video E_cKfODggyfwL47EuHUj8ujARCg X-i3lAZlY80 { viewCount:362063, likeCount:6109, f...\n 16 youtube#video 24qLJCCtQPYJBZZfRlmhk9HAWkY 2f-PUl5Vl9w { viewCount:99594, likeCount:425, fav...\n 17 youtube#video gyHnbSrSZEDA-KDMVq0xoT68eZ0 Kipdk7420e4 { viewCount:31934, likeCount:108, fav...\n 18 youtube#video b7tWYwX3hHCOsg5H62QtW1BV0ag dTr2Wj_RVLA { viewCount:18316343, likeCount:27059...\n 19 youtube#video TdHNJklsdZAJA82oXeVXQJoqthU 9xqXMZQ9Zjk { viewCount:4846669, likeCount:169886...\n...\n\npageInfo: { totalResults:50, resultsPerPage:50 }\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#videoListResponse<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#videoListResponse\netag: DUSxQ2r0DW0lRu9UhVIBi9Q7FYQ\nitems: kind etag id statistics\n 0 youtube#video gqHnIAu6z5DHRGQ-GMgGvtjRtus kwLnfRJB6pg { viewCount:3782, likeCount:222, favo...\n 1 youtube#video teEHxMi3qz6UH0jWpt7f1LVQcuE oMvE7gimZes { viewCount:796043, likeCount:21262, ...\n 2 youtube#video 4xh3ZvktjYOgt7mFdpkJo7Ma0Ws stO-TG6u2BM { viewCount:6454552, likeCount:48601,...\n 3 youtube#video ULgtBmyx7OOltjc8IKTk1AA8lOs IMkw2thL6k0 { viewCount:42812176, likeCount:66275...\n 4 youtube#video ynKShHWO2UWRHVE68aqnSZD4NHY iKL4GlHoZm4 { viewCount:702630, likeCount:27951, ...\n 5 youtube#video Hc8MKayMKLDwW_3GBy2s-Si3lEs 92rynZr3O80 { viewCount:6751261, likeCount:45881,...\n 6 youtube#video OIudHfcGxdKI4luwdX4gZfqfLpQ Xk1JWWdgUqI { viewCount:1551352, likeCount:13912,...\n 7 youtube#video y_w5hhEnsAb4TfB3VoFuzN73Hqk KBMN56WGPS8 { viewCount:8631576, likeCount:236986...\n 8 youtube#video waBaGgteAuTpK1zyl6uMFiueObM CkN63zbewCo { viewCount:56486550, likeCount:17354...\n 9 youtube#video COBjz3DkgHsKYsbGRrOosn0Rn3E dklomBtFzeU { viewCount:9228240, likeCount:253863...\n 10 youtube#video GXLpUfKZQqJM7edlhOZNCujScW8 JBs0iQcxbsk { viewCount:54540834, likeCount:20962...\n 11 youtube#video ncc94TVJDL5_9Qt2WoQXmjCtWfM ePizt97VWLI { viewCount:24119132, likeCount:66292...\n 12 youtube#video tepFQtMqooqOfOtUIMJxj4ciJ6s 36mKrkFyi-A { viewCount:3986768, likeCount:32907,...\n 13 youtube#video 248MwMgfMfd74eNlDvvKqZgTxBI Q5nArfUCISE { viewCount:14153, likeCount:144, fav...\n 14 youtube#video l8v3epNY2tUeRGqshWfWHU15Yls T1PMp_p3aKI { viewCount:45930617, likeCount:17945...\n 15 youtube#video y7ZA07kVecuV5gBciBUQS4JeL9E StSVxZ4fxE4 { viewCount:6782, likeCount:146, favo...\n 16 youtube#video Y-DyVDrZOCtEokFclTcmk_0l2DU LgzqNceUPP0 { viewCount:3424941, likeCount:213957...\n 17 youtube#video OXct2yz0BEA0FshJwuS7JguN_hQ bRzmUfrZlBc { viewCount:560195, likeCount:14082, ...\n 18 youtube#video qSm-tWS2a_6Mwxx0ikhR_hkJLnk uiyipJ99P_A { viewCount:1366083, likeCount:39079,...\n 19 youtube#video jr3Gttip6CBgEUiHcopE3rUPvoA PpuSotPP1M0 { viewCount:4604465, likeCount:60860,...\n...\n\npageInfo: { totalResults:50, resultsPerPage:50 }\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#videoListResponse<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"kind: youtube#videoListResponse\netag: YbFuapJqhyJ-96DMcokZ3WvfiKQ\nitems: kind etag id statistics\n 0 youtube#video Kbc1liTsvVnakeW_DlXE2FfJ3fY jWVYL8p9550 { viewCount:14500049, likeCount:98685...\n 1 youtube#video BEzAF8MusOs4FnR8Ig_E8_xKxV0 Mgbgeyz4fPE { viewCount:16822697, likeCount:47584...\n 2 youtube#video 0uUiRHuvqnCgt3m0kWGkfKdkzRY AlMEuWl912Q { viewCount:6570809, likeCount:489895...\n 3 youtube#video mEm1UsNNBqpmhfl_V8_3UCvuPVA g2KJRwjUg9Q { viewCount:285533199, likeCount:8239...\n 4 youtube#video tfKnbvePbxIpTxZQAtoMLX17PGU peQHKk3jAeo { viewCount:125515836, likeCount:4445...\n 5 youtube#video x_RkFz4S4HQQCJ-z5EiYE8zAJtE arUBRy0Rkbw { viewCount:40198828, likeCount:89157...\n 6 youtube#video -8msTmnnCBrQygxYv5At6GWOGr8 tGO0vUswjRo { viewCount:3240, likeCount:150, favo...\n 7 youtube#video K4N6FEhjUooCMCs3jarVQBTAIio GBN0Y9sA6W8 { viewCount:40030645, likeCount:14276...\n 8 youtube#video _R-Xeo5OPe6Yqu-BmDyLPb4sZKo O7UKr6DI1VI { viewCount:19020235, likeCount:26434...\n 9 youtube#video 1LiqK9aL1PrHIkCn9hZt7ietayc V7Rrk7pVbSA { viewCount:2530636, likeCount:22407,...\n 10 youtube#video LsoM_ZAl6KlhHMRcXTpRt9RXNdk o-F8wZa8uv8 { viewCount:70531062, likeCount:30256...\n 11 youtube#video kOG4Pa6xyV-x0uBAJPKruED_dQs WpH2ln8pp2w { viewCount:7650478, likeCount:108642...\n 12 youtube#video Ucx4wtshkbq6jR6owANX1kYBysQ CcFNBwfFkHY { viewCount:399787, likeCount:21196, ...\n 13 youtube#video DaT-_F8eYDFTG97Vkg5mp0Rt22g LIgiiAc313U { viewCount:25240468, likeCount:10694...\n 14 youtube#video Urg0uyvfRirfSdrkv9jPuokjL6I UB9hoMsPgEI { viewCount:9708, likeCount:386, favo...\n 15 youtube#video W50m-RYSof6fB6SfDcj8R5dMXRo U5S0zs22z9g { viewCount:4565509, likeCount:20795,...\n 16 youtube#video DLUviD3NHERV8xPEXTzYYU0_RCc ORTR9Jz-dCc { viewCount:4913728, likeCount:217651...\n 17 youtube#video HbBn8EXPHvOIVelW-YKbk3eQZ80 pedELURRt4w { viewCount:65674, likeCount:6390, fa...\n 18 youtube#video 6o-yyYPGNC8SiXDaO4Q2ei93QZo cLRoARi5nQY { viewCount:22211, favoriteCount:0, c...\n 19 youtube#video Ld6rUwbAw9nxKZieY2CR66BDc9w PP7toELbdqA { viewCount:57421135, likeCount:15886...\n...\n\npageInfo: { totalResults:32, resultsPerPage:32 }\"><span class=\"structural\">{ </span><span class=\"structural\">kind: </span>youtube#videoListResponse<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281132, rootId: 1560281132, totalRows: 5 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["NPemCfyy7gnv4pTM231EcuQwKfg","nf9LCeR5y5dadtIGPZrZC6h2i34","LqOqjW2s86I9ohCgwVWapCy7c34","_xzjHgolqrY2Oe163SpKSscBESE","lfsa5_RoMR-MoqwpGrVbpSuRaKY"] }, \n",
|
||
"{ name: "<span title=\"id: String\">id</span>", children: [], rightAlign: false, values: ["y0sF5xhGreA","tpiyEe_CqB4","wdjpworLSk8","MlDtL2hIj-Q","1UgJI6O8T2U"] }, \n",
|
||
"{ name: "<span title=\"viewCount: String\">viewCount</span>", children: [], rightAlign: false, values: ["18909559","15055970","120508334","1371373","15684154"] }, \n",
|
||
"{ name: "<span title=\"likeCount: String?\">likeCount</span>", children: [], rightAlign: false, values: ["65910","105244","1907714","5922","167360"] }, \n",
|
||
"{ name: "<span title=\"favoriteCount: String\">favoriteCount</span>", children: [], rightAlign: false, values: ["0","0","0","0","0"] }, \n",
|
||
"{ name: "<span title=\"commentCount: String?\">commentCount</span>", children: [], rightAlign: false, values: ["2520","5750","7049","253","1183"] }, \n",
|
||
"{ name: "<span title=\"statistics: DataRow<*>\">statistics</span>", children: [3, 4, 5, 6], rightAlign: false, values: ["<span class=\"formatted\" title=\"viewCount: 18909559\nlikeCount: 65910\nfavoriteCount: 0\ncommentCount: 2520\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>18909559<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 15055970\nlikeCount: 105244\nfavoriteCount: 0\ncommentCount: 5750\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>15055970<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 120508334\nlikeCount: 1907714\nfavoriteCount: 0\ncommentCount: 7049\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>120508334<span class=\"structural\">, </span><span class=\"structural\">likeCo...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 1371373\nlikeCount: 5922\nfavoriteCount: 0\ncommentCount: 253\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>1371373<span class=\"structural\">, </span><span class=\"structural\">likeCoun...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 15684154\nlikeCount: 167360\nfavoriteCount: 0\ncommentCount: 1183\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>15684154<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281133, rootId: 1560281132, totalRows: 50 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["EzixDnuMfhJNipb5bri_RUB-drc","t-mVQN7JWlEWKzCkOQtfHfcs5tM","HKTicoyLUFkh4txG_0MQNOmu5LY","Q67yQ0pUV-znSzbLJl8rmcjIWlA","7BwOD9HqhKwwq3P1u7v3biv7dG0"] }, \n",
|
||
"{ name: "<span title=\"id: String\">id</span>", children: [], rightAlign: false, values: ["28O4PxyCG9E","8E6NNlyMG8U","NlxYY7w1UGU","Yy0DVnqKHuI","tT377yJJg38"] }, \n",
|
||
"{ name: "<span title=\"viewCount: String\">viewCount</span>", children: [], rightAlign: false, values: ["99885747","20745861","71295598","8123734","444649648"] }, \n",
|
||
"{ name: "<span title=\"likeCount: String?\">likeCount</span>", children: [], rightAlign: false, values: ["3611073","392698","1802779","55073","9100453"] }, \n",
|
||
"{ name: "<span title=\"favoriteCount: String\">favoriteCount</span>", children: [], rightAlign: false, values: ["0","0","0","0","0"] }, \n",
|
||
"{ name: "<span title=\"commentCount: String?\">commentCount</span>", children: [], rightAlign: false, values: ["167837","1084","10584","20","13585"] }, \n",
|
||
"{ name: "<span title=\"statistics: DataRow<*>\">statistics</span>", children: [3, 4, 5, 6], rightAlign: false, values: ["<span class=\"formatted\" title=\"viewCount: 99885747\nlikeCount: 3611073\nfavoriteCount: 0\ncommentCount: 167837\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>99885747<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 20745861\nlikeCount: 392698\nfavoriteCount: 0\ncommentCount: 1084\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>20745861<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 71295598\nlikeCount: 1802779\nfavoriteCount: 0\ncommentCount: 10584\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>71295598<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 8123734\nlikeCount: 55073\nfavoriteCount: 0\ncommentCount: 20\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>8123734<span class=\"structural\">, </span><span class=\"structural\">likeCoun...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 444649648\nlikeCount: 9100453\nfavoriteCount: 0\ncommentCount: 13585\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>444649648<span class=\"structural\">, </span><span class=\"structural\">likeCo...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281134, rootId: 1560281132, totalRows: 50 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["q8u8R5aCj3Mps4a6GkrSYHukgq8","Ysb6cdDDFuR_NIWbFsB2sXay6zo","oT65CQ3V6KxXotLCKC5HpXS7gow","qDb8WinqsLo2A5NvckRj6joxygA","dBLZiBVOU7ySHxmEKzNDzOD-5-M"] }, \n",
|
||
"{ name: "<span title=\"id: String\">id</span>", children: [], rightAlign: false, values: ["4kyJvjssTko","vaoC5C7f1Lk","vMr3Gvjc5sI","mHiMcv9Md84","5gRGKxgD_tY"] }, \n",
|
||
"{ name: "<span title=\"viewCount: String\">viewCount</span>", children: [], rightAlign: false, values: ["10593","10735648","37642","235453777","16557316"] }, \n",
|
||
"{ name: "<span title=\"likeCount: String?\">likeCount</span>", children: [], rightAlign: false, values: ["965","650573","104","7521527","192783"] }, \n",
|
||
"{ name: "<span title=\"favoriteCount: String\">favoriteCount</span>", children: [], rightAlign: false, values: ["0","0","0","0","0"] }, \n",
|
||
"{ name: "<span title=\"commentCount: String\">commentCount</span>", children: [], rightAlign: false, values: ["13","6317","1","11855","8330"] }, \n",
|
||
"{ name: "<span title=\"statistics: DataRow<*>\">statistics</span>", children: [3, 4, 5, 6], rightAlign: false, values: ["<span class=\"formatted\" title=\"viewCount: 10593\nlikeCount: 965\nfavoriteCount: 0\ncommentCount: 13\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>10593<span class=\"structural\">, </span><span class=\"structural\">likeCount:...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 10735648\nlikeCount: 650573\nfavoriteCount: 0\ncommentCount: 6317\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>10735648<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 37642\nlikeCount: 104\nfavoriteCount: 0\ncommentCount: 1\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>37642<span class=\"structural\">, </span><span class=\"structural\">likeCount:...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 235453777\nlikeCount: 7521527\nfavoriteCount: 0\ncommentCount: 11855\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>235453777<span class=\"structural\">, </span><span class=\"structural\">likeCo...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 16557316\nlikeCount: 192783\nfavoriteCount: 0\ncommentCount: 8330\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>16557316<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281135, rootId: 1560281132, totalRows: 50 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["gqHnIAu6z5DHRGQ-GMgGvtjRtus","teEHxMi3qz6UH0jWpt7f1LVQcuE","4xh3ZvktjYOgt7mFdpkJo7Ma0Ws","ULgtBmyx7OOltjc8IKTk1AA8lOs","ynKShHWO2UWRHVE68aqnSZD4NHY"] }, \n",
|
||
"{ name: "<span title=\"id: String\">id</span>", children: [], rightAlign: false, values: ["kwLnfRJB6pg","oMvE7gimZes","stO-TG6u2BM","IMkw2thL6k0","iKL4GlHoZm4"] }, \n",
|
||
"{ name: "<span title=\"viewCount: String\">viewCount</span>", children: [], rightAlign: false, values: ["3782","796043","6454552","42812176","702630"] }, \n",
|
||
"{ name: "<span title=\"likeCount: String?\">likeCount</span>", children: [], rightAlign: false, values: ["222","21262","48601","662752","27951"] }, \n",
|
||
"{ name: "<span title=\"favoriteCount: String\">favoriteCount</span>", children: [], rightAlign: false, values: ["0","0","0","0","0"] }, \n",
|
||
"{ name: "<span title=\"commentCount: String?\">commentCount</span>", children: [], rightAlign: false, values: ["0","82","8","1110","221"] }, \n",
|
||
"{ name: "<span title=\"statistics: DataRow<*>\">statistics</span>", children: [3, 4, 5, 6], rightAlign: false, values: ["<span class=\"formatted\" title=\"viewCount: 3782\nlikeCount: 222\nfavoriteCount: 0\ncommentCount: 0\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>3782<span class=\"structural\">, </span><span class=\"structural\">likeCount: </span>222<span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 796043\nlikeCount: 21262\nfavoriteCount: 0\ncommentCount: 82\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>796043<span class=\"structural\">, </span><span class=\"structural\">likeCount...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 6454552\nlikeCount: 48601\nfavoriteCount: 0\ncommentCount: 8\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>6454552<span class=\"structural\">, </span><span class=\"structural\">likeCoun...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 42812176\nlikeCount: 662752\nfavoriteCount: 0\ncommentCount: 1110\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>42812176<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 702630\nlikeCount: 27951\nfavoriteCount: 0\ncommentCount: 221\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>702630<span class=\"structural\">, </span><span class=\"structural\">likeCount...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281136, rootId: 1560281132, totalRows: 50 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"kind: String\">kind</span>", children: [], rightAlign: false, values: ["youtube#video","youtube#video","youtube#video","youtube#video","youtube#video"] }, \n",
|
||
"{ name: "<span title=\"etag: String\">etag</span>", children: [], rightAlign: false, values: ["Kbc1liTsvVnakeW_DlXE2FfJ3fY","BEzAF8MusOs4FnR8Ig_E8_xKxV0","0uUiRHuvqnCgt3m0kWGkfKdkzRY","mEm1UsNNBqpmhfl_V8_3UCvuPVA","tfKnbvePbxIpTxZQAtoMLX17PGU"] }, \n",
|
||
"{ name: "<span title=\"id: String\">id</span>", children: [], rightAlign: false, values: ["jWVYL8p9550","Mgbgeyz4fPE","AlMEuWl912Q","g2KJRwjUg9Q","peQHKk3jAeo"] }, \n",
|
||
"{ name: "<span title=\"viewCount: String\">viewCount</span>", children: [], rightAlign: false, values: ["14500049","16822697","6570809","285533199","125515836"] }, \n",
|
||
"{ name: "<span title=\"likeCount: String?\">likeCount</span>", children: [], rightAlign: false, values: ["98685","475844","489895","823927","4445495"] }, \n",
|
||
"{ name: "<span title=\"favoriteCount: String\">favoriteCount</span>", children: [], rightAlign: false, values: ["0","0","0","0","0"] }, \n",
|
||
"{ name: "<span title=\"commentCount: String?\">commentCount</span>", children: [], rightAlign: false, values: ["30","2075","3930","<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>","16604"] }, \n",
|
||
"{ name: "<span title=\"statistics: DataRow<*>\">statistics</span>", children: [3, 4, 5, 6], rightAlign: false, values: ["<span class=\"formatted\" title=\"viewCount: 14500049\nlikeCount: 98685\nfavoriteCount: 0\ncommentCount: 30\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>14500049<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 16822697\nlikeCount: 475844\nfavoriteCount: 0\ncommentCount: 2075\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>16822697<span class=\"structural\">, </span><span class=\"structural\">likeCou...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 6570809\nlikeCount: 489895\nfavoriteCount: 0\ncommentCount: 3930\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>6570809<span class=\"structural\">, </span><span class=\"structural\">likeCoun...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 285533199\nlikeCount: 823927\nfavoriteCount: 0\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>285533199<span class=\"structural\">, </span><span class=\"structural\">likeC...</span><span class=\"structural\">, </span><span class=\"structural\">f...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"viewCount: 125515836\nlikeCount: 4445495\nfavoriteCount: 0\ncommentCount: 16604\"><span class=\"structural\">{ </span><span class=\"structural\">viewCount: </span>125515836<span class=\"structural\">, </span><span class=\"structural\">likeCo...</span><span class=\"structural\">, </span><span class=\"structural\">...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"], id: 1560281137, rootId: 1560281132, totalRows: 32 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"call_DataFrame(function() { DataFrame.renderTable(1560281132) });\n",
|
||
"\n",
|
||
"\n",
|
||
" </script>\n",
|
||
" </html>\"></iframe>\n",
|
||
" <script>\n",
|
||
" function o_resize_iframe_out_13() {\n",
|
||
" let elem = document.getElementById(\"iframe_out_13\");\n",
|
||
" resize_iframe_out_13(elem);\n",
|
||
" setInterval(resize_iframe_out_13, 5000, elem);\n",
|
||
" }\n",
|
||
" function resize_iframe_out_13(el) {\n",
|
||
" let h = el.contentWindow.document.body.scrollHeight;\n",
|
||
" el.height = h === 0 ? 0 : h + 41;\n",
|
||
" }\n",
|
||
" </script> <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type=\"text/css\">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class=\"dataframe\" id=\"static_df_1560281138\"><thead><tr><th class=\"rightBorder\" style=\"text-align:left\">id</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th class=\"rightBorder\" style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"rightBorder\" style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">items</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">pageInfo</th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">totalResults</th><th class=\"bottomBorder\" style=\"text-align:left\">resultsPerPage</th></tr></thead><tbody><tr><td class=\"rightBorder\" style=\"vertical-align:top\">youtube#videoListResponse</td><td style=\"vertical-align:top\">si8jURGAyE8nJdcsPVQ_zmnnFtA</td><td class=\"rightBorder\" style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281139\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">statistics</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">NPemCfyy7gnv4pTM231EcuQwKfg</td><td class=\"rightBorder\" style=\"vertical-align:top\">y0sF5xhGreA</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">18909559</td><td style=\"vertical-align:top\">65910</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">2520</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">nf9LCeR5y5dadtIGPZrZC6h2i34</td><td class=\"rightBorder\" style=\"vertical-align:top\">tpiyEe_CqB4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">15055970</td><td style=\"vertical-align:top\">105244</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">5750</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">LqOqjW2s86I9ohCgwVWapCy7c34</td><td class=\"rightBorder\" style=\"vertical-align:top\">wdjpworLSk8</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">120508334</td><td style=\"vertical-align:top\">1907714</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">7049</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">_xzjHgolqrY2Oe163SpKSscBESE</td><td class=\"rightBorder\" style=\"vertical-align:top\">MlDtL2hIj-Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">1371373</td><td style=\"vertical-align:top\">5922</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">253</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">lfsa5_RoMR-MoqwpGrVbpSuRaKY</td><td class=\"rightBorder\" style=\"vertical-align:top\">1UgJI6O8T2U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">15684154</td><td style=\"vertical-align:top\">167360</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1183</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\">50</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">youtube#videoListResponse</td><td style=\"vertical-align:top\">CAK8IKfEw7jZeCXZv7ecMv2KmsM</td><td class=\"rightBorder\" style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281140\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">statistics</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">EzixDnuMfhJNipb5bri_RUB-drc</td><td class=\"rightBorder\" style=\"vertical-align:top\">28O4PxyCG9E</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">99885747</td><td style=\"vertical-align:top\">3611073</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">167837</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">t-mVQN7JWlEWKzCkOQtfHfcs5tM</td><td class=\"rightBorder\" style=\"vertical-align:top\">8E6NNlyMG8U</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">20745861</td><td style=\"vertical-align:top\">392698</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1084</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">HKTicoyLUFkh4txG_0MQNOmu5LY</td><td class=\"rightBorder\" style=\"vertical-align:top\">NlxYY7w1UGU</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">71295598</td><td style=\"vertical-align:top\">1802779</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">10584</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">Q67yQ0pUV-znSzbLJl8rmcjIWlA</td><td class=\"rightBorder\" style=\"vertical-align:top\">Yy0DVnqKHuI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">8123734</td><td style=\"vertical-align:top\">55073</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">20</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">7BwOD9HqhKwwq3P1u7v3biv7dG0</td><td class=\"rightBorder\" style=\"vertical-align:top\">tT377yJJg38</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">444649648</td><td style=\"vertical-align:top\">9100453</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">13585</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\">50</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">youtube#videoListResponse</td><td style=\"vertical-align:top\">D8EsZXaxDIYLLyim0rtIJqtUEzs</td><td class=\"rightBorder\" style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281141\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">statistics</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">q8u8R5aCj3Mps4a6GkrSYHukgq8</td><td class=\"rightBorder\" style=\"vertical-align:top\">4kyJvjssTko</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">10593</td><td style=\"vertical-align:top\">965</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">13</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">Ysb6cdDDFuR_NIWbFsB2sXay6zo</td><td class=\"rightBorder\" style=\"vertical-align:top\">vaoC5C7f1Lk</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">10735648</td><td style=\"vertical-align:top\">650573</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">6317</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">oT65CQ3V6KxXotLCKC5HpXS7gow</td><td class=\"rightBorder\" style=\"vertical-align:top\">vMr3Gvjc5sI</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">37642</td><td style=\"vertical-align:top\">104</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">qDb8WinqsLo2A5NvckRj6joxygA</td><td class=\"rightBorder\" style=\"vertical-align:top\">mHiMcv9Md84</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">235453777</td><td style=\"vertical-align:top\">7521527</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">11855</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">dBLZiBVOU7ySHxmEKzNDzOD-5-M</td><td class=\"rightBorder\" style=\"vertical-align:top\">5gRGKxgD_tY</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">16557316</td><td style=\"vertical-align:top\">192783</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">8330</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\">50</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">youtube#videoListResponse</td><td style=\"vertical-align:top\">DUSxQ2r0DW0lRu9UhVIBi9Q7FYQ</td><td class=\"rightBorder\" style=\"vertical-align:top\"><details><summary>DataFrame [50 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281142\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">statistics</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">gqHnIAu6z5DHRGQ-GMgGvtjRtus</td><td class=\"rightBorder\" style=\"vertical-align:top\">kwLnfRJB6pg</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">3782</td><td style=\"vertical-align:top\">222</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">0</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">teEHxMi3qz6UH0jWpt7f1LVQcuE</td><td class=\"rightBorder\" style=\"vertical-align:top\">oMvE7gimZes</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">796043</td><td style=\"vertical-align:top\">21262</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">82</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">4xh3ZvktjYOgt7mFdpkJo7Ma0Ws</td><td class=\"rightBorder\" style=\"vertical-align:top\">stO-TG6u2BM</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">6454552</td><td style=\"vertical-align:top\">48601</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">8</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">ULgtBmyx7OOltjc8IKTk1AA8lOs</td><td class=\"rightBorder\" style=\"vertical-align:top\">IMkw2thL6k0</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">42812176</td><td style=\"vertical-align:top\">662752</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1110</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">ynKShHWO2UWRHVE68aqnSZD4NHY</td><td class=\"rightBorder\" style=\"vertical-align:top\">iKL4GlHoZm4</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">702630</td><td style=\"vertical-align:top\">27951</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">221</td></tr></tbody></table><p>... showing only top 5 of 50 rows</p></details></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">50</td><td style=\"vertical-align:top\">50</td></tr><tr><td class=\"rightBorder\" style=\"vertical-align:top\">youtube#videoListResponse</td><td style=\"vertical-align:top\">YbFuapJqhyJ-96DMcokZ3WvfiKQ</td><td class=\"rightBorder\" style=\"vertical-align:top\"><details><summary>DataFrame [32 x 4]</summary><table class=\"dataframe\" id=\"static_df_1560281143\"><thead><tr><th style=\"text-align:left\">kind</th><th style=\"text-align:left\">etag</th><th class=\"rightBorder\" style=\"text-align:left\">id</th><th class=\"rightBorder leftBorder\" style=\"text-align:left\">statistics</th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th><th style=\"text-align:left\"></th></tr><tr><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder\" style=\"text-align:left\"></th><th class=\"bottomBorder rightBorder leftBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">Kbc1liTsvVnakeW_DlXE2FfJ3fY</td><td class=\"rightBorder\" style=\"vertical-align:top\">jWVYL8p9550</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">14500049</td><td style=\"vertical-align:top\">98685</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">30</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">BEzAF8MusOs4FnR8Ig_E8_xKxV0</td><td class=\"rightBorder\" style=\"vertical-align:top\">Mgbgeyz4fPE</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">16822697</td><td style=\"vertical-align:top\">475844</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">2075</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">0uUiRHuvqnCgt3m0kWGkfKdkzRY</td><td class=\"rightBorder\" style=\"vertical-align:top\">AlMEuWl912Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">6570809</td><td style=\"vertical-align:top\">489895</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">3930</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">mEm1UsNNBqpmhfl_V8_3UCvuPVA</td><td class=\"rightBorder\" style=\"vertical-align:top\">g2KJRwjUg9Q</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">285533199</td><td style=\"vertical-align:top\">823927</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">null</td></tr><tr><td style=\"vertical-align:top\">youtube#video</td><td style=\"vertical-align:top\">tfKnbvePbxIpTxZQAtoMLX17PGU</td><td class=\"rightBorder\" style=\"vertical-align:top\">peQHKk3jAeo</td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">125515836</td><td style=\"vertical-align:top\">4445495</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">16604</td></tr></tbody></table><p>... showing only top 5 of 32 rows</p></details></td><td class=\"rightBorder leftBorder\" style=\"vertical-align:top\">32</td><td style=\"vertical-align:top\">32</td></tr></tbody></table>\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" document.getElementById(\"static_df_1560281138\").style.display = \"none\";\n",
|
||
" </script>\n",
|
||
" </html>"
|
||
],
|
||
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"id\"],\"types\":[{\"kind\":\"ColumnGroup\"}],\"nrow\":5,\"ncol\":1},\"kotlin_dataframe\":[{\"id\":{\"data\":{\"kind\":\"youtube#videoListResponse\",\"etag\":\"si8jURGAyE8nJdcsPVQ_zmnnFtA\",\"items\":{\"data\":[{\"kind\":\"youtube#video\",\"etag\":\"NPemCfyy7gnv4pTM231EcuQwKfg\",\"id\":\"y0sF5xhGreA\",\"statistics\":{\"data\":{\"viewCount\":\"18909559\",\"likeCount\":\"65910\",\"favoriteCount\":\"0\",\"commentCount\":\"2520\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"nf9LCeR5y5dadtIGPZrZC6h2i34\",\"id\":\"tpiyEe_CqB4\",\"statistics\":{\"data\":{\"viewCount\":\"15055970\",\"likeCount\":\"105244\",\"favoriteCount\":\"0\",\"commentCount\":\"5750\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"LqOqjW2s86I9ohCgwVWapCy7c34\",\"id\":\"wdjpworLSk8\",\"statistics\":{\"data\":{\"viewCount\":\"120508334\",\"likeCount\":\"1907714\",\"favoriteCount\":\"0\",\"commentCount\":\"7049\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"_xzjHgolqrY2Oe163SpKSscBESE\",\"id\":\"MlDtL2hIj-Q\",\"statistics\":{\"data\":{\"viewCount\":\"1371373\",\"likeCount\":\"5922\",\"favoriteCount\":\"0\",\"commentCount\":\"253\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"lfsa5_RoMR-MoqwpGrVbpSuRaKY\",\"id\":\"1UgJI6O8T2U\",\"statistics\":{\"data\":{\"viewCount\":\"15684154\",\"likeCount\":\"167360\",\"favoriteCount\":\"0\",\"commentCount\":\"1183\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"qFC_5WkhaaJVaSYH8HfIkQDjAYk\",\"id\":\"cytJLvf-eVs\",\"statistics\":{\"data\":{\"viewCount\":\"37184151\",\"likeCount\":\"249829\",\"favoriteCount\":\"0\",\"commentCount\":\"5147\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"SvzZQYEW0qnahwUzhj0GarDz3jg\",\"id\":\"ASFCURj-2hQ\",\"statistics\":{\"data\":{\"viewCount\":\"104732562\",\"likeCount\":null,\"favoriteCount\":\"0\",\"commentCount\":\"2161\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Nk2XmCBOeJB9Ojv2-Q914NO1oHc\",\"id\":\"8iY66B5NB2w\",\"statistics\":{\"data\":{\"viewCount\":\"2534065\",\"likeCount\":\"18949\",\"favoriteCount\":\"0\",\"commentCount\":\"611\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"-6_JM4fW64wwL0_cbEE2l1Ts09Y\",\"id\":\"1TsaNbWEckk\",\"statistics\":{\"data\":{\"viewCount\":\"1781\",\"likeCount\":\"21\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ByfBRzk16thUv2obnj0QguABdVM\",\"id\":\"3URtTIdnXIk\",\"statistics\":{\"data\":{\"viewCount\":\"882603\",\"likeCount\":\"4336\",\"favoriteCount\":\"0\",\"commentCount\":\"197\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"cwzrcqifrt5-bqSPs7k5LTDJZhI\",\"id\":\"afm0c53xO2o\",\"statistics\":{\"data\":{\"viewCount\":\"80092074\",\"likeCount\":\"1838343\",\"favoriteCount\":\"0\",\"commentCount\":\"3688\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"bdb0OGITDwFcBGbojckRKoZJCOQ\",\"id\":\"2M1AFRWPpy8\",\"statistics\":{\"data\":{\"viewCount\":\"156002206\",\"likeCount\":\"1436526\",\"favoriteCount\":\"0\",\"commentCount\":\"839\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"JLrPwmLNgobFU_iDz5fzGNFNtag\",\"id\":\"o0Dvesp0lQU\",\"statistics\":{\"data\":{\"viewCount\":\"2574039\",\"likeCount\":\"97428\",\"favoriteCount\":\"0\",\"commentCount\":\"403\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"m8JEgUviblFsV2obece5TYVVzg4\",\"id\":\"NsMKvVdEPkw\",\"statistics\":{\"data\":{\"viewCount\":\"371948067\",\"likeCount\":\"3755234\",\"favoriteCount\":\"0\",\"commentCount\":\"13739\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"gJnz3GmzbGNpoccK-_M8EdmPqQs\",\"id\":\"a7K-kWT_C2A\",\"statistics\":{\"data\":{\"viewCount\":\"86752254\",\"likeCount\":\"3150171\",\"favoriteCount\":\"0\",\"commentCount\":\"18229\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"TMVhimLrkR3wgcXrqCi-BDV6sE4\",\"id\":\"BOK8T1HK4S8\",\"statistics\":{\"data\":{\"viewCount\":\"555221\",\"likeCount\":null,\"favoriteCount\":\"0\",\"commentCount\":\"131\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"9tx9nxj-89GvtNBra5uuxsJYFoY\",\"id\":\"RFMuw3xpmFE\",\"statistics\":{\"data\":{\"viewCount\":\"2948360\",\"likeCount\":\"13561\",\"favoriteCount\":\"0\",\"commentCount\":\"706\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"xG2rYA1xcNN434Jyy0ezgBJie-U\",\"id\":\"Po098TRdOn4\",\"statistics\":{\"data\":{\"viewCount\":\"57103131\",\"likeCount\":\"910323\",\"favoriteCount\":\"0\",\"commentCount\":\"3835\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ml-Qrdib1dqvZHjOfz6ltwWvAMI\",\"id\":\"DrpvkCRE2P4\",\"statistics\":{\"data\":{\"viewCount\":\"81447629\",\"likeCount\":\"1256778\",\"favoriteCount\":\"0\",\"commentCount\":\"6520\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"pvdmsqQQwB0dzLXOlAlTqOZkQS0\",\"id\":\"OQoukB1VB5k\",\"statistics\":{\"data\":{\"viewCount\":\"88424540\",\"likeCount\":\"908480\",\"favoriteCount\":\"0\",\"commentCount\":\"1895\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"statistics\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"pageInfo\":{\"data\":{\"totalResults\":50,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"etag\",\"items\",\"pageInfo\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ColumnGroup\"}]}}},{\"id\":{\"data\":{\"kind\":\"youtube#videoListResponse\",\"etag\":\"CAK8IKfEw7jZeCXZv7ecMv2KmsM\",\"items\":{\"data\":[{\"kind\":\"youtube#video\",\"etag\":\"EzixDnuMfhJNipb5bri_RUB-drc\",\"id\":\"28O4PxyCG9E\",\"statistics\":{\"data\":{\"viewCount\":\"99885747\",\"likeCount\":\"3611073\",\"favoriteCount\":\"0\",\"commentCount\":\"167837\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"t-mVQN7JWlEWKzCkOQtfHfcs5tM\",\"id\":\"8E6NNlyMG8U\",\"statistics\":{\"data\":{\"viewCount\":\"20745861\",\"likeCount\":\"392698\",\"favoriteCount\":\"0\",\"commentCount\":\"1084\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"HKTicoyLUFkh4txG_0MQNOmu5LY\",\"id\":\"NlxYY7w1UGU\",\"statistics\":{\"data\":{\"viewCount\":\"71295598\",\"likeCount\":\"1802779\",\"favoriteCount\":\"0\",\"commentCount\":\"10584\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Q67yQ0pUV-znSzbLJl8rmcjIWlA\",\"id\":\"Yy0DVnqKHuI\",\"statistics\":{\"data\":{\"viewCount\":\"8123734\",\"likeCount\":\"55073\",\"favoriteCount\":\"0\",\"commentCount\":\"20\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"7BwOD9HqhKwwq3P1u7v3biv7dG0\",\"id\":\"tT377yJJg38\",\"statistics\":{\"data\":{\"viewCount\":\"444649648\",\"likeCount\":\"9100453\",\"favoriteCount\":\"0\",\"commentCount\":\"13585\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"CecOM3fLJ3e2UMqF4mbC7wLUeKw\",\"id\":\"Y4GFrpKSL8Y\",\"statistics\":{\"data\":{\"viewCount\":\"511175\",\"likeCount\":null,\"favoriteCount\":\"0\",\"commentCount\":\"75\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Z6cnXhXBAZo7MUlHQrTXXgPnwGM\",\"id\":\"zchD6u1s-jc\",\"statistics\":{\"data\":{\"viewCount\":\"8533754\",\"likeCount\":\"230298\",\"favoriteCount\":\"0\",\"commentCount\":\"1556\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"V0BY3ao6BnnEwYfnB57H6iqFqg4\",\"id\":\"9ImL3zkMx2E\",\"statistics\":{\"data\":{\"viewCount\":\"6071764\",\"likeCount\":\"187053\",\"favoriteCount\":\"0\",\"commentCount\":\"2000\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"By0TUqXtHel-1AR46Zz05FWCT0c\",\"id\":\"3AfETaI8Ias\",\"statistics\":{\"data\":{\"viewCount\":\"23127145\",\"likeCount\":\"1425440\",\"favoriteCount\":\"0\",\"commentCount\":\"11555\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"lgsektZcKk0w8lSv-6lw846bQM8\",\"id\":\"qK9foZqrM2I\",\"statistics\":{\"data\":{\"viewCount\":\"19736473\",\"likeCount\":\"389823\",\"favoriteCount\":\"0\",\"commentCount\":\"941\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"NB8hSrnzInJ8SZn8nDBmjNo3Ys8\",\"id\":\"A-M6s_4qo2Y\",\"statistics\":{\"data\":{\"viewCount\":\"14585648\",\"likeCount\":\"101354\",\"favoriteCount\":\"0\",\"commentCount\":\"106\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"d9FoN3ndfxfZhIGDys9YcICQtZI\",\"id\":\"qA_jwg0cjaU\",\"statistics\":{\"data\":{\"viewCount\":\"1730633\",\"likeCount\":\"56914\",\"favoriteCount\":\"0\",\"commentCount\":\"1645\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"D8OIPDbIlvszJnd3HYWcVtyASe8\",\"id\":\"NvkDYazj_6Q\",\"statistics\":{\"data\":{\"viewCount\":\"6436450\",\"likeCount\":\"26859\",\"favoriteCount\":\"0\",\"commentCount\":\"1557\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ofGcDpyhuAvIAkGabKzqL7V7qpk\",\"id\":\"EM41yq0OUQ4\",\"statistics\":{\"data\":{\"viewCount\":\"4092460\",\"likeCount\":\"65186\",\"favoriteCount\":\"0\",\"commentCount\":\"412\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"SeqV4L9vdPK9l1-5LaXusA26b40\",\"id\":\"XTi0-Y5xhXA\",\"statistics\":{\"data\":{\"viewCount\":\"42352995\",\"likeCount\":\"1041137\",\"favoriteCount\":\"0\",\"commentCount\":\"14445\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Bo_wFa2AmbRyeVqRJE81hJYwtxc\",\"id\":\"FHUbU7ZTIkk\",\"statistics\":{\"data\":{\"viewCount\":\"4600995\",\"likeCount\":\"39501\",\"favoriteCount\":\"0\",\"commentCount\":\"370\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Qtk1tx_sZ2IvI6dJMzFpUd04HKE\",\"id\":\"5ZLlN3JJ5Eg\",\"statistics\":{\"data\":{\"viewCount\":\"35709\",\"likeCount\":\"887\",\"favoriteCount\":\"0\",\"commentCount\":\"9\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"JC_pkwJbPwaaETFOA1PFewq6__c\",\"id\":\"0AwB4ivE-Uw\",\"statistics\":{\"data\":{\"viewCount\":\"33729611\",\"likeCount\":\"226574\",\"favoriteCount\":\"0\",\"commentCount\":\"91\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"3q_FAzgK_3pPIinSioDvVrXg2qk\",\"id\":\"rWrwrI_MtqE\",\"statistics\":{\"data\":{\"viewCount\":\"3289204\",\"likeCount\":null,\"favoriteCount\":\"0\",\"commentCount\":\"18\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"MnfFvM1rSo3tjRiVVksebdlXelY\",\"id\":\"adbGYRuZ5OQ\",\"statistics\":{\"data\":{\"viewCount\":\"27347215\",\"likeCount\":\"273525\",\"favoriteCount\":\"0\",\"commentCount\":\"810\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"statistics\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"pageInfo\":{\"data\":{\"totalResults\":50,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"etag\",\"items\",\"pageInfo\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ColumnGroup\"}]}}},{\"id\":{\"data\":{\"kind\":\"youtube#videoListResponse\",\"etag\":\"D8EsZXaxDIYLLyim0rtIJqtUEzs\",\"items\":{\"data\":[{\"kind\":\"youtube#video\",\"etag\":\"q8u8R5aCj3Mps4a6GkrSYHukgq8\",\"id\":\"4kyJvjssTko\",\"statistics\":{\"data\":{\"viewCount\":\"10593\",\"likeCount\":\"965\",\"favoriteCount\":\"0\",\"commentCount\":\"13\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Ysb6cdDDFuR_NIWbFsB2sXay6zo\",\"id\":\"vaoC5C7f1Lk\",\"statistics\":{\"data\":{\"viewCount\":\"10735648\",\"likeCount\":\"650573\",\"favoriteCount\":\"0\",\"commentCount\":\"6317\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"oT65CQ3V6KxXotLCKC5HpXS7gow\",\"id\":\"vMr3Gvjc5sI\",\"statistics\":{\"data\":{\"viewCount\":\"37642\",\"likeCount\":\"104\",\"favoriteCount\":\"0\",\"commentCount\":\"1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"qDb8WinqsLo2A5NvckRj6joxygA\",\"id\":\"mHiMcv9Md84\",\"statistics\":{\"data\":{\"viewCount\":\"235453777\",\"likeCount\":\"7521527\",\"favoriteCount\":\"0\",\"commentCount\":\"11855\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"dBLZiBVOU7ySHxmEKzNDzOD-5-M\",\"id\":\"5gRGKxgD_tY\",\"statistics\":{\"data\":{\"viewCount\":\"16557316\",\"likeCount\":\"192783\",\"favoriteCount\":\"0\",\"commentCount\":\"8330\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"MUB2QNOmG110VykjjVo18GcD9Sk\",\"id\":\"mGrCV73lBZ0\",\"statistics\":{\"data\":{\"viewCount\":\"136636865\",\"likeCount\":\"5946364\",\"favoriteCount\":\"0\",\"commentCount\":\"9033\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"sgkgir2G75z8RyZY4heU-Ky8biE\",\"id\":\"nEQVO8NaA5g\",\"statistics\":{\"data\":{\"viewCount\":\"9021911\",\"likeCount\":\"306327\",\"favoriteCount\":\"0\",\"commentCount\":\"9566\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"m_HobBop7g_Bwhj4ApLwrtJzBfY\",\"id\":\"_wyIKHAXZFI\",\"statistics\":{\"data\":{\"viewCount\":\"31923429\",\"likeCount\":\"325312\",\"favoriteCount\":\"0\",\"commentCount\":\"39\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Dftq48zrYsZjy_8Ad_JUz10_K0M\",\"id\":\"cJIMjOhhR2g\",\"statistics\":{\"data\":{\"viewCount\":\"1010213\",\"likeCount\":\"8829\",\"favoriteCount\":\"0\",\"commentCount\":\"305\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"LZ5eGpgaIu6h_s0hbyGCOmoK9W4\",\"id\":\"wi4xRzrFX0c\",\"statistics\":{\"data\":{\"viewCount\":\"1645219\",\"likeCount\":\"34040\",\"favoriteCount\":\"0\",\"commentCount\":\"465\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ACUKkVNKlUeZphY5OAtXhBp2GSc\",\"id\":\"91z9VAOfUNw\",\"statistics\":{\"data\":{\"viewCount\":\"8260945\",\"likeCount\":\"538885\",\"favoriteCount\":\"0\",\"commentCount\":\"3208\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"o2BBp0J4Y1h67zVg0En6DXxB2qI\",\"id\":\"RrdKGO012_Y\",\"statistics\":{\"data\":{\"viewCount\":\"89961347\",\"likeCount\":\"2068896\",\"favoriteCount\":\"0\",\"commentCount\":\"10840\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"YPRn-WsaVq54iqxVwJ38Ar_kQ-o\",\"id\":\"tZ-BBAAPYzA\",\"statistics\":{\"data\":{\"viewCount\":\"11543804\",\"likeCount\":\"79805\",\"favoriteCount\":\"0\",\"commentCount\":\"136\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"KqThHrOKNlKvmKa60ZNMSwBzaK4\",\"id\":\"co9UUzg26eI\",\"statistics\":{\"data\":{\"viewCount\":\"35618400\",\"likeCount\":\"1388778\",\"favoriteCount\":\"0\",\"commentCount\":\"16639\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"CjBPiO67DWBsV-C_bQxUAt2frSE\",\"id\":\"JNl0Lx6LY-M\",\"statistics\":{\"data\":{\"viewCount\":\"17510\",\"likeCount\":\"489\",\"favoriteCount\":\"0\",\"commentCount\":\"3\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"E_cKfODggyfwL47EuHUj8ujARCg\",\"id\":\"X-i3lAZlY80\",\"statistics\":{\"data\":{\"viewCount\":\"362063\",\"likeCount\":\"6109\",\"favoriteCount\":\"0\",\"commentCount\":\"86\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"24qLJCCtQPYJBZZfRlmhk9HAWkY\",\"id\":\"2f-PUl5Vl9w\",\"statistics\":{\"data\":{\"viewCount\":\"99594\",\"likeCount\":\"425\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"gyHnbSrSZEDA-KDMVq0xoT68eZ0\",\"id\":\"Kipdk7420e4\",\"statistics\":{\"data\":{\"viewCount\":\"31934\",\"likeCount\":\"108\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"b7tWYwX3hHCOsg5H62QtW1BV0ag\",\"id\":\"dTr2Wj_RVLA\",\"statistics\":{\"data\":{\"viewCount\":\"18316343\",\"likeCount\":\"270590\",\"favoriteCount\":\"0\",\"commentCount\":\"86\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"TdHNJklsdZAJA82oXeVXQJoqthU\",\"id\":\"9xqXMZQ9Zjk\",\"statistics\":{\"data\":{\"viewCount\":\"4846669\",\"likeCount\":\"169886\",\"favoriteCount\":\"0\",\"commentCount\":\"907\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"statistics\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"pageInfo\":{\"data\":{\"totalResults\":50,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"etag\",\"items\",\"pageInfo\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ColumnGroup\"}]}}},{\"id\":{\"data\":{\"kind\":\"youtube#videoListResponse\",\"etag\":\"DUSxQ2r0DW0lRu9UhVIBi9Q7FYQ\",\"items\":{\"data\":[{\"kind\":\"youtube#video\",\"etag\":\"gqHnIAu6z5DHRGQ-GMgGvtjRtus\",\"id\":\"kwLnfRJB6pg\",\"statistics\":{\"data\":{\"viewCount\":\"3782\",\"likeCount\":\"222\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"teEHxMi3qz6UH0jWpt7f1LVQcuE\",\"id\":\"oMvE7gimZes\",\"statistics\":{\"data\":{\"viewCount\":\"796043\",\"likeCount\":\"21262\",\"favoriteCount\":\"0\",\"commentCount\":\"82\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"4xh3ZvktjYOgt7mFdpkJo7Ma0Ws\",\"id\":\"stO-TG6u2BM\",\"statistics\":{\"data\":{\"viewCount\":\"6454552\",\"likeCount\":\"48601\",\"favoriteCount\":\"0\",\"commentCount\":\"8\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ULgtBmyx7OOltjc8IKTk1AA8lOs\",\"id\":\"IMkw2thL6k0\",\"statistics\":{\"data\":{\"viewCount\":\"42812176\",\"likeCount\":\"662752\",\"favoriteCount\":\"0\",\"commentCount\":\"1110\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ynKShHWO2UWRHVE68aqnSZD4NHY\",\"id\":\"iKL4GlHoZm4\",\"statistics\":{\"data\":{\"viewCount\":\"702630\",\"likeCount\":\"27951\",\"favoriteCount\":\"0\",\"commentCount\":\"221\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Hc8MKayMKLDwW_3GBy2s-Si3lEs\",\"id\":\"92rynZr3O80\",\"statistics\":{\"data\":{\"viewCount\":\"6751261\",\"likeCount\":\"45881\",\"favoriteCount\":\"0\",\"commentCount\":\"376\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"OIudHfcGxdKI4luwdX4gZfqfLpQ\",\"id\":\"Xk1JWWdgUqI\",\"statistics\":{\"data\":{\"viewCount\":\"1551352\",\"likeCount\":\"13912\",\"favoriteCount\":\"0\",\"commentCount\":\"19\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"y_w5hhEnsAb4TfB3VoFuzN73Hqk\",\"id\":\"KBMN56WGPS8\",\"statistics\":{\"data\":{\"viewCount\":\"8631576\",\"likeCount\":\"236986\",\"favoriteCount\":\"0\",\"commentCount\":\"338\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"waBaGgteAuTpK1zyl6uMFiueObM\",\"id\":\"CkN63zbewCo\",\"statistics\":{\"data\":{\"viewCount\":\"56486550\",\"likeCount\":\"1735470\",\"favoriteCount\":\"0\",\"commentCount\":\"7730\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"COBjz3DkgHsKYsbGRrOosn0Rn3E\",\"id\":\"dklomBtFzeU\",\"statistics\":{\"data\":{\"viewCount\":\"9228240\",\"likeCount\":\"253863\",\"favoriteCount\":\"0\",\"commentCount\":\"4272\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"GXLpUfKZQqJM7edlhOZNCujScW8\",\"id\":\"JBs0iQcxbsk\",\"statistics\":{\"data\":{\"viewCount\":\"54540834\",\"likeCount\":\"2096230\",\"favoriteCount\":\"0\",\"commentCount\":\"15131\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"ncc94TVJDL5_9Qt2WoQXmjCtWfM\",\"id\":\"ePizt97VWLI\",\"statistics\":{\"data\":{\"viewCount\":\"24119132\",\"likeCount\":\"662927\",\"favoriteCount\":\"0\",\"commentCount\":\"3326\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"tepFQtMqooqOfOtUIMJxj4ciJ6s\",\"id\":\"36mKrkFyi-A\",\"statistics\":{\"data\":{\"viewCount\":\"3986768\",\"likeCount\":\"32907\",\"favoriteCount\":\"0\",\"commentCount\":\"193\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"248MwMgfMfd74eNlDvvKqZgTxBI\",\"id\":\"Q5nArfUCISE\",\"statistics\":{\"data\":{\"viewCount\":\"14153\",\"likeCount\":\"144\",\"favoriteCount\":\"0\",\"commentCount\":\"2\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"l8v3epNY2tUeRGqshWfWHU15Yls\",\"id\":\"T1PMp_p3aKI\",\"statistics\":{\"data\":{\"viewCount\":\"45930617\",\"likeCount\":\"1794505\",\"favoriteCount\":\"0\",\"commentCount\":\"104672\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"y7ZA07kVecuV5gBciBUQS4JeL9E\",\"id\":\"StSVxZ4fxE4\",\"statistics\":{\"data\":{\"viewCount\":\"6782\",\"likeCount\":\"146\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Y-DyVDrZOCtEokFclTcmk_0l2DU\",\"id\":\"LgzqNceUPP0\",\"statistics\":{\"data\":{\"viewCount\":\"3424941\",\"likeCount\":\"213957\",\"favoriteCount\":\"0\",\"commentCount\":\"791\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"OXct2yz0BEA0FshJwuS7JguN_hQ\",\"id\":\"bRzmUfrZlBc\",\"statistics\":{\"data\":{\"viewCount\":\"560195\",\"likeCount\":\"14082\",\"favoriteCount\":\"0\",\"commentCount\":\"173\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"qSm-tWS2a_6Mwxx0ikhR_hkJLnk\",\"id\":\"uiyipJ99P_A\",\"statistics\":{\"data\":{\"viewCount\":\"1366083\",\"likeCount\":\"39079\",\"favoriteCount\":\"0\",\"commentCount\":\"363\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"jr3Gttip6CBgEUiHcopE3rUPvoA\",\"id\":\"PpuSotPP1M0\",\"statistics\":{\"data\":{\"viewCount\":\"4604465\",\"likeCount\":\"60860\",\"favoriteCount\":\"0\",\"commentCount\":\"161\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"statistics\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":50}},\"pageInfo\":{\"data\":{\"totalResults\":50,\"resultsPerPage\":50},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"etag\",\"items\",\"pageInfo\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ColumnGroup\"}]}}},{\"id\":{\"data\":{\"kind\":\"youtube#videoListResponse\",\"etag\":\"YbFuapJqhyJ-96DMcokZ3WvfiKQ\",\"items\":{\"data\":[{\"kind\":\"youtube#video\",\"etag\":\"Kbc1liTsvVnakeW_DlXE2FfJ3fY\",\"id\":\"jWVYL8p9550\",\"statistics\":{\"data\":{\"viewCount\":\"14500049\",\"likeCount\":\"98685\",\"favoriteCount\":\"0\",\"commentCount\":\"30\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"BEzAF8MusOs4FnR8Ig_E8_xKxV0\",\"id\":\"Mgbgeyz4fPE\",\"statistics\":{\"data\":{\"viewCount\":\"16822697\",\"likeCount\":\"475844\",\"favoriteCount\":\"0\",\"commentCount\":\"2075\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"0uUiRHuvqnCgt3m0kWGkfKdkzRY\",\"id\":\"AlMEuWl912Q\",\"statistics\":{\"data\":{\"viewCount\":\"6570809\",\"likeCount\":\"489895\",\"favoriteCount\":\"0\",\"commentCount\":\"3930\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"mEm1UsNNBqpmhfl_V8_3UCvuPVA\",\"id\":\"g2KJRwjUg9Q\",\"statistics\":{\"data\":{\"viewCount\":\"285533199\",\"likeCount\":\"823927\",\"favoriteCount\":\"0\",\"commentCount\":null},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"tfKnbvePbxIpTxZQAtoMLX17PGU\",\"id\":\"peQHKk3jAeo\",\"statistics\":{\"data\":{\"viewCount\":\"125515836\",\"likeCount\":\"4445495\",\"favoriteCount\":\"0\",\"commentCount\":\"16604\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"x_RkFz4S4HQQCJ-z5EiYE8zAJtE\",\"id\":\"arUBRy0Rkbw\",\"statistics\":{\"data\":{\"viewCount\":\"40198828\",\"likeCount\":\"891578\",\"favoriteCount\":\"0\",\"commentCount\":\"1351\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"-8msTmnnCBrQygxYv5At6GWOGr8\",\"id\":\"tGO0vUswjRo\",\"statistics\":{\"data\":{\"viewCount\":\"3240\",\"likeCount\":\"150\",\"favoriteCount\":\"0\",\"commentCount\":\"1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"K4N6FEhjUooCMCs3jarVQBTAIio\",\"id\":\"GBN0Y9sA6W8\",\"statistics\":{\"data\":{\"viewCount\":\"40030645\",\"likeCount\":\"142766\",\"favoriteCount\":\"0\",\"commentCount\":\"5357\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"_R-Xeo5OPe6Yqu-BmDyLPb4sZKo\",\"id\":\"O7UKr6DI1VI\",\"statistics\":{\"data\":{\"viewCount\":\"19020235\",\"likeCount\":\"264349\",\"favoriteCount\":\"0\",\"commentCount\":\"164\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"1LiqK9aL1PrHIkCn9hZt7ietayc\",\"id\":\"V7Rrk7pVbSA\",\"statistics\":{\"data\":{\"viewCount\":\"2530636\",\"likeCount\":\"22407\",\"favoriteCount\":\"0\",\"commentCount\":\"1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"LsoM_ZAl6KlhHMRcXTpRt9RXNdk\",\"id\":\"o-F8wZa8uv8\",\"statistics\":{\"data\":{\"viewCount\":\"70531062\",\"likeCount\":\"3025682\",\"favoriteCount\":\"0\",\"commentCount\":\"7842\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"kOG4Pa6xyV-x0uBAJPKruED_dQs\",\"id\":\"WpH2ln8pp2w\",\"statistics\":{\"data\":{\"viewCount\":\"7650478\",\"likeCount\":\"108642\",\"favoriteCount\":\"0\",\"commentCount\":\"33\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Ucx4wtshkbq6jR6owANX1kYBysQ\",\"id\":\"CcFNBwfFkHY\",\"statistics\":{\"data\":{\"viewCount\":\"399787\",\"likeCount\":\"21196\",\"favoriteCount\":\"0\",\"commentCount\":\"159\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"DaT-_F8eYDFTG97Vkg5mp0Rt22g\",\"id\":\"LIgiiAc313U\",\"statistics\":{\"data\":{\"viewCount\":\"25240468\",\"likeCount\":\"1069479\",\"favoriteCount\":\"0\",\"commentCount\":\"5073\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Urg0uyvfRirfSdrkv9jPuokjL6I\",\"id\":\"UB9hoMsPgEI\",\"statistics\":{\"data\":{\"viewCount\":\"9708\",\"likeCount\":\"386\",\"favoriteCount\":\"0\",\"commentCount\":\"7\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"W50m-RYSof6fB6SfDcj8R5dMXRo\",\"id\":\"U5S0zs22z9g\",\"statistics\":{\"data\":{\"viewCount\":\"4565509\",\"likeCount\":\"20795\",\"favoriteCount\":\"0\",\"commentCount\":\"414\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"DLUviD3NHERV8xPEXTzYYU0_RCc\",\"id\":\"ORTR9Jz-dCc\",\"statistics\":{\"data\":{\"viewCount\":\"4913728\",\"likeCount\":\"217651\",\"favoriteCount\":\"0\",\"commentCount\":\"670\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"HbBn8EXPHvOIVelW-YKbk3eQZ80\",\"id\":\"pedELURRt4w\",\"statistics\":{\"data\":{\"viewCount\":\"65674\",\"likeCount\":\"6390\",\"favoriteCount\":\"0\",\"commentCount\":\"99\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"6o-yyYPGNC8SiXDaO4Q2ei93QZo\",\"id\":\"cLRoARi5nQY\",\"statistics\":{\"data\":{\"viewCount\":\"22211\",\"likeCount\":null,\"favoriteCount\":\"0\",\"commentCount\":\"1\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}},{\"kind\":\"youtube#video\",\"etag\":\"Ld6rUwbAw9nxKZieY2CR66BDc9w\",\"id\":\"PP7toELbdqA\",\"statistics\":{\"data\":{\"viewCount\":\"57421135\",\"likeCount\":\"158866\",\"favoriteCount\":\"0\",\"commentCount\":\"0\"},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String?\"}]}}}],\"metadata\":{\"kind\":\"FrameColumn\",\"columns\":[\"kind\",\"etag\",\"id\",\"statistics\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ColumnGroup\"}],\"ncol\":4,\"nrow\":32}},\"pageInfo\":{\"data\":{\"totalResults\":32,\"resultsPerPage\":32},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"totalResults\",\"resultsPerPage\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}]}}},\"metadata\":{\"kind\":\"ColumnGroup\",\"columns\":[\"kind\",\"etag\",\"items\",\"pageInfo\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"FrameColumn\"},{\"kind\":\"ColumnGroup\"}]}}}]}"
|
||
},
|
||
"execution_count": 15,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"execution_count": 15
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:11:31.548465Z",
|
||
"start_time": "2025-05-28T11:11:31.235185Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"val stats = statPages.items.concat().select { id and statistics.allCols() }.parse()\n",
|
||
"stats"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/html": [
|
||
" <iframe onload=\"o_resize_iframe_out_16()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_16\" frameBorder=\"0\" srcdoc=\" <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type="text/css">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
":root {\n",
|
||
" --scroll-bg: #f5f5f5;\n",
|
||
" --scroll-fg: #b3b3b3;\n",
|
||
"}\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"]{\n",
|
||
" --scroll-bg: #3c3c3c;\n",
|
||
" --scroll-fg: #97e1fb;\n",
|
||
"}\n",
|
||
"body {\n",
|
||
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar {\n",
|
||
" width: 10px; /* Mostly for vertical scrollbars */\n",
|
||
" height: 10px; /* Mostly for horizontal scrollbars */\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-thumb {\n",
|
||
" background-color: var(--scroll-fg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-track {\n",
|
||
" background-color: var(--scroll-bg);\n",
|
||
"}\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class="dataframe" id="df_1560281158"></table>\n",
|
||
"\n",
|
||
"<p class="dataframe_description">... showing only top 20 of 232 rows</p><p class="dataframe_description">DataFrame: rowsCount = 232, columnsCount = 5</p>\n",
|
||
"\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" (function () {\n",
|
||
" window.DataFrame = window.DataFrame || new (function () {\n",
|
||
" this.addTable = function (df) {\n",
|
||
" let cols = df.cols;\n",
|
||
" for (let i = 0; i < cols.length; i++) {\n",
|
||
" for (let c of cols[i].children) {\n",
|
||
" cols[c].parent = i;\n",
|
||
" }\n",
|
||
" }\n",
|
||
" df.nrow = 0\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" if (df.cols[i].values.length > df.nrow) df.nrow = df.cols[i].values.length\n",
|
||
" }\n",
|
||
" if (df.id === df.rootId) {\n",
|
||
" df.expandedFrames = new Set()\n",
|
||
" df.childFrames = {}\n",
|
||
" const table = this.getTableElement(df.id)\n",
|
||
" table.df = df\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" let col = df.cols[i]\n",
|
||
" if (col.parent === undefined && col.children.length > 0) col.expanded = true\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" const rootDf = this.getTableData(df.rootId)\n",
|
||
" rootDf.childFrames[df.id] = df\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderData = function (df) {\n",
|
||
" let result = []\n",
|
||
" let pos = 0\n",
|
||
" for (let col = 0; col < df.cols.length; col++) {\n",
|
||
" if (df.cols[col].parent === undefined)\n",
|
||
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
|
||
" }\n",
|
||
" for (let i = 0; i < result.length; i++) {\n",
|
||
" let row = result[i]\n",
|
||
" for (let j = 0; j < row.length; j++) {\n",
|
||
" let cell = row[j]\n",
|
||
" if (j === 0)\n",
|
||
" cell.leftBd = false\n",
|
||
" if (j < row.length - 1) {\n",
|
||
" let nextData = row[j + 1]\n",
|
||
" if (nextData.leftBd) cell.rightBd = true\n",
|
||
" else if (cell.rightBd) nextData.leftBd = true\n",
|
||
" } else cell.rightBd = false\n",
|
||
" }\n",
|
||
" }\n",
|
||
" return result\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
|
||
" if (result.length === depth) {\n",
|
||
" const array = [];\n",
|
||
" if (pos > 0) {\n",
|
||
" let j = 0\n",
|
||
" for (let i = 0; j < pos; i++) {\n",
|
||
" let c = result[depth - 1][i]\n",
|
||
" j += c.span\n",
|
||
" let copy = Object.assign({empty: true}, c)\n",
|
||
" array.push(copy)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" result.push(array)\n",
|
||
" }\n",
|
||
" const col = cols[colId];\n",
|
||
" let size = 0;\n",
|
||
" if (col.expanded) {\n",
|
||
" let childPos = pos\n",
|
||
" for (let i = 0; i < col.children.length; i++) {\n",
|
||
" let child = col.children[i]\n",
|
||
" let childLeft = i === 0 && (col.children.length > 1 || leftBorder)\n",
|
||
" let childRight = i === col.children.length - 1 && (col.children.length > 1 || rightBorder)\n",
|
||
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
|
||
" childPos += childSize\n",
|
||
" size += childSize\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" for (let i = depth + 1; i < result.length; i++)\n",
|
||
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
|
||
" size = 1\n",
|
||
" }\n",
|
||
" let left = leftBorder\n",
|
||
" let right = rightBorder\n",
|
||
" if (size > 1) {\n",
|
||
" left = true\n",
|
||
" right = true\n",
|
||
" }\n",
|
||
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
|
||
" return size\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableElement = function (id) {\n",
|
||
" return document.getElementById("df_" + id)\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableData = function (id) {\n",
|
||
" return this.getTableElement(id).df\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.createExpander = function (isExpanded) {\n",
|
||
" const svgNs = "http://www.w3.org/2000/svg"\n",
|
||
" let svg = document.createElementNS(svgNs, "svg")\n",
|
||
" svg.classList.add("expanderSvg")\n",
|
||
" let path = document.createElementNS(svgNs, "path")\n",
|
||
" if (isExpanded) {\n",
|
||
" svg.setAttribute("viewBox", "0 -2 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z")\n",
|
||
" } else {\n",
|
||
" svg.setAttribute("viewBox", "-2 0 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z")\n",
|
||
" }\n",
|
||
" path.setAttribute("fill", "currentColor")\n",
|
||
" svg.appendChild(path)\n",
|
||
" return svg\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.renderTable = function (id) {\n",
|
||
"\n",
|
||
" let table = this.getTableElement(id)\n",
|
||
"\n",
|
||
" if (table === null) return\n",
|
||
"\n",
|
||
" table.innerHTML = ""\n",
|
||
"\n",
|
||
" let df = table.df\n",
|
||
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
|
||
"\n",
|
||
" // header\n",
|
||
" let header = document.createElement("thead")\n",
|
||
" table.appendChild(header)\n",
|
||
"\n",
|
||
" let renderData = this.computeRenderData(df)\n",
|
||
" for (let j = 0; j < renderData.length; j++) {\n",
|
||
" let rowData = renderData[j]\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" let isLastRow = j === renderData.length - 1\n",
|
||
" header.appendChild(tr);\n",
|
||
" for (let i = 0; i < rowData.length; i++) {\n",
|
||
" let cell = rowData[i]\n",
|
||
" let th = document.createElement("th");\n",
|
||
" th.setAttribute("colspan", cell.span)\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId];\n",
|
||
" if (!cell.empty) {\n",
|
||
" if (col.children.length === 0) {\n",
|
||
" th.innerHTML = col.name\n",
|
||
" } else {\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" col.expanded = !col.expanded\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(col.expanded))\n",
|
||
" link.innerHTML += col.name\n",
|
||
" th.appendChild(link)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (isLastRow)\n",
|
||
" classes += " bottomBorder"\n",
|
||
" if (classes.length > 0)\n",
|
||
" th.setAttribute("class", classes)\n",
|
||
" tr.appendChild(th)\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" // body\n",
|
||
" let body = document.createElement("tbody")\n",
|
||
" table.appendChild(body)\n",
|
||
"\n",
|
||
" let columns = renderData.pop()\n",
|
||
" for (let row = 0; row < df.nrow; row++) {\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" body.appendChild(tr)\n",
|
||
" for (let i = 0; i < columns.length; i++) {\n",
|
||
" let cell = columns[i]\n",
|
||
" let td = document.createElement("td");\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId]\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (classes.length > 0)\n",
|
||
" td.setAttribute("class", classes)\n",
|
||
" tr.appendChild(td)\n",
|
||
" let value = col.values[row]\n",
|
||
" if (value.frameId !== undefined) {\n",
|
||
" let frameId = value.frameId\n",
|
||
" let expanded = rootDf.expandedFrames.has(frameId)\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" if (rootDf.expandedFrames.has(frameId))\n",
|
||
" rootDf.expandedFrames.delete(frameId)\n",
|
||
" else rootDf.expandedFrames.add(frameId)\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(expanded))\n",
|
||
" link.innerHTML += value.value\n",
|
||
" if (expanded) {\n",
|
||
" td.appendChild(link)\n",
|
||
" td.appendChild(document.createElement("p"))\n",
|
||
" const childTable = document.createElement("table")\n",
|
||
" childTable.className = "dataframe"\n",
|
||
" childTable.id = "df_" + frameId\n",
|
||
" let childDf = rootDf.childFrames[frameId]\n",
|
||
" childTable.df = childDf\n",
|
||
" td.appendChild(childTable)\n",
|
||
" this.renderTable(frameId)\n",
|
||
" if (childDf.nrow !== childDf.totalRows) {\n",
|
||
" const footer = document.createElement("p")\n",
|
||
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
|
||
" td.appendChild(footer)\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" td.appendChild(link)\n",
|
||
" }\n",
|
||
" } else if (value.style !== undefined) {\n",
|
||
" td.innerHTML = value.value\n",
|
||
" td.setAttribute("style", value.style)\n",
|
||
" } else td.innerHTML = value\n",
|
||
" this.nodeScriptReplace(td)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptReplace = function (node) {\n",
|
||
" if (this.nodeScriptIs(node) === true) {\n",
|
||
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
|
||
" } else {\n",
|
||
" let i = -1, children = node.childNodes;\n",
|
||
" while (++i < children.length) {\n",
|
||
" this.nodeScriptReplace(children[i]);\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" return node;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptClone = function (node) {\n",
|
||
" let script = document.createElement("script");\n",
|
||
" script.text = node.innerHTML;\n",
|
||
"\n",
|
||
" let i = -1, attrs = node.attributes, attr;\n",
|
||
" while (++i < attrs.length) {\n",
|
||
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
|
||
" }\n",
|
||
" return script;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptIs = function (node) {\n",
|
||
" return node.tagName === 'SCRIPT';\n",
|
||
" }\n",
|
||
" })()\n",
|
||
"\n",
|
||
" window.call_DataFrame = function (f) {\n",
|
||
" return f();\n",
|
||
" };\n",
|
||
"\n",
|
||
" let funQueue = window["kotlinQueues"] && window["kotlinQueues"]["DataFrame"];\n",
|
||
" if (funQueue) {\n",
|
||
" funQueue.forEach(function (f) {\n",
|
||
" f();\n",
|
||
" });\n",
|
||
" funQueue = [];\n",
|
||
" }\n",
|
||
"})()\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"id: String\">id</span>", children: [], rightAlign: false, values: ["y0sF5xhGreA","tpiyEe_CqB4","wdjpworLSk8","MlDtL2hIj-Q","1UgJI6O8T2U","cytJLvf-eVs","ASFCURj-2hQ","8iY66B5NB2w","1TsaNbWEckk","3URtTIdnXIk","afm0c53xO2o","2M1AFRWPpy8","o0Dvesp0lQU","NsMKvVdEPkw","a7K-kWT_C2A","BOK8T1HK4S8","RFMuw3xpmFE","Po098TRdOn4","DrpvkCRE2P4","OQoukB1VB5k"] }, \n",
|
||
"{ name: "<span title=\"viewCount: Int\">viewCount</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">18909559</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">15055970</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120508334</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1371373</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">15684154</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">37184151</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">104732562</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2534065</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1781</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">882603</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">80092074</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">156002206</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2574039</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">371948067</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">86752254</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">555221</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2948360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">57103131</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">81447629</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">88424540</span></span>"] }, \n",
|
||
"{ name: "<span title=\"likeCount: Int?\">likeCount</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">65910</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">105244</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1907714</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5922</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">167360</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">249829</span></span>","<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">18949</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">21</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">4336</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1838343</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1436526</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">97428</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3755234</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3150171</span></span>","<span class=\"formatted\" title=\"\"><span class=\"null\">null</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">13561</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">910323</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1256778</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">908480</span></span>"] }, \n",
|
||
"{ name: "<span title=\"favoriteCount: Int\">favoriteCount</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>"] }, \n",
|
||
"{ name: "<span title=\"commentCount: Int?\">commentCount</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">2520</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5750</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">7049</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">253</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1183</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5147</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">2161</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">611</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">197</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3688</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">839</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">403</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">13739</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">18229</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">131</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">706</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">3835</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">6520</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1895</span></span>"] }, \n",
|
||
"], id: 1560281158, rootId: 1560281158, totalRows: 232 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"call_DataFrame(function() { DataFrame.renderTable(1560281158) });\n",
|
||
"\n",
|
||
"\n",
|
||
" </script>\n",
|
||
" </html>\"></iframe>\n",
|
||
" <script>\n",
|
||
" function o_resize_iframe_out_16() {\n",
|
||
" let elem = document.getElementById(\"iframe_out_16\");\n",
|
||
" resize_iframe_out_16(elem);\n",
|
||
" setInterval(resize_iframe_out_16, 5000, elem);\n",
|
||
" }\n",
|
||
" function resize_iframe_out_16(el) {\n",
|
||
" let h = el.contentWindow.document.body.scrollHeight;\n",
|
||
" el.height = h === 0 ? 0 : h + 41;\n",
|
||
" }\n",
|
||
" </script> <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type=\"text/css\">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class=\"dataframe\" id=\"static_df_1560281159\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">id</th><th class=\"bottomBorder\" style=\"text-align:left\">viewCount</th><th class=\"bottomBorder\" style=\"text-align:left\">likeCount</th><th class=\"bottomBorder\" style=\"text-align:left\">favoriteCount</th><th class=\"bottomBorder\" style=\"text-align:left\">commentCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">y0sF5xhGreA</td><td style=\"vertical-align:top\">18909559</td><td style=\"vertical-align:top\">65910</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">2520</td></tr><tr><td style=\"vertical-align:top\">tpiyEe_CqB4</td><td style=\"vertical-align:top\">15055970</td><td style=\"vertical-align:top\">105244</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">5750</td></tr><tr><td style=\"vertical-align:top\">wdjpworLSk8</td><td style=\"vertical-align:top\">120508334</td><td style=\"vertical-align:top\">1907714</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">7049</td></tr><tr><td style=\"vertical-align:top\">MlDtL2hIj-Q</td><td style=\"vertical-align:top\">1371373</td><td style=\"vertical-align:top\">5922</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">253</td></tr><tr><td style=\"vertical-align:top\">1UgJI6O8T2U</td><td style=\"vertical-align:top\">15684154</td><td style=\"vertical-align:top\">167360</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1183</td></tr><tr><td style=\"vertical-align:top\">cytJLvf-eVs</td><td style=\"vertical-align:top\">37184151</td><td style=\"vertical-align:top\">249829</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">5147</td></tr><tr><td style=\"vertical-align:top\">ASFCURj-2hQ</td><td style=\"vertical-align:top\">104732562</td><td style=\"vertical-align:top\">null</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">2161</td></tr><tr><td style=\"vertical-align:top\">8iY66B5NB2w</td><td style=\"vertical-align:top\">2534065</td><td style=\"vertical-align:top\">18949</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">611</td></tr><tr><td style=\"vertical-align:top\">1TsaNbWEckk</td><td style=\"vertical-align:top\">1781</td><td style=\"vertical-align:top\">21</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">0</td></tr><tr><td style=\"vertical-align:top\">3URtTIdnXIk</td><td style=\"vertical-align:top\">882603</td><td style=\"vertical-align:top\">4336</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">197</td></tr><tr><td style=\"vertical-align:top\">afm0c53xO2o</td><td style=\"vertical-align:top\">80092074</td><td style=\"vertical-align:top\">1838343</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">3688</td></tr><tr><td style=\"vertical-align:top\">2M1AFRWPpy8</td><td style=\"vertical-align:top\">156002206</td><td style=\"vertical-align:top\">1436526</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">839</td></tr><tr><td style=\"vertical-align:top\">o0Dvesp0lQU</td><td style=\"vertical-align:top\">2574039</td><td style=\"vertical-align:top\">97428</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">403</td></tr><tr><td style=\"vertical-align:top\">NsMKvVdEPkw</td><td style=\"vertical-align:top\">371948067</td><td style=\"vertical-align:top\">3755234</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">13739</td></tr><tr><td style=\"vertical-align:top\">a7K-kWT_C2A</td><td style=\"vertical-align:top\">86752254</td><td style=\"vertical-align:top\">3150171</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">18229</td></tr><tr><td style=\"vertical-align:top\">BOK8T1HK4S8</td><td style=\"vertical-align:top\">555221</td><td style=\"vertical-align:top\">null</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">131</td></tr><tr><td style=\"vertical-align:top\">RFMuw3xpmFE</td><td style=\"vertical-align:top\">2948360</td><td style=\"vertical-align:top\">13561</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">706</td></tr><tr><td style=\"vertical-align:top\">Po098TRdOn4</td><td style=\"vertical-align:top\">57103131</td><td style=\"vertical-align:top\">910323</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">3835</td></tr><tr><td style=\"vertical-align:top\">DrpvkCRE2P4</td><td style=\"vertical-align:top\">81447629</td><td style=\"vertical-align:top\">1256778</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">6520</td></tr><tr><td style=\"vertical-align:top\">OQoukB1VB5k</td><td style=\"vertical-align:top\">88424540</td><td style=\"vertical-align:top\">908480</td><td style=\"vertical-align:top\">0</td><td style=\"vertical-align:top\">1895</td></tr></tbody></table>\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" document.getElementById(\"static_df_1560281159\").style.display = \"none\";\n",
|
||
" </script>\n",
|
||
" </html>"
|
||
],
|
||
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"id\",\"viewCount\",\"likeCount\",\"favoriteCount\",\"commentCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int?\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int?\"}],\"nrow\":232,\"ncol\":5},\"kotlin_dataframe\":[{\"id\":\"y0sF5xhGreA\",\"viewCount\":18909559,\"likeCount\":65910,\"favoriteCount\":0,\"commentCount\":2520},{\"id\":\"tpiyEe_CqB4\",\"viewCount\":15055970,\"likeCount\":105244,\"favoriteCount\":0,\"commentCount\":5750},{\"id\":\"wdjpworLSk8\",\"viewCount\":120508334,\"likeCount\":1907714,\"favoriteCount\":0,\"commentCount\":7049},{\"id\":\"MlDtL2hIj-Q\",\"viewCount\":1371373,\"likeCount\":5922,\"favoriteCount\":0,\"commentCount\":253},{\"id\":\"1UgJI6O8T2U\",\"viewCount\":15684154,\"likeCount\":167360,\"favoriteCount\":0,\"commentCount\":1183},{\"id\":\"cytJLvf-eVs\",\"viewCount\":37184151,\"likeCount\":249829,\"favoriteCount\":0,\"commentCount\":5147},{\"id\":\"ASFCURj-2hQ\",\"viewCount\":104732562,\"likeCount\":null,\"favoriteCount\":0,\"commentCount\":2161},{\"id\":\"8iY66B5NB2w\",\"viewCount\":2534065,\"likeCount\":18949,\"favoriteCount\":0,\"commentCount\":611},{\"id\":\"1TsaNbWEckk\",\"viewCount\":1781,\"likeCount\":21,\"favoriteCount\":0,\"commentCount\":0},{\"id\":\"3URtTIdnXIk\",\"viewCount\":882603,\"likeCount\":4336,\"favoriteCount\":0,\"commentCount\":197},{\"id\":\"afm0c53xO2o\",\"viewCount\":80092074,\"likeCount\":1838343,\"favoriteCount\":0,\"commentCount\":3688},{\"id\":\"2M1AFRWPpy8\",\"viewCount\":156002206,\"likeCount\":1436526,\"favoriteCount\":0,\"commentCount\":839},{\"id\":\"o0Dvesp0lQU\",\"viewCount\":2574039,\"likeCount\":97428,\"favoriteCount\":0,\"commentCount\":403},{\"id\":\"NsMKvVdEPkw\",\"viewCount\":371948067,\"likeCount\":3755234,\"favoriteCount\":0,\"commentCount\":13739},{\"id\":\"a7K-kWT_C2A\",\"viewCount\":86752254,\"likeCount\":3150171,\"favoriteCount\":0,\"commentCount\":18229},{\"id\":\"BOK8T1HK4S8\",\"viewCount\":555221,\"likeCount\":null,\"favoriteCount\":0,\"commentCount\":131},{\"id\":\"RFMuw3xpmFE\",\"viewCount\":2948360,\"likeCount\":13561,\"favoriteCount\":0,\"commentCount\":706},{\"id\":\"Po098TRdOn4\",\"viewCount\":57103131,\"likeCount\":910323,\"favoriteCount\":0,\"commentCount\":3835},{\"id\":\"DrpvkCRE2P4\",\"viewCount\":81447629,\"likeCount\":1256778,\"favoriteCount\":0,\"commentCount\":6520},{\"id\":\"OQoukB1VB5k\",\"viewCount\":88424540,\"likeCount\":908480,\"favoriteCount\":0,\"commentCount\":1895}]}"
|
||
},
|
||
"execution_count": 16,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"execution_count": 16
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:11:47.475475Z",
|
||
"start_time": "2025-05-28T11:11:47.242097Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"val joined = clean.join(stats)\n",
|
||
"\n",
|
||
"joined.head().toHtml()"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/html": [
|
||
" <iframe onload=\"o_resize_iframe_out_20()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_20\" frameBorder=\"0\" srcdoc=\" <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type="text/css">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
":root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
":root {\n",
|
||
" --scroll-bg: #f5f5f5;\n",
|
||
" --scroll-fg: #b3b3b3;\n",
|
||
"}\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"]{\n",
|
||
" --scroll-bg: #3c3c3c;\n",
|
||
" --scroll-fg: #97e1fb;\n",
|
||
"}\n",
|
||
"body {\n",
|
||
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar {\n",
|
||
" width: 10px; /* Mostly for vertical scrollbars */\n",
|
||
" height: 10px; /* Mostly for horizontal scrollbars */\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-thumb {\n",
|
||
" background-color: var(--scroll-fg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-track {\n",
|
||
" background-color: var(--scroll-bg);\n",
|
||
"}\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class="dataframe" id="df_1560281166"></table>\n",
|
||
"\n",
|
||
"<table class="dataframe" id="static_df_1560281167"><thead><tr><th style="text-align:left">id</th><th style="text-align:left">title</th><th class="rightBorder" style="text-align:left">publishedAt</th><th class="leftBorder" style="text-align:left">channel</th><th class="rightBorder" style="text-align:left"></th><th style="text-align:left">video</th><th style="text-align:left">viewCount</th><th style="text-align:left">likeCount</th><th style="text-align:left">favoriteCount</th><th style="text-align:left">commentCount</th></tr><tr><th class="bottomBorder" style="text-align:left"></th><th class="bottomBorder" style="text-align:left"></th><th class="bottomBorder rightBorder" style="text-align:left"></th><th class="bottomBorder leftBorder" style="text-align:left">channelId</th><th class="bottomBorder rightBorder" style="text-align:left">channelTitle</th><th class="bottomBorder" style="text-align:left"></th><th class="bottomBorder" style="text-align:left"></th><th class="bottomBorder" style="text-align:left"></th><th class="bottomBorder" style="text-align:left"></th><th class="bottomBorder" style="text-align:left"></th></tr></thead><tbody><tr><td style="vertical-align:top">y0sF5xhGreA</td><td style="vertical-align:top">20 Minutes of Adorable Kittens &#55357;&#56845; | B<span class="structural">...</span></td><td class="rightBorder" style="vertical-align:top">2023-05-28T13:00:44Z</td><td class="leftBorder" style="vertical-align:top">UCPIvT-zcQl2H0vabdXJGcpg</td><td class="rightBorder" style="vertical-align:top">The Pet Collective</td><td style="vertical-align:top">&#60;iframe src=&#34;https://www.youtube.com/<span class="structural">...</span></td><td style="vertical-align:top">18909559</td><td style="vertical-align:top">65910</td><td style="vertical-align:top">0</td><td style="vertical-align:top">2520</td></tr><tr><td style="vertical-align:top">tpiyEe_CqB4</td><td style="vertical-align:top">Cute and Funny Cat Videos to Keep You<span class="structural">...</span></td><td class="rightBorder" style="vertical-align:top">2020-04-10T16:00:28Z</td><td class="leftBorder" style="vertical-align:top">UCzn2gx8zzhF0A4Utk8TEDNQ</td><td class="rightBorder" style="vertical-align:top">Rufus</td><td style="vertical-align:top">&#60;iframe src=&#34;https://www.youtube.com/<span class="structural">...</span></td><td style="vertical-align:top">15055970</td><td style="vertical-align:top">105244</td><td style="vertical-align:top">0</td><td style="vertical-align:top">5750</td></tr><tr><td style="vertical-align:top">wdjpworLSk8</td><td style="vertical-align:top">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class="structural">...</span></td><td class="rightBorder" style="vertical-align:top">2023-09-15T22:02:00Z</td><td class="leftBorder" style="vertical-align:top">UCQQcnrcfQbWvCl2lBvF5hoQ</td><td class="rightBorder" style="vertical-align:top"> Cute Cat&#55357;&#56369;</td><td style="vertical-align:top">&#60;iframe src=&#34;https://www.youtube.com/<span class="structural">...</span></td><td style="vertical-align:top">120508334</td><td style="vertical-align:top">1907714</td><td style="vertical-align:top">0</td><td style="vertical-align:top">7049</td></tr><tr><td style="vertical-align:top">MlDtL2hIj-Q</td><td style="vertical-align:top">30 Minutes of the Worlds CUTEST Kitte<span class="structural">...</span></td><td class="rightBorder" style="vertical-align:top">2023-11-19T19:00:10Z</td><td class="leftBorder" style="vertical-align:top">UCPIvT-zcQl2H0vabdXJGcpg</td><td class="rightBorder" style="vertical-align:top">The Pet Collective</td><td style="vertical-align:top">&#60;iframe src=&#34;https://www.youtube.com/<span class="structural">...</span></td><td style="vertical-align:top">1371373</td><td style="vertical-align:top">5922</td><td style="vertical-align:top">0</td><td style="vertical-align:top">253</td></tr><tr><td style="vertical-align:top">1UgJI6O8T2U</td><td style="vertical-align:top">&#55357;&#56369; Funny cat videos | cute cats | Try<span class="structural">...</span></td><td class="rightBorder" style="vertical-align:top">2025-01-14T04:24:22Z</td><td class="leftBorder" style="vertical-align:top">UCkgRhUW4sHt6bQ32dNiQVVg</td><td class="rightBorder" style="vertical-align:top">Dancing Cat</td><td style="vertical-align:top">&#60;iframe src=&#34;https://www.youtube.com/<span class="structural">...</span></td><td style="vertical-align:top">15684154</td><td style="vertical-align:top">167360</td><td style="vertical-align:top">0</td><td style="vertical-align:top">1183</td></tr></tbody></table>\n",
|
||
"<p class="dataframe_description">DataFrame [5 x 9]</p>\n",
|
||
"\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" (function () {\n",
|
||
" window.DataFrame = window.DataFrame || new (function () {\n",
|
||
" this.addTable = function (df) {\n",
|
||
" let cols = df.cols;\n",
|
||
" for (let i = 0; i < cols.length; i++) {\n",
|
||
" for (let c of cols[i].children) {\n",
|
||
" cols[c].parent = i;\n",
|
||
" }\n",
|
||
" }\n",
|
||
" df.nrow = 0\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" if (df.cols[i].values.length > df.nrow) df.nrow = df.cols[i].values.length\n",
|
||
" }\n",
|
||
" if (df.id === df.rootId) {\n",
|
||
" df.expandedFrames = new Set()\n",
|
||
" df.childFrames = {}\n",
|
||
" const table = this.getTableElement(df.id)\n",
|
||
" table.df = df\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" let col = df.cols[i]\n",
|
||
" if (col.parent === undefined && col.children.length > 0) col.expanded = true\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" const rootDf = this.getTableData(df.rootId)\n",
|
||
" rootDf.childFrames[df.id] = df\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderData = function (df) {\n",
|
||
" let result = []\n",
|
||
" let pos = 0\n",
|
||
" for (let col = 0; col < df.cols.length; col++) {\n",
|
||
" if (df.cols[col].parent === undefined)\n",
|
||
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
|
||
" }\n",
|
||
" for (let i = 0; i < result.length; i++) {\n",
|
||
" let row = result[i]\n",
|
||
" for (let j = 0; j < row.length; j++) {\n",
|
||
" let cell = row[j]\n",
|
||
" if (j === 0)\n",
|
||
" cell.leftBd = false\n",
|
||
" if (j < row.length - 1) {\n",
|
||
" let nextData = row[j + 1]\n",
|
||
" if (nextData.leftBd) cell.rightBd = true\n",
|
||
" else if (cell.rightBd) nextData.leftBd = true\n",
|
||
" } else cell.rightBd = false\n",
|
||
" }\n",
|
||
" }\n",
|
||
" return result\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
|
||
" if (result.length === depth) {\n",
|
||
" const array = [];\n",
|
||
" if (pos > 0) {\n",
|
||
" let j = 0\n",
|
||
" for (let i = 0; j < pos; i++) {\n",
|
||
" let c = result[depth - 1][i]\n",
|
||
" j += c.span\n",
|
||
" let copy = Object.assign({empty: true}, c)\n",
|
||
" array.push(copy)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" result.push(array)\n",
|
||
" }\n",
|
||
" const col = cols[colId];\n",
|
||
" let size = 0;\n",
|
||
" if (col.expanded) {\n",
|
||
" let childPos = pos\n",
|
||
" for (let i = 0; i < col.children.length; i++) {\n",
|
||
" let child = col.children[i]\n",
|
||
" let childLeft = i === 0 && (col.children.length > 1 || leftBorder)\n",
|
||
" let childRight = i === col.children.length - 1 && (col.children.length > 1 || rightBorder)\n",
|
||
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
|
||
" childPos += childSize\n",
|
||
" size += childSize\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" for (let i = depth + 1; i < result.length; i++)\n",
|
||
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
|
||
" size = 1\n",
|
||
" }\n",
|
||
" let left = leftBorder\n",
|
||
" let right = rightBorder\n",
|
||
" if (size > 1) {\n",
|
||
" left = true\n",
|
||
" right = true\n",
|
||
" }\n",
|
||
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
|
||
" return size\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableElement = function (id) {\n",
|
||
" return document.getElementById("df_" + id)\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableData = function (id) {\n",
|
||
" return this.getTableElement(id).df\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.createExpander = function (isExpanded) {\n",
|
||
" const svgNs = "http://www.w3.org/2000/svg"\n",
|
||
" let svg = document.createElementNS(svgNs, "svg")\n",
|
||
" svg.classList.add("expanderSvg")\n",
|
||
" let path = document.createElementNS(svgNs, "path")\n",
|
||
" if (isExpanded) {\n",
|
||
" svg.setAttribute("viewBox", "0 -2 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z")\n",
|
||
" } else {\n",
|
||
" svg.setAttribute("viewBox", "-2 0 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z")\n",
|
||
" }\n",
|
||
" path.setAttribute("fill", "currentColor")\n",
|
||
" svg.appendChild(path)\n",
|
||
" return svg\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.renderTable = function (id) {\n",
|
||
"\n",
|
||
" let table = this.getTableElement(id)\n",
|
||
"\n",
|
||
" if (table === null) return\n",
|
||
"\n",
|
||
" table.innerHTML = ""\n",
|
||
"\n",
|
||
" let df = table.df\n",
|
||
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
|
||
"\n",
|
||
" // header\n",
|
||
" let header = document.createElement("thead")\n",
|
||
" table.appendChild(header)\n",
|
||
"\n",
|
||
" let renderData = this.computeRenderData(df)\n",
|
||
" for (let j = 0; j < renderData.length; j++) {\n",
|
||
" let rowData = renderData[j]\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" let isLastRow = j === renderData.length - 1\n",
|
||
" header.appendChild(tr);\n",
|
||
" for (let i = 0; i < rowData.length; i++) {\n",
|
||
" let cell = rowData[i]\n",
|
||
" let th = document.createElement("th");\n",
|
||
" th.setAttribute("colspan", cell.span)\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId];\n",
|
||
" if (!cell.empty) {\n",
|
||
" if (col.children.length === 0) {\n",
|
||
" th.innerHTML = col.name\n",
|
||
" } else {\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" col.expanded = !col.expanded\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(col.expanded))\n",
|
||
" link.innerHTML += col.name\n",
|
||
" th.appendChild(link)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (isLastRow)\n",
|
||
" classes += " bottomBorder"\n",
|
||
" if (classes.length > 0)\n",
|
||
" th.setAttribute("class", classes)\n",
|
||
" tr.appendChild(th)\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" // body\n",
|
||
" let body = document.createElement("tbody")\n",
|
||
" table.appendChild(body)\n",
|
||
"\n",
|
||
" let columns = renderData.pop()\n",
|
||
" for (let row = 0; row < df.nrow; row++) {\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" body.appendChild(tr)\n",
|
||
" for (let i = 0; i < columns.length; i++) {\n",
|
||
" let cell = columns[i]\n",
|
||
" let td = document.createElement("td");\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId]\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (classes.length > 0)\n",
|
||
" td.setAttribute("class", classes)\n",
|
||
" tr.appendChild(td)\n",
|
||
" let value = col.values[row]\n",
|
||
" if (value.frameId !== undefined) {\n",
|
||
" let frameId = value.frameId\n",
|
||
" let expanded = rootDf.expandedFrames.has(frameId)\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" if (rootDf.expandedFrames.has(frameId))\n",
|
||
" rootDf.expandedFrames.delete(frameId)\n",
|
||
" else rootDf.expandedFrames.add(frameId)\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(expanded))\n",
|
||
" link.innerHTML += value.value\n",
|
||
" if (expanded) {\n",
|
||
" td.appendChild(link)\n",
|
||
" td.appendChild(document.createElement("p"))\n",
|
||
" const childTable = document.createElement("table")\n",
|
||
" childTable.className = "dataframe"\n",
|
||
" childTable.id = "df_" + frameId\n",
|
||
" let childDf = rootDf.childFrames[frameId]\n",
|
||
" childTable.df = childDf\n",
|
||
" td.appendChild(childTable)\n",
|
||
" this.renderTable(frameId)\n",
|
||
" if (childDf.nrow !== childDf.totalRows) {\n",
|
||
" const footer = document.createElement("p")\n",
|
||
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
|
||
" td.appendChild(footer)\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" td.appendChild(link)\n",
|
||
" }\n",
|
||
" } else if (value.style !== undefined) {\n",
|
||
" td.innerHTML = value.value\n",
|
||
" td.setAttribute("style", value.style)\n",
|
||
" } else td.innerHTML = value\n",
|
||
" this.nodeScriptReplace(td)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptReplace = function (node) {\n",
|
||
" if (this.nodeScriptIs(node) === true) {\n",
|
||
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
|
||
" } else {\n",
|
||
" let i = -1, children = node.childNodes;\n",
|
||
" while (++i < children.length) {\n",
|
||
" this.nodeScriptReplace(children[i]);\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" return node;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptClone = function (node) {\n",
|
||
" let script = document.createElement("script");\n",
|
||
" script.text = node.innerHTML;\n",
|
||
"\n",
|
||
" let i = -1, attrs = node.attributes, attr;\n",
|
||
" while (++i < attrs.length) {\n",
|
||
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
|
||
" }\n",
|
||
" return script;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptIs = function (node) {\n",
|
||
" return node.tagName === 'SCRIPT';\n",
|
||
" }\n",
|
||
" })()\n",
|
||
"\n",
|
||
" window.call_DataFrame = function (f) {\n",
|
||
" return f();\n",
|
||
" };\n",
|
||
"\n",
|
||
" let funQueue = window["kotlinQueues"] && window["kotlinQueues"]["DataFrame"];\n",
|
||
" if (funQueue) {\n",
|
||
" funQueue.forEach(function (f) {\n",
|
||
" f();\n",
|
||
" });\n",
|
||
" funQueue = [];\n",
|
||
" }\n",
|
||
"})()\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"id: String\">id</span>", children: [], rightAlign: false, values: ["y0sF5xhGreA","tpiyEe_CqB4","wdjpworLSk8","MlDtL2hIj-Q","1UgJI6O8T2U"] }, \n",
|
||
"{ name: "<span title=\"title: String\">title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"20 Minutes of Adorable Kittens &#55357;&#56845; | BEST Compilation\">20 Minutes of Adorable Kittens &#55357;&#56845; | B<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute and Funny Cat Videos to Keep You Smiling! &#55357;&#56369;\">Cute and Funny Cat Videos to Keep You<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520 #cat #kittens #pets\">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"30 Minutes of the Worlds CUTEST Kittens! &#55357;&#56891;&#55357;&#56469;\">30 Minutes of the Worlds CUTEST Kitte<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"&#55357;&#56369; Funny cat videos | cute cats | Try not to laugh | Cat videos Compilation #shorts &#55357;&#56328;\">&#55357;&#56369; Funny cat videos | cute cats | Try<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"publishedAt: kotlinx.datetime.Instant\">publishedAt</span>", children: [], rightAlign: false, values: ["2023-05-28T13:00:44Z","2020-04-10T16:00:28Z","2023-09-15T22:02:00Z","2023-11-19T19:00:10Z","2025-01-14T04:24:22Z"] }, \n",
|
||
"{ name: "<span title=\"channelId: String\">channelId</span>", children: [], rightAlign: false, values: ["UCPIvT-zcQl2H0vabdXJGcpg","UCzn2gx8zzhF0A4Utk8TEDNQ","UCQQcnrcfQbWvCl2lBvF5hoQ","UCPIvT-zcQl2H0vabdXJGcpg","UCkgRhUW4sHt6bQ32dNiQVVg"] }, \n",
|
||
"{ name: "<span title=\"channelTitle: String\">channelTitle</span>", children: [], rightAlign: false, values: ["The Pet Collective","Rufus"," Cute Cat&#55357;&#56369;","The Pet Collective","Dancing Cat"] }, \n",
|
||
"{ name: "<span title=\"channel: DataRow<*>\">channel</span>", children: [3, 4], rightAlign: false, values: ["<span class=\"formatted\" title=\"channelId: UCPIvT-zcQl2H0vabdXJGcpg\nchannelTitle: The Pet Collective\"><span class=\"structural\">{ </span><span class=\"structural\">channelId: </span>UCPIvT-zcQl2H0va<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">c...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"channelId: UCzn2gx8zzhF0A4Utk8TEDNQ\nchannelTitle: Rufus\"><span class=\"structural\">{ </span><span class=\"structural\">channelId: </span>UCzn2gx8zzhF0A4U<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">c...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"channelId: UCQQcnrcfQbWvCl2lBvF5hoQ\nchannelTitle: Cute Cat&#55357;&#56369;\"><span class=\"structural\">{ </span><span class=\"structural\">channelId: </span>UCQQcnrcfQbWvCl2<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">c...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"channelId: UCPIvT-zcQl2H0vabdXJGcpg\nchannelTitle: The Pet Collective\"><span class=\"structural\">{ </span><span class=\"structural\">channelId: </span>UCPIvT-zcQl2H0va<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">c...</span><span class=\"structural\"> }</span></span>","<span class=\"formatted\" title=\"channelId: UCkgRhUW4sHt6bQ32dNiQVVg\nchannelTitle: Dancing Cat\"><span class=\"structural\">{ </span><span class=\"structural\">channelId: </span>UCkgRhUW4sHt6bQ3<span class=\"structural\">...</span><span class=\"structural\">, </span><span class=\"structural\">c...</span><span class=\"structural\"> }</span></span>"] }, \n",
|
||
"{ name: "<span title=\"video: dataTypes.IFRAME\">video</span>", children: [], rightAlign: false, values: ["<iframe src=\"https://www.youtube.com/embed/y0sF5xhGreA\" frameborder=0/>","<iframe src=\"https://www.youtube.com/embed/tpiyEe_CqB4\" frameborder=0/>","<iframe src=\"https://www.youtube.com/embed/wdjpworLSk8\" frameborder=0/>","<iframe src=\"https://www.youtube.com/embed/MlDtL2hIj-Q\" frameborder=0/>","<iframe src=\"https://www.youtube.com/embed/1UgJI6O8T2U\" frameborder=0/>"] }, \n",
|
||
"{ name: "<span title=\"viewCount: Int\">viewCount</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">18909559</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">15055970</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120508334</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1371373</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">15684154</span></span>"] }, \n",
|
||
"{ name: "<span title=\"likeCount: Int\">likeCount</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">65910</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">105244</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1907714</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5922</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">167360</span></span>"] }, \n",
|
||
"{ name: "<span title=\"favoriteCount: Int\">favoriteCount</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">0</span></span>"] }, \n",
|
||
"{ name: "<span title=\"commentCount: Int\">commentCount</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">2520</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">5750</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">7049</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">253</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">1183</span></span>"] }, \n",
|
||
"], id: 1560281166, rootId: 1560281166, totalRows: 5 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"call_DataFrame(function() { DataFrame.renderTable(1560281166) });\n",
|
||
"\n",
|
||
"document.getElementById("static_df_1560281167").style.display = "none";\n",
|
||
"\n",
|
||
" </script>\n",
|
||
" </html>\"></iframe>\n",
|
||
" <script>\n",
|
||
" function o_resize_iframe_out_20() {\n",
|
||
" let elem = document.getElementById(\"iframe_out_20\");\n",
|
||
" resize_iframe_out_20(elem);\n",
|
||
" setInterval(resize_iframe_out_20, 5000, elem);\n",
|
||
" }\n",
|
||
" function resize_iframe_out_20(el) {\n",
|
||
" let h = el.contentWindow.document.body.scrollHeight;\n",
|
||
" el.height = h === 0 ? 0 : h + 41;\n",
|
||
" }\n",
|
||
" </script>"
|
||
]
|
||
},
|
||
"execution_count": 18,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"execution_count": 18
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:12:20.985965Z",
|
||
"start_time": "2025-05-28T11:12:20.426530Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"val view by column<Int>()\n",
|
||
"\n",
|
||
"val channels = joined.groupBy { channel }.sortByCount().aggregate {\n",
|
||
" viewCount.sum() into view\n",
|
||
"\n",
|
||
" val last = maxBy { publishedAt }\n",
|
||
" last.title into \"last title\"\n",
|
||
" last.publishedAt into \"time\"\n",
|
||
" last.viewCount into \"viewCount\"\n",
|
||
"}.sortByDesc(view).flatten()\n",
|
||
"channels"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/html": [
|
||
" <iframe onload=\"o_resize_iframe_out_21()\" style=\"width:100%;\" class=\"result_container\" id=\"iframe_out_21\" frameBorder=\"0\" srcdoc=\" <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type="text/css">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
":root {\n",
|
||
" --scroll-bg: #f5f5f5;\n",
|
||
" --scroll-fg: #b3b3b3;\n",
|
||
"}\n",
|
||
":root[theme="dark"], :root [data-jp-theme-light="false"]{\n",
|
||
" --scroll-bg: #3c3c3c;\n",
|
||
" --scroll-fg: #97e1fb;\n",
|
||
"}\n",
|
||
"body {\n",
|
||
" scrollbar-color: var(--scroll-fg) var(--scroll-bg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar {\n",
|
||
" width: 10px; /* Mostly for vertical scrollbars */\n",
|
||
" height: 10px; /* Mostly for horizontal scrollbars */\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-thumb {\n",
|
||
" background-color: var(--scroll-fg);\n",
|
||
"}\n",
|
||
"body::-webkit-scrollbar-track {\n",
|
||
" background-color: var(--scroll-bg);\n",
|
||
"}\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class="dataframe" id="df_1560281168"></table>\n",
|
||
"\n",
|
||
"<p class="dataframe_description">... showing only top 20 of 165 rows</p><p class="dataframe_description">DataFrame: rowsCount = 165, columnsCount = 6</p>\n",
|
||
"\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" (function () {\n",
|
||
" window.DataFrame = window.DataFrame || new (function () {\n",
|
||
" this.addTable = function (df) {\n",
|
||
" let cols = df.cols;\n",
|
||
" for (let i = 0; i < cols.length; i++) {\n",
|
||
" for (let c of cols[i].children) {\n",
|
||
" cols[c].parent = i;\n",
|
||
" }\n",
|
||
" }\n",
|
||
" df.nrow = 0\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" if (df.cols[i].values.length > df.nrow) df.nrow = df.cols[i].values.length\n",
|
||
" }\n",
|
||
" if (df.id === df.rootId) {\n",
|
||
" df.expandedFrames = new Set()\n",
|
||
" df.childFrames = {}\n",
|
||
" const table = this.getTableElement(df.id)\n",
|
||
" table.df = df\n",
|
||
" for (let i = 0; i < df.cols.length; i++) {\n",
|
||
" let col = df.cols[i]\n",
|
||
" if (col.parent === undefined && col.children.length > 0) col.expanded = true\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" const rootDf = this.getTableData(df.rootId)\n",
|
||
" rootDf.childFrames[df.id] = df\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderData = function (df) {\n",
|
||
" let result = []\n",
|
||
" let pos = 0\n",
|
||
" for (let col = 0; col < df.cols.length; col++) {\n",
|
||
" if (df.cols[col].parent === undefined)\n",
|
||
" pos += this.computeRenderDataRec(df.cols, col, pos, 0, result, false, false)\n",
|
||
" }\n",
|
||
" for (let i = 0; i < result.length; i++) {\n",
|
||
" let row = result[i]\n",
|
||
" for (let j = 0; j < row.length; j++) {\n",
|
||
" let cell = row[j]\n",
|
||
" if (j === 0)\n",
|
||
" cell.leftBd = false\n",
|
||
" if (j < row.length - 1) {\n",
|
||
" let nextData = row[j + 1]\n",
|
||
" if (nextData.leftBd) cell.rightBd = true\n",
|
||
" else if (cell.rightBd) nextData.leftBd = true\n",
|
||
" } else cell.rightBd = false\n",
|
||
" }\n",
|
||
" }\n",
|
||
" return result\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.computeRenderDataRec = function (cols, colId, pos, depth, result, leftBorder, rightBorder) {\n",
|
||
" if (result.length === depth) {\n",
|
||
" const array = [];\n",
|
||
" if (pos > 0) {\n",
|
||
" let j = 0\n",
|
||
" for (let i = 0; j < pos; i++) {\n",
|
||
" let c = result[depth - 1][i]\n",
|
||
" j += c.span\n",
|
||
" let copy = Object.assign({empty: true}, c)\n",
|
||
" array.push(copy)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" result.push(array)\n",
|
||
" }\n",
|
||
" const col = cols[colId];\n",
|
||
" let size = 0;\n",
|
||
" if (col.expanded) {\n",
|
||
" let childPos = pos\n",
|
||
" for (let i = 0; i < col.children.length; i++) {\n",
|
||
" let child = col.children[i]\n",
|
||
" let childLeft = i === 0 && (col.children.length > 1 || leftBorder)\n",
|
||
" let childRight = i === col.children.length - 1 && (col.children.length > 1 || rightBorder)\n",
|
||
" let childSize = this.computeRenderDataRec(cols, child, childPos, depth + 1, result, childLeft, childRight)\n",
|
||
" childPos += childSize\n",
|
||
" size += childSize\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" for (let i = depth + 1; i < result.length; i++)\n",
|
||
" result[i].push({id: colId, span: 1, leftBd: leftBorder, rightBd: rightBorder, empty: true})\n",
|
||
" size = 1\n",
|
||
" }\n",
|
||
" let left = leftBorder\n",
|
||
" let right = rightBorder\n",
|
||
" if (size > 1) {\n",
|
||
" left = true\n",
|
||
" right = true\n",
|
||
" }\n",
|
||
" result[depth].push({id: colId, span: size, leftBd: left, rightBd: right})\n",
|
||
" return size\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableElement = function (id) {\n",
|
||
" return document.getElementById("df_" + id)\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.getTableData = function (id) {\n",
|
||
" return this.getTableElement(id).df\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.createExpander = function (isExpanded) {\n",
|
||
" const svgNs = "http://www.w3.org/2000/svg"\n",
|
||
" let svg = document.createElementNS(svgNs, "svg")\n",
|
||
" svg.classList.add("expanderSvg")\n",
|
||
" let path = document.createElementNS(svgNs, "path")\n",
|
||
" if (isExpanded) {\n",
|
||
" svg.setAttribute("viewBox", "0 -2 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 4 4 4 -4 -1 -1 -3 3Z")\n",
|
||
" } else {\n",
|
||
" svg.setAttribute("viewBox", "-2 0 8 8")\n",
|
||
" path.setAttribute("d", "M1 0 l-1 1 3 3 -3 3 1 1 4 -4Z")\n",
|
||
" }\n",
|
||
" path.setAttribute("fill", "currentColor")\n",
|
||
" svg.appendChild(path)\n",
|
||
" return svg\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.renderTable = function (id) {\n",
|
||
"\n",
|
||
" let table = this.getTableElement(id)\n",
|
||
"\n",
|
||
" if (table === null) return\n",
|
||
"\n",
|
||
" table.innerHTML = ""\n",
|
||
"\n",
|
||
" let df = table.df\n",
|
||
" let rootDf = df.rootId === df.id ? df : this.getTableData(df.rootId)\n",
|
||
"\n",
|
||
" // header\n",
|
||
" let header = document.createElement("thead")\n",
|
||
" table.appendChild(header)\n",
|
||
"\n",
|
||
" let renderData = this.computeRenderData(df)\n",
|
||
" for (let j = 0; j < renderData.length; j++) {\n",
|
||
" let rowData = renderData[j]\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" let isLastRow = j === renderData.length - 1\n",
|
||
" header.appendChild(tr);\n",
|
||
" for (let i = 0; i < rowData.length; i++) {\n",
|
||
" let cell = rowData[i]\n",
|
||
" let th = document.createElement("th");\n",
|
||
" th.setAttribute("colspan", cell.span)\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId];\n",
|
||
" if (!cell.empty) {\n",
|
||
" if (col.children.length === 0) {\n",
|
||
" th.innerHTML = col.name\n",
|
||
" } else {\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" col.expanded = !col.expanded\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(col.expanded))\n",
|
||
" link.innerHTML += col.name\n",
|
||
" th.appendChild(link)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (isLastRow)\n",
|
||
" classes += " bottomBorder"\n",
|
||
" if (classes.length > 0)\n",
|
||
" th.setAttribute("class", classes)\n",
|
||
" tr.appendChild(th)\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" // body\n",
|
||
" let body = document.createElement("tbody")\n",
|
||
" table.appendChild(body)\n",
|
||
"\n",
|
||
" let columns = renderData.pop()\n",
|
||
" for (let row = 0; row < df.nrow; row++) {\n",
|
||
" let tr = document.createElement("tr");\n",
|
||
" body.appendChild(tr)\n",
|
||
" for (let i = 0; i < columns.length; i++) {\n",
|
||
" let cell = columns[i]\n",
|
||
" let td = document.createElement("td");\n",
|
||
" let colId = cell.id\n",
|
||
" let col = df.cols[colId]\n",
|
||
" let classes = (cell.leftBd ? " leftBorder" : "") + (cell.rightBd ? " rightBorder" : "")\n",
|
||
" if (col.rightAlign)\n",
|
||
" classes += " rightAlign"\n",
|
||
" if (classes.length > 0)\n",
|
||
" td.setAttribute("class", classes)\n",
|
||
" tr.appendChild(td)\n",
|
||
" let value = col.values[row]\n",
|
||
" if (value.frameId !== undefined) {\n",
|
||
" let frameId = value.frameId\n",
|
||
" let expanded = rootDf.expandedFrames.has(frameId)\n",
|
||
" let link = document.createElement("a")\n",
|
||
" link.className = "expander"\n",
|
||
" let that = this\n",
|
||
" link.onclick = function () {\n",
|
||
" if (rootDf.expandedFrames.has(frameId))\n",
|
||
" rootDf.expandedFrames.delete(frameId)\n",
|
||
" else rootDf.expandedFrames.add(frameId)\n",
|
||
" that.renderTable(id)\n",
|
||
" }\n",
|
||
" link.appendChild(this.createExpander(expanded))\n",
|
||
" link.innerHTML += value.value\n",
|
||
" if (expanded) {\n",
|
||
" td.appendChild(link)\n",
|
||
" td.appendChild(document.createElement("p"))\n",
|
||
" const childTable = document.createElement("table")\n",
|
||
" childTable.className = "dataframe"\n",
|
||
" childTable.id = "df_" + frameId\n",
|
||
" let childDf = rootDf.childFrames[frameId]\n",
|
||
" childTable.df = childDf\n",
|
||
" td.appendChild(childTable)\n",
|
||
" this.renderTable(frameId)\n",
|
||
" if (childDf.nrow !== childDf.totalRows) {\n",
|
||
" const footer = document.createElement("p")\n",
|
||
" footer.innerText = `... showing only top ${childDf.nrow} of ${childDf.totalRows} rows`\n",
|
||
" td.appendChild(footer)\n",
|
||
" }\n",
|
||
" } else {\n",
|
||
" td.appendChild(link)\n",
|
||
" }\n",
|
||
" } else if (value.style !== undefined) {\n",
|
||
" td.innerHTML = value.value\n",
|
||
" td.setAttribute("style", value.style)\n",
|
||
" } else td.innerHTML = value\n",
|
||
" this.nodeScriptReplace(td)\n",
|
||
" }\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptReplace = function (node) {\n",
|
||
" if (this.nodeScriptIs(node) === true) {\n",
|
||
" node.parentNode.replaceChild(this.nodeScriptClone(node), node);\n",
|
||
" } else {\n",
|
||
" let i = -1, children = node.childNodes;\n",
|
||
" while (++i < children.length) {\n",
|
||
" this.nodeScriptReplace(children[i]);\n",
|
||
" }\n",
|
||
" }\n",
|
||
"\n",
|
||
" return node;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptClone = function (node) {\n",
|
||
" let script = document.createElement("script");\n",
|
||
" script.text = node.innerHTML;\n",
|
||
"\n",
|
||
" let i = -1, attrs = node.attributes, attr;\n",
|
||
" while (++i < attrs.length) {\n",
|
||
" script.setAttribute((attr = attrs[i]).name, attr.value);\n",
|
||
" }\n",
|
||
" return script;\n",
|
||
" }\n",
|
||
"\n",
|
||
" this.nodeScriptIs = function (node) {\n",
|
||
" return node.tagName === 'SCRIPT';\n",
|
||
" }\n",
|
||
" })()\n",
|
||
"\n",
|
||
" window.call_DataFrame = function (f) {\n",
|
||
" return f();\n",
|
||
" };\n",
|
||
"\n",
|
||
" let funQueue = window["kotlinQueues"] && window["kotlinQueues"]["DataFrame"];\n",
|
||
" if (funQueue) {\n",
|
||
" funQueue.forEach(function (f) {\n",
|
||
" f();\n",
|
||
" });\n",
|
||
" funQueue = [];\n",
|
||
" }\n",
|
||
"})()\n",
|
||
"\n",
|
||
"/*<!--*/\n",
|
||
"call_DataFrame(function() { DataFrame.addTable({ cols: [{ name: "<span title=\"channelId: String\">channelId</span>", children: [], rightAlign: false, values: ["UCzybj8GhOrPvWv_ZctJAlAw","UCkMrzpvOdM2Ndc21jgbj8NA","UCDbVjtCeUnZliM4wTkhq2Lg","UCuSkK03h80AhO4IkvaSWdow","UC0HRkOUeR4l1qwpRf9gLmdA","UCJplp5SjeGSdVdwsfb9Q7lQ","UCrj6b6NZy_EY_hmIfI9e63Q","UCssBz_9Te2OFHBdgfgt89Lw","UCWFbgXbNn4stbtjcCwFnYqw","UCNtnAu54xWLWGNZmmFy2Apw","UCQQcnrcfQbWvCl2lBvF5hoQ","UC4-a76b3AGFmdsbIBfMa88A","UCntAD-sZOPUXRIcw9syL-MQ","UCRSLeYO3BOhRAYz0vLfVSWw","UCi_HGn2j_zhU_NXqRbVbhww","UCO5aEyYJeUXv8rxQEvbUMeA","UCsVD3ZguqePDEKaPHUeaIuQ","UCTmml_z2rBmxDUA9Ie4o_uA","UCI7EM9d6P4wRWRjbFXcxUlQ","UCGVR33D9-jd2iWesZmCGjTg"] }, \n",
|
||
"{ name: "<span title=\"channelTitle: String\">channelTitle</span>", children: [], rightAlign: false, values: ["Prince Tom","catvid-19","Cute Baby Cats 267","exlittlebeans","Lovie Jennaira","Like Nastya","Catfuntv","Cute cat&#39;s ","VIKU INFO","MIRANO"," Cute Cat&#55357;&#56369;","Pretty Kittens","Toon4","SugarStar","Meow Motion","Lovely Kittens","ThomasTrucker","Little Kitten 21","toyfunnycat","Remus Bujor"] }, \n",
|
||
"{ name: "<span title=\"view: Int\">view</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">465120542</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">406849453</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">371948067</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">335943466</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">293285788</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">285533199</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">248184051</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">200708551</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">151474623</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">136636865</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120508334</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">119668522</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">104732562</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">99885747</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">89961347</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">87162876</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">86752254</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">82520096</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">80092074</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">74875345</span></span>"] }, \n",
|
||
"{ name: "<span title=\"last title: String\">last title</span>", children: [], rightAlign: false, values: ["<span class=\"formatted\" title=\"I lost my kitten on the street&#55357;&#56877; #cat #cats\">I lost my kitten on the street&#55357;&#56877; #cat<span class=\"structural\">...</span></span>","&#55357;&#56889;Cats Doing Cat Things&#55357;&#56889; (3)","Kitten meowing to attract cats","<span class=\"formatted\" title=\"Boom,Scared me! #exlittlebeans #funny_cats #cat #funny_videos\">Boom,Scared me! #exlittlebeans #funny<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cute cats and monkeys take my kinderjoy #catvideos #catslover #cutecats #trendingshorts\">Cute cats and monkeys take my kinderj<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Nastya and her stories about cats and kittens\">Nastya and her stories about cats and<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Revenge of father &#55357;&#56877;&#55357;&#56877; , yellow cat &#55356;&#56730; white cat , #cat #kitten #cute #catlover #cutecat #shorts 8\">Revenge of father &#55357;&#56877;&#55357;&#56877; , yellow cat &#55356;<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"#cute #cat #cats #cats101 #shorts #shortvideo #trending #trendingshorts #short #trend #cutecat\">#cute #cat #cats #cats101 #shorts #sh<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"cat video ! cat voice ! cat sound ! cat meowing #shorts #short #youtubeshorts #tranding #cat #cats\">cat video ! cat voice ! cat sound ! c<span class=\"structural\">...</span></span>","funny and cute cats #shortvideo #shorts","<span class=\"formatted\" title=\"Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520 #cat #kittens #pets\">Cute kittens&#10084;&#65039;&#12304;30&#12305;#shorts #cutecat520<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Funny moments of cute puppy &#38;amp; cat &#55357;&#56328;&#55357;&#56341; #viralshorts\">Funny moments of cute puppy &#38;amp; cat<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\">Cat &#55357;&#56328; &#38;amp; cute baby &#55357;&#56357; laughing vi<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"My Kitten&#38;#39;s Name Reveal! #cat #cute #shorts\">My Kitten&#38;#39;s Name Reveal! #cat #cu<span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"What u do if phone drops in toilet?#cat #cute #kitten #funny #catlover #kitty\">What u do if phone drops in toilet?#c<span class=\"structural\">...</span></span>","Cute baby kitten sound &#10084;&#65039; #shorts","Funny Cute Cats &#55357;&#56890;","Cat videos cute cats kittens &#55357;&#56891;&#55357;&#56382;","<span class=\"formatted\" title=\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\">Kitten Arrival! #CatLovers #CuteCats <span class=\"structural\">...</span></span>","<span class=\"formatted\" title=\"Is my cat too aggressive? #cat #pet #comedy #cute #love #shorts #petsofyoutube\">Is my cat too aggressive? #cat #pet #<span class=\"structural\">...</span></span>"] }, \n",
|
||
"{ name: "<span title=\"time: kotlinx.datetime.Instant\">time</span>", children: [], rightAlign: false, values: ["2024-07-17T02:00:12Z","2023-07-26T13:33:50Z","2023-05-06T14:18:05Z","2023-08-12T14:26:13Z","2025-04-18T12:25:39Z","2020-05-05T06:00:12Z","2024-03-29T11:00:29Z","2025-01-19T02:00:47Z","2023-01-22T04:17:38Z","2023-07-02T10:00:28Z","2023-09-15T22:02:00Z","2024-09-24T13:15:00Z","2024-09-26T03:51:17Z","2023-12-25T07:55:44Z","2024-03-21T07:47:53Z","2023-05-25T10:30:02Z","2023-07-22T05:27:58Z","2025-01-18T10:31:31Z","2024-06-26T17:41:01Z","2020-12-01T20:28:46Z"] }, \n",
|
||
"{ name: "<span title=\"viewCount: Int\">viewCount</span>", children: [], rightAlign: true, values: ["<span class=\"formatted\" title=\"\"><span class=\"numbers\">465120542</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">406849453</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">371948067</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">279456916</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">9233910</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">285533199</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">125515836</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">102066245</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">151474623</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">136636865</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">120508334</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">10540522</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">104732562</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">99885747</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">89961347</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">81447629</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">86752254</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">534821</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">80092074</span></span>","<span class=\"formatted\" title=\"\"><span class=\"numbers\">74875345</span></span>"] }, \n",
|
||
"], id: 1560281168, rootId: 1560281168, totalRows: 165 } ) });\n",
|
||
"/*-->*/\n",
|
||
"\n",
|
||
"call_DataFrame(function() { DataFrame.renderTable(1560281168) });\n",
|
||
"\n",
|
||
"\n",
|
||
" </script>\n",
|
||
" </html>\"></iframe>\n",
|
||
" <script>\n",
|
||
" function o_resize_iframe_out_21() {\n",
|
||
" let elem = document.getElementById(\"iframe_out_21\");\n",
|
||
" resize_iframe_out_21(elem);\n",
|
||
" setInterval(resize_iframe_out_21, 5000, elem);\n",
|
||
" }\n",
|
||
" function resize_iframe_out_21(el) {\n",
|
||
" let h = el.contentWindow.document.body.scrollHeight;\n",
|
||
" el.height = h === 0 ? 0 : h + 41;\n",
|
||
" }\n",
|
||
" </script> <html theme='dark'>\n",
|
||
" <head>\n",
|
||
" <style type=\"text/css\">\n",
|
||
" :root {\n",
|
||
" --background: #fff;\n",
|
||
" --background-odd: #f5f5f5;\n",
|
||
" --background-hover: #d9edfd;\n",
|
||
" --header-text-color: #474747;\n",
|
||
" --text-color: #848484;\n",
|
||
" --text-color-dark: #000;\n",
|
||
" --text-color-medium: #737373;\n",
|
||
" --text-color-pale: #b3b3b3;\n",
|
||
" --inner-border-color: #aaa;\n",
|
||
" --bold-border-color: #000;\n",
|
||
" --link-color: #296eaa;\n",
|
||
" --link-color-pale: #296eaa;\n",
|
||
" --link-hover: #1a466c;\n",
|
||
"}\n",
|
||
"\n",
|
||
":root[theme=\"dark\"], :root [data-jp-theme-light=\"false\"], .dataframe_dark{\n",
|
||
" --background: #303030;\n",
|
||
" --background-odd: #3c3c3c;\n",
|
||
" --background-hover: #464646;\n",
|
||
" --header-text-color: #dddddd;\n",
|
||
" --text-color: #b3b3b3;\n",
|
||
" --text-color-dark: #dddddd;\n",
|
||
" --text-color-medium: #b2b2b2;\n",
|
||
" --text-color-pale: #737373;\n",
|
||
" --inner-border-color: #707070;\n",
|
||
" --bold-border-color: #777777;\n",
|
||
" --link-color: #008dc0;\n",
|
||
" --link-color-pale: #97e1fb;\n",
|
||
" --link-hover: #00688e;\n",
|
||
"}\n",
|
||
"\n",
|
||
"p.dataframe_description {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe {\n",
|
||
" font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n",
|
||
" font-size: 12px;\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--text-color-dark);\n",
|
||
" border: none;\n",
|
||
" border-collapse: collapse;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th, td {\n",
|
||
" padding: 6px;\n",
|
||
" border: 1px solid transparent;\n",
|
||
" text-align: left;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th {\n",
|
||
" background-color: var(--background);\n",
|
||
" color: var(--header-text-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td {\n",
|
||
" vertical-align: top;\n",
|
||
" white-space: nowrap;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.bottomBorder {\n",
|
||
" border-bottom-color: var(--bold-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(odd) {\n",
|
||
" background: var(--background-odd);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:nth-child(even) {\n",
|
||
" background: var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tbody > tr:hover {\n",
|
||
" background: var(--background-hover);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a {\n",
|
||
" cursor: pointer;\n",
|
||
" color: var(--link-color);\n",
|
||
" text-decoration: none;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover > td a {\n",
|
||
" color: var(--link-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe a:hover {\n",
|
||
" color: var(--link-hover);\n",
|
||
" text-decoration: underline;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe img {\n",
|
||
" max-width: fit-content;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe th.complex {\n",
|
||
" background-color: var(--background);\n",
|
||
" border: 1px solid var(--background);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .leftBorder {\n",
|
||
" border-left-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightBorder {\n",
|
||
" border-right-color: var(--inner-border-color);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .rightAlign {\n",
|
||
" text-align: right;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expanderSvg {\n",
|
||
" width: 8px;\n",
|
||
" height: 8px;\n",
|
||
" margin-right: 3px;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .expander {\n",
|
||
" display: flex;\n",
|
||
" align-items: center;\n",
|
||
"}\n",
|
||
"\n",
|
||
"/* formatting */\n",
|
||
"\n",
|
||
"table.dataframe .null {\n",
|
||
" color: var(--text-color-pale);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .structural {\n",
|
||
" color: var(--text-color-medium);\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .dataFrameCaption {\n",
|
||
" font-weight: bold;\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe .numbers {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe td:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"table.dataframe tr:hover .formatted .structural, .null {\n",
|
||
" color: var(--text-color-dark);\n",
|
||
"}\n",
|
||
"\n",
|
||
"\n",
|
||
" </style>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <table class=\"dataframe\" id=\"static_df_1560281169\"><thead><tr><th class=\"bottomBorder\" style=\"text-align:left\">channelId</th><th class=\"bottomBorder\" style=\"text-align:left\">channelTitle</th><th class=\"bottomBorder\" style=\"text-align:left\">view</th><th class=\"bottomBorder\" style=\"text-align:left\">last title</th><th class=\"bottomBorder\" style=\"text-align:left\">time</th><th class=\"bottomBorder\" style=\"text-align:left\">viewCount</th></tr></thead><tbody><tr><td style=\"vertical-align:top\">UCzybj8GhOrPvWv_ZctJAlAw</td><td style=\"vertical-align:top\">Prince Tom</td><td style=\"vertical-align:top\">465120542</td><td style=\"vertical-align:top\">I lost my kitten on the street�� #cat<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-07-17T02:00:12Z</td><td style=\"vertical-align:top\">465120542</td></tr><tr><td style=\"vertical-align:top\">UCkMrzpvOdM2Ndc21jgbj8NA</td><td style=\"vertical-align:top\">catvid-19</td><td style=\"vertical-align:top\">406849453</td><td style=\"vertical-align:top\">��Cats Doing Cat Things�� (3)</td><td style=\"vertical-align:top\">2023-07-26T13:33:50Z</td><td style=\"vertical-align:top\">406849453</td></tr><tr><td style=\"vertical-align:top\">UCDbVjtCeUnZliM4wTkhq2Lg</td><td style=\"vertical-align:top\">Cute Baby Cats 267</td><td style=\"vertical-align:top\">371948067</td><td style=\"vertical-align:top\">Kitten meowing to attract cats</td><td style=\"vertical-align:top\">2023-05-06T14:18:05Z</td><td style=\"vertical-align:top\">371948067</td></tr><tr><td style=\"vertical-align:top\">UCuSkK03h80AhO4IkvaSWdow</td><td style=\"vertical-align:top\">exlittlebeans</td><td style=\"vertical-align:top\">335943466</td><td style=\"vertical-align:top\">Boom,Scared me! #exlittlebeans #funny<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2023-08-12T14:26:13Z</td><td style=\"vertical-align:top\">279456916</td></tr><tr><td style=\"vertical-align:top\">UC0HRkOUeR4l1qwpRf9gLmdA</td><td style=\"vertical-align:top\">Lovie Jennaira</td><td style=\"vertical-align:top\">293285788</td><td style=\"vertical-align:top\">Cute cats and monkeys take my kinderj<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2025-04-18T12:25:39Z</td><td style=\"vertical-align:top\">9233910</td></tr><tr><td style=\"vertical-align:top\">UCJplp5SjeGSdVdwsfb9Q7lQ</td><td style=\"vertical-align:top\">Like Nastya</td><td style=\"vertical-align:top\">285533199</td><td style=\"vertical-align:top\">Nastya and her stories about cats and<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2020-05-05T06:00:12Z</td><td style=\"vertical-align:top\">285533199</td></tr><tr><td style=\"vertical-align:top\">UCrj6b6NZy_EY_hmIfI9e63Q</td><td style=\"vertical-align:top\">Catfuntv</td><td style=\"vertical-align:top\">248184051</td><td style=\"vertical-align:top\">Revenge of father ���� , yellow cat �<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-03-29T11:00:29Z</td><td style=\"vertical-align:top\">125515836</td></tr><tr><td style=\"vertical-align:top\">UCssBz_9Te2OFHBdgfgt89Lw</td><td style=\"vertical-align:top\">Cute cat's </td><td style=\"vertical-align:top\">200708551</td><td style=\"vertical-align:top\">#cute #cat #cats #cats101 #shorts #sh<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2025-01-19T02:00:47Z</td><td style=\"vertical-align:top\">102066245</td></tr><tr><td style=\"vertical-align:top\">UCWFbgXbNn4stbtjcCwFnYqw</td><td style=\"vertical-align:top\">VIKU INFO</td><td style=\"vertical-align:top\">151474623</td><td style=\"vertical-align:top\">cat video ! cat voice ! cat sound ! c<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2023-01-22T04:17:38Z</td><td style=\"vertical-align:top\">151474623</td></tr><tr><td style=\"vertical-align:top\">UCNtnAu54xWLWGNZmmFy2Apw</td><td style=\"vertical-align:top\">MIRANO</td><td style=\"vertical-align:top\">136636865</td><td style=\"vertical-align:top\">funny and cute cats #shortvideo #shorts</td><td style=\"vertical-align:top\">2023-07-02T10:00:28Z</td><td style=\"vertical-align:top\">136636865</td></tr><tr><td style=\"vertical-align:top\">UCQQcnrcfQbWvCl2lBvF5hoQ</td><td style=\"vertical-align:top\"> Cute Cat��</td><td style=\"vertical-align:top\">120508334</td><td style=\"vertical-align:top\">Cute kittens❤️【30】#shorts #cutecat520<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2023-09-15T22:02:00Z</td><td style=\"vertical-align:top\">120508334</td></tr><tr><td style=\"vertical-align:top\">UC4-a76b3AGFmdsbIBfMa88A</td><td style=\"vertical-align:top\">Pretty Kittens</td><td style=\"vertical-align:top\">119668522</td><td style=\"vertical-align:top\">Funny moments of cute puppy &amp; cat<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-09-24T13:15:00Z</td><td style=\"vertical-align:top\">10540522</td></tr><tr><td style=\"vertical-align:top\">UCntAD-sZOPUXRIcw9syL-MQ</td><td style=\"vertical-align:top\">Toon4</td><td style=\"vertical-align:top\">104732562</td><td style=\"vertical-align:top\">Cat �� &amp; cute baby �� laughing vi<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-09-26T03:51:17Z</td><td style=\"vertical-align:top\">104732562</td></tr><tr><td style=\"vertical-align:top\">UCRSLeYO3BOhRAYz0vLfVSWw</td><td style=\"vertical-align:top\">SugarStar</td><td style=\"vertical-align:top\">99885747</td><td style=\"vertical-align:top\">My Kitten&#39;s Name Reveal! #cat #cu<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2023-12-25T07:55:44Z</td><td style=\"vertical-align:top\">99885747</td></tr><tr><td style=\"vertical-align:top\">UCi_HGn2j_zhU_NXqRbVbhww</td><td style=\"vertical-align:top\">Meow Motion</td><td style=\"vertical-align:top\">89961347</td><td style=\"vertical-align:top\">What u do if phone drops in toilet?#c<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-03-21T07:47:53Z</td><td style=\"vertical-align:top\">89961347</td></tr><tr><td style=\"vertical-align:top\">UCO5aEyYJeUXv8rxQEvbUMeA</td><td style=\"vertical-align:top\">Lovely Kittens</td><td style=\"vertical-align:top\">87162876</td><td style=\"vertical-align:top\">Cute baby kitten sound ❤️ #shorts</td><td style=\"vertical-align:top\">2023-05-25T10:30:02Z</td><td style=\"vertical-align:top\">81447629</td></tr><tr><td style=\"vertical-align:top\">UCsVD3ZguqePDEKaPHUeaIuQ</td><td style=\"vertical-align:top\">ThomasTrucker</td><td style=\"vertical-align:top\">86752254</td><td style=\"vertical-align:top\">Funny Cute Cats ��</td><td style=\"vertical-align:top\">2023-07-22T05:27:58Z</td><td style=\"vertical-align:top\">86752254</td></tr><tr><td style=\"vertical-align:top\">UCTmml_z2rBmxDUA9Ie4o_uA</td><td style=\"vertical-align:top\">Little Kitten 21</td><td style=\"vertical-align:top\">82520096</td><td style=\"vertical-align:top\">Cat videos cute cats kittens ����</td><td style=\"vertical-align:top\">2025-01-18T10:31:31Z</td><td style=\"vertical-align:top\">534821</td></tr><tr><td style=\"vertical-align:top\">UCI7EM9d6P4wRWRjbFXcxUlQ</td><td style=\"vertical-align:top\">toyfunnycat</td><td style=\"vertical-align:top\">80092074</td><td style=\"vertical-align:top\">Kitten Arrival! #CatLovers #CuteCats <span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2024-06-26T17:41:01Z</td><td style=\"vertical-align:top\">80092074</td></tr><tr><td style=\"vertical-align:top\">UCGVR33D9-jd2iWesZmCGjTg</td><td style=\"vertical-align:top\">Remus Bujor</td><td style=\"vertical-align:top\">74875345</td><td style=\"vertical-align:top\">Is my cat too aggressive? #cat #pet #<span class=\"structural\">...</span></td><td style=\"vertical-align:top\">2020-12-01T20:28:46Z</td><td style=\"vertical-align:top\">74875345</td></tr></tbody></table>\n",
|
||
" </body>\n",
|
||
" <script>\n",
|
||
" document.getElementById(\"static_df_1560281169\").style.display = \"none\";\n",
|
||
" </script>\n",
|
||
" </html>"
|
||
],
|
||
"application/kotlindataframe+json": "{\"$version\":\"2.1.1\",\"metadata\":{\"columns\":[\"channelId\",\"channelTitle\",\"view\",\"last title\",\"time\",\"viewCount\"],\"types\":[{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.String\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlinx.datetime.Instant\"},{\"kind\":\"ValueColumn\",\"type\":\"kotlin.Int\"}],\"nrow\":165,\"ncol\":6},\"kotlin_dataframe\":[{\"channelId\":\"UCzybj8GhOrPvWv_ZctJAlAw\",\"channelTitle\":\"Prince Tom\",\"view\":465120542,\"last title\":\"I lost my kitten on the street😭 #cat #cats\",\"time\":\"2024-07-17T02:00:12Z\",\"viewCount\":465120542},{\"channelId\":\"UCkMrzpvOdM2Ndc21jgbj8NA\",\"channelTitle\":\"catvid-19\",\"view\":406849453,\"last title\":\"😹Cats Doing Cat Things😹 (3)\",\"time\":\"2023-07-26T13:33:50Z\",\"viewCount\":406849453},{\"channelId\":\"UCDbVjtCeUnZliM4wTkhq2Lg\",\"channelTitle\":\"Cute Baby Cats 267\",\"view\":371948067,\"last title\":\"Kitten meowing to attract cats\",\"time\":\"2023-05-06T14:18:05Z\",\"viewCount\":371948067},{\"channelId\":\"UCuSkK03h80AhO4IkvaSWdow\",\"channelTitle\":\"exlittlebeans\",\"view\":335943466,\"last title\":\"Boom,Scared me! #exlittlebeans #funny_cats #cat #funny_videos\",\"time\":\"2023-08-12T14:26:13Z\",\"viewCount\":279456916},{\"channelId\":\"UC0HRkOUeR4l1qwpRf9gLmdA\",\"channelTitle\":\"Lovie Jennaira\",\"view\":293285788,\"last title\":\"Cute cats and monkeys take my kinderjoy #catvideos #catslover #cutecats #trendingshorts\",\"time\":\"2025-04-18T12:25:39Z\",\"viewCount\":9233910},{\"channelId\":\"UCJplp5SjeGSdVdwsfb9Q7lQ\",\"channelTitle\":\"Like Nastya\",\"view\":285533199,\"last title\":\"Nastya and her stories about cats and kittens\",\"time\":\"2020-05-05T06:00:12Z\",\"viewCount\":285533199},{\"channelId\":\"UCrj6b6NZy_EY_hmIfI9e63Q\",\"channelTitle\":\"Catfuntv\",\"view\":248184051,\"last title\":\"Revenge of father 😭😭 , yellow cat 🆚 white cat , #cat #kitten #cute #catlover #cutecat #shorts 8\",\"time\":\"2024-03-29T11:00:29Z\",\"viewCount\":125515836},{\"channelId\":\"UCssBz_9Te2OFHBdgfgt89Lw\",\"channelTitle\":\"Cute cat's \",\"view\":200708551,\"last title\":\"#cute #cat #cats #cats101 #shorts #shortvideo #trending #trendingshorts #short #trend #cutecat\",\"time\":\"2025-01-19T02:00:47Z\",\"viewCount\":102066245},{\"channelId\":\"UCWFbgXbNn4stbtjcCwFnYqw\",\"channelTitle\":\"VIKU INFO\",\"view\":151474623,\"last title\":\"cat video ! cat voice ! cat sound ! cat meowing #shorts #short #youtubeshorts #tranding #cat #cats\",\"time\":\"2023-01-22T04:17:38Z\",\"viewCount\":151474623},{\"channelId\":\"UCNtnAu54xWLWGNZmmFy2Apw\",\"channelTitle\":\"MIRANO\",\"view\":136636865,\"last title\":\"funny and cute cats #shortvideo #shorts\",\"time\":\"2023-07-02T10:00:28Z\",\"viewCount\":136636865},{\"channelId\":\"UCQQcnrcfQbWvCl2lBvF5hoQ\",\"channelTitle\":\" Cute Cat🐱\",\"view\":120508334,\"last title\":\"Cute kittens❤️【30】#shorts #cutecat520 #cat #kittens #pets\",\"time\":\"2023-09-15T22:02:00Z\",\"viewCount\":120508334},{\"channelId\":\"UC4-a76b3AGFmdsbIBfMa88A\",\"channelTitle\":\"Pretty Kittens\",\"view\":119668522,\"last title\":\"Funny moments of cute puppy & cat 🐈🐕 #viralshorts\",\"time\":\"2024-09-24T13:15:00Z\",\"viewCount\":10540522},{\"channelId\":\"UCntAD-sZOPUXRIcw9syL-MQ\",\"channelTitle\":\"Toon4\",\"view\":104732562,\"last title\":\"Cat 🐈 & cute baby 🐥 laughing video #funnyvideo #cutebaby #comedy #laugh #shorts\",\"time\":\"2024-09-26T03:51:17Z\",\"viewCount\":104732562},{\"channelId\":\"UCRSLeYO3BOhRAYz0vLfVSWw\",\"channelTitle\":\"SugarStar\",\"view\":99885747,\"last title\":\"My Kitten's Name Reveal! #cat #cute #shorts\",\"time\":\"2023-12-25T07:55:44Z\",\"viewCount\":99885747},{\"channelId\":\"UCi_HGn2j_zhU_NXqRbVbhww\",\"channelTitle\":\"Meow Motion\",\"view\":89961347,\"last title\":\"What u do if phone drops in toilet?#cat #cute #kitten #funny #catlover #kitty\",\"time\":\"2024-03-21T07:47:53Z\",\"viewCount\":89961347},{\"channelId\":\"UCO5aEyYJeUXv8rxQEvbUMeA\",\"channelTitle\":\"Lovely Kittens\",\"view\":87162876,\"last title\":\"Cute baby kitten sound ❤️ #shorts\",\"time\":\"2023-05-25T10:30:02Z\",\"viewCount\":81447629},{\"channelId\":\"UCsVD3ZguqePDEKaPHUeaIuQ\",\"channelTitle\":\"ThomasTrucker\",\"view\":86752254,\"last title\":\"Funny Cute Cats 😺\",\"time\":\"2023-07-22T05:27:58Z\",\"viewCount\":86752254},{\"channelId\":\"UCTmml_z2rBmxDUA9Ie4o_uA\",\"channelTitle\":\"Little Kitten 21\",\"view\":82520096,\"last title\":\"Cat videos cute cats kittens 😻🐾\",\"time\":\"2025-01-18T10:31:31Z\",\"viewCount\":534821},{\"channelId\":\"UCI7EM9d6P4wRWRjbFXcxUlQ\",\"channelTitle\":\"toyfunnycat\",\"view\":80092074,\"last title\":\"Kitten Arrival! #CatLovers #CuteCats #CatLife #Meow #cats #CatFamily #shorts #foryou\",\"time\":\"2024-06-26T17:41:01Z\",\"viewCount\":80092074},{\"channelId\":\"UCGVR33D9-jd2iWesZmCGjTg\",\"channelTitle\":\"Remus Bujor\",\"view\":74875345,\"last title\":\"Is my cat too aggressive? #cat #pet #comedy #cute #love #shorts #petsofyoutube\",\"time\":\"2020-12-01T20:28:46Z\",\"viewCount\":74875345}]}"
|
||
},
|
||
"execution_count": 19,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"execution_count": 19
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:12:39.107910Z",
|
||
"start_time": "2025-05-28T11:12:36.190503Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": "%use kandy",
|
||
"outputs": [],
|
||
"execution_count": 20
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:12:48.155119Z",
|
||
"start_time": "2025-05-28T11:12:47.138831Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"channels.sortBy { viewCount.desc() }.plot {\n",
|
||
" bars {\n",
|
||
" x(channelTitle.map { it.take(10) })\n",
|
||
" y(viewCount)\n",
|
||
" }\n",
|
||
"}"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/html": [
|
||
" <iframe src='about:blank' style='border:none !important;' width='600' height='400' srcdoc=\"<html lang="en">\n",
|
||
" <head>\n",
|
||
" <meta charset="UTF-8">\n",
|
||
" <style> html, body { margin: 0; overflow: hidden; } </style>\n",
|
||
" <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <div id="lsRHld"></div>\n",
|
||
" <script type="text/javascript" data-lets-plot-script="plot">\n",
|
||
" \n",
|
||
" (function() {\n",
|
||
" // ----------\n",
|
||
" \n",
|
||
" var plotSpec={\n",
|
||
""mapping":{\n",
|
||
"},\n",
|
||
""data":{\n",
|
||
""viewCount":[4.65120542E8,4.06849453E8,3.71948067E8,2.85533199E8,2.79456916E8,2.23004529E8,1.51474623E8,1.36636865E8,1.25515836E8,1.20508334E8,1.04732562E8,1.02066245E8,9.9885747E7,8.9961347E7,8.6752254E7,8.1447629E7,8.0092074E7,7.4875345E7,7.3992108E7,7.3128385E7,6.8717443E7,6.5888727E7,6.5238668E7,6.5221849E7,5.7421135E7,5.7103131E7,5.6130595E7,5.4540834E7,4.8005555E7,4.5930617E7,4.2812176E7,4.2352995E7,4.187422E7,4.1688566E7,4.1260262E7,4.0030645E7,3.8497909E7,3.7184151E7,3.56184E7,3.1923429E7,2.9974611E7,2.9225223E7,2.8908776E7,2.8356357E7,2.7347215E7,2.7147742E7,2.5959634E7,2.5240468E7,2.4216354E7,2.4119132E7,2.2085396E7,2.1967309E7,2.1361871E7,2.0973961E7,2.0745861E7,1.9736473E7,1.9527316E7,1.9261276E7,1.8932255E7,1.8316343E7,1.6858532E7,1.6822697E7,1.6557316E7,1.5684154E7,1.5484651E7,1.5388238E7,1.5308169E7,1.505597E7,1.4719375E7,1.4585648E7,1.3270919E7,1.3202136E7,1.2359416E7,1.1799136E7,1.1543804E7,1.0735648E7,1.0540522E7,9802247.0,9233910.0,9228240.0,9142522.0,9021911.0,8945365.0,8876898.0,8693474.0,8631576.0,8260945.0,8107926.0,7796697.0,6916206.0,6915591.0,6751261.0,6305951.0,6231819.0,6071764.0,5838098.0,5446622.0,5251862.0,4661538.0,4604465.0,4600995.0,4565509.0,4324654.0,3986768.0,3356600.0,3289204.0,3235202.0,3234636.0,3063433.0,2802480.0,2534065.0,2482309.0,2360178.0,2321983.0,2079967.0,1755952.0,1730633.0,1645219.0,1395050.0,1366083.0,1269342.0,1193048.0,1149928.0,1010213.0,977144.0,965420.0,882603.0,796043.0,734874.0,702630.0,682845.0,665884.0,633793.0,542624.0,534821.0,511175.0,399787.0,391351.0,362063.0,296742.0,65866.0,65674.0,43228.0,37642.0,35667.0,32152.0,31934.0,30738.0,30456.0,28954.0,23204.0,22211.0,17510.0,16117.0,14153.0,10593.0,10372.0,9708.0,6782.0,6302.0,4548.0,3782.0,3240.0,1781.0,1039.0],\n",
|
||
""channelTitle":["Prince Tom","catvid-19","Cute Baby ","Like Nasty","exlittlebe","Sonyakisa8","VIKU INFO","MIRANO","Catfuntv"," Cute Cat?","Toon4","Cute cat's","SugarStar","Meow Motio","ThomasTruc","Lovely Kit","toyfunnyca","Remus Bujo","Ana.simon_","Chpetoo_05","Sirf Shrey","Cat Cute J","Cat and Ha","MY CAT NEW","COOL PEACH","SRH Funny ","Kiran's An","Stocat","Teddy Kitt","dragon hub","Lucky cat","Princess c","Lovento Fi","Story Arc ","Funny-anim","Half-Aslee","Prank","Aww Animal","FunnyCatTv","The BN Fam","Maiw Milky","Adventures","Oscar's Fu","Impossible","DIARY DIMU","Meow WORLD","PurrfectPa","FunnyPaws","Baby Pop","Jeff Canal","Mantio","SydVids","Ai Game ","Shefali Ra","TheCatRank","Cat 😍 sho","FurryFritz","Lulu the C","COSEFNASTY","Meow Magic","Furry Corn","Pets Unive","Stew-Art","Dancing Ca","wk.loverba","Beco's Sto","Animal Wor","Rufus","CatAniki","Jusbrend M","Brennan Ro","LilyJoy","土豆の日記Cat's","A Satisfyi","Kak Nurul","Wholesome ","Pretty Kit","Cute Anima","Lovie Jenn","Every Minu","Cat dance ","Organic Na","Cute Cat o","The Pet Zo","Cute.video","WhiteCat","LOADING FU","Meowtvee","Cat Ai Net","CUTE CAT","NewFunStor","CatClips","Peshtook","DailyDoseO","OhCrayZ","Meow Kingd","The Meow S","Takasi ani","Kitty Show","𝐭𝐡𝐞-𝐏?","Meow Memor","Tasty Paws","Pets Funny","CAT KITTY ","Funny Sofi","Koray Zeyn","PET NATION","Jaw-Droppi","Meow Meow ","CUTE ANIMA","CaD Animal","All About ","Top 10 Ser","Pawfectly ","imili , Fu","Republic O","Ai pet cre","BearyDeliv","Cat 888","Humpty Hob","Grinly","Monster Bi","Evolving F","Acorn Stud","Incredible","CATZ","The Pet Co","CoCpet","ColdNPC","matta","Funny And ","Salim Ubey","Daisy Vide","Little Lov","Little Kit","Cat Fun 0","Happy Tail","Kitten Won","cats101","REST EASY ","Kit Cat Ja","CuteAnimal","Meowtoon S","Cat story ","Cute Momen","Cheetosimb","Kittycute","Funny vide","Sunghoonve","Paws & Cla","pets","Love For A","apt cat cu","CUTE CAT🥰","Cute Cat D","The Black ","Miau Miau","MUNDO PET","Sweet anim","sleep_cats","Testameow","Ansari Wri","About Robl","ODINKK 06","Kids' Bedt"]\n",
|
||
"},\n",
|
||
""kind":"plot",\n",
|
||
""scales":[{\n",
|
||
""aesthetic":"x",\n",
|
||
""discrete":true\n",
|
||
"},{\n",
|
||
""aesthetic":"y",\n",
|
||
""limits":[null,null]\n",
|
||
"}],\n",
|
||
""layers":[{\n",
|
||
""mapping":{\n",
|
||
""x":"channelTitle",\n",
|
||
""y":"viewCount"\n",
|
||
"},\n",
|
||
""stat":"identity",\n",
|
||
""sampling":"none",\n",
|
||
""inherit_aes":false,\n",
|
||
""position":"dodge",\n",
|
||
""geom":"bar",\n",
|
||
""data":{\n",
|
||
"}\n",
|
||
"}],\n",
|
||
""data_meta":{\n",
|
||
""series_annotations":[{\n",
|
||
""type":"str",\n",
|
||
""column":"channelTitle"\n",
|
||
"},{\n",
|
||
""type":"int",\n",
|
||
""column":"viewCount"\n",
|
||
"}]\n",
|
||
"},\n",
|
||
""spec_id":"2"\n",
|
||
"};\n",
|
||
" var containerDiv = document.getElementById("lsRHld");\n",
|
||
" \n",
|
||
" var toolbar = null;\n",
|
||
" var plotContainer = containerDiv; \n",
|
||
" \n",
|
||
" var options = {\n",
|
||
" sizing: {\n",
|
||
" width_mode: "fixed",\n",
|
||
" height_mode: "fixed",\n",
|
||
" width: 600.0,\n",
|
||
" height: 400.0\n",
|
||
" }\n",
|
||
" };\n",
|
||
" var fig = LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer, options);\n",
|
||
" if (toolbar) {\n",
|
||
" toolbar.bind(fig);\n",
|
||
" }\n",
|
||
" \n",
|
||
" // ----------\n",
|
||
" })();\n",
|
||
" \n",
|
||
" </script>\n",
|
||
" </body>\n",
|
||
"</html>\"></iframe> <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" id=5b91a5ee-58f0-4727-94e1-d9bdf0d82091 width=\"100%\" height=\"100%\" style=\"max-width: 600.0px; max-height: 400.0px;\" viewBox=\"0 0 600.0 400.0\" preserveAspectRatio=\"xMinYMin meet\">\n",
|
||
" <style type=\"text/css\">\n",
|
||
" .plt-container {\n",
|
||
" font-family: Lucida Grande, sans-serif;\n",
|
||
" user-select: none;\n",
|
||
" -webkit-user-select: none;\n",
|
||
" -moz-user-select: none;\n",
|
||
" -ms-user-select: none;\n",
|
||
"}\n",
|
||
"text {\n",
|
||
" text-rendering: optimizeLegibility;\n",
|
||
"}\n",
|
||
"#p9sOWCf .plot-title {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 16.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#p9sOWCf .plot-subtitle {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 15.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#p9sOWCf .plot-caption {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#p9sOWCf .hyperlink-element {\n",
|
||
"fill: #118ed8;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;\n",
|
||
"}\n",
|
||
"#p9sOWCf .legend-title {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 15.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#p9sOWCf .legend-item {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#p9sOWCf .axis-title-x {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 15.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#p9sOWCf .axis-text-x {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#dT4o8EV .axis-tooltip-text-x {\n",
|
||
"fill: #ffffff;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#p9sOWCf .axis-title-y {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 15.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#p9sOWCf .axis-text-y {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#dT4o8EV .axis-tooltip-text-y {\n",
|
||
"fill: #ffffff;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#p9sOWCf .facet-strip-text-x {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#p9sOWCf .facet-strip-text-y {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#dT4o8EV .tooltip-text {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#dT4o8EV .tooltip-title {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: bold;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#dT4o8EV .tooltip-label {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: bold;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"\n",
|
||
" </style>\n",
|
||
" <g id=\"p9sOWCf\">\n",
|
||
" <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 400.0 L600.0 400.0 L600.0 0.0 Z\">\n",
|
||
" </path>\n",
|
||
" <g transform=\"translate(29.5 6.5 ) \">\n",
|
||
" <g>\n",
|
||
" <g transform=\"translate(41.307295843643615 0.0 ) \">\n",
|
||
" <g>\n",
|
||
" <line x1=\"2.0553554609899076\" y1=\"0.0\" x2=\"2.0553554609899076\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"17.865782083989195\" y1=\"0.0\" x2=\"17.865782083989195\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"33.67620870698848\" y1=\"0.0\" x2=\"33.67620870698848\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"49.48663532998777\" y1=\"0.0\" x2=\"49.48663532998777\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"65.29706195298705\" y1=\"0.0\" x2=\"65.29706195298705\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"81.10748857598634\" y1=\"0.0\" x2=\"81.10748857598634\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"96.91791519898563\" y1=\"0.0\" x2=\"96.91791519898563\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"112.72834182198491\" y1=\"0.0\" x2=\"112.72834182198491\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"128.5387684449842\" y1=\"0.0\" x2=\"128.5387684449842\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"144.3491950679835\" y1=\"0.0\" x2=\"144.3491950679835\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"160.1596216909828\" y1=\"0.0\" x2=\"160.1596216909828\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"175.9700483139821\" y1=\"0.0\" x2=\"175.9700483139821\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"191.78047493698136\" y1=\"0.0\" x2=\"191.78047493698136\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"207.59090155998064\" y1=\"0.0\" x2=\"207.59090155998064\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"223.40132818297994\" y1=\"0.0\" x2=\"223.40132818297994\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"239.21175480597924\" y1=\"0.0\" x2=\"239.21175480597924\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"255.0221814289785\" y1=\"0.0\" x2=\"255.0221814289785\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"270.8326080519778\" y1=\"0.0\" x2=\"270.8326080519778\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"286.64303467497706\" y1=\"0.0\" x2=\"286.64303467497706\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"302.4534612979764\" y1=\"0.0\" x2=\"302.4534612979764\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"318.26388792097566\" y1=\"0.0\" x2=\"318.26388792097566\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"334.07431454397494\" y1=\"0.0\" x2=\"334.07431454397494\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"349.88474116697427\" y1=\"0.0\" x2=\"349.88474116697427\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"365.69516778997354\" y1=\"0.0\" x2=\"365.69516778997354\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"381.5055944129728\" y1=\"0.0\" x2=\"381.5055944129728\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"397.3160210359721\" y1=\"0.0\" x2=\"397.3160210359721\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"413.12644765897136\" y1=\"0.0\" x2=\"413.12644765897136\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"428.9368742819707\" y1=\"0.0\" x2=\"428.9368742819707\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"444.74730090496996\" y1=\"0.0\" x2=\"444.74730090496996\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"460.55772752796923\" y1=\"0.0\" x2=\"460.55772752796923\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"476.36815415096856\" y1=\"0.0\" x2=\"476.36815415096856\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"492.17858077396784\" y1=\"0.0\" x2=\"492.17858077396784\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"507.9890073969671\" y1=\"0.0\" x2=\"507.9890073969671\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(41.307295843643615 0.0 ) \">\n",
|
||
" <g>\n",
|
||
" <line x1=\"0.0\" y1=\"255.84024275155826\" x2=\"522.6927041563564\" y2=\"255.84024275155826\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"203.45438746308056\" x2=\"522.6927041563564\" y2=\"203.45438746308056\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"151.06853217460286\" x2=\"522.6927041563564\" y2=\"151.06853217460286\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"98.6826768861252\" x2=\"522.6927041563564\" y2=\"98.6826768861252\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"46.296821597647494\" x2=\"522.6927041563564\" y2=\"46.296821597647494\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g clip-path=\"url(#chzcaOf)\" clip-bounds-jfx=\"[rect (41.307295843643615, 0.0), (522.6927041563564, 255.84024275155826)]\">\n",
|
||
" <g transform=\"translate(41.307295843643615 0.0 ) \">\n",
|
||
" <g>\n",
|
||
" <g>\n",
|
||
" <rect x=\"519.2144102992966\" y=\"255.83969846252182\" height=\"5.442890364406594E-4\" width=\"2.8458767921399613\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"516.0523249746967\" y=\"255.83930975947558\" height=\"9.329920826814941E-4\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"512.8902396500969\" y=\"255.83854544984692\" height=\"0.0016973017113457445\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"509.7281543254971\" y=\"255.83826151851125\" height=\"0.0019812330470188044\" width=\"2.8458767921397907\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"506.5660690008972\" y=\"255.83786024285973\" height=\"0.0023825086985311827\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"503.40398367629734\" y=\"255.836941394958\" height=\"0.003301356600275085\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"500.2418983516975\" y=\"255.8366899428526\" height=\"0.003552808705677535\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"497.07981302709766\" y=\"255.83515713272686\" height=\"0.005085618831401462\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"493.91772770249776\" y=\"255.83480929064774\" height=\"0.005433460910523991\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"490.7556423778979\" y=\"255.83469351790757\" height=\"0.005549233650697261\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"487.59355705329807\" y=\"255.8328285814593\" height=\"0.007414170098968498\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"484.4314717286982\" y=\"255.8317997232614\" height=\"0.008443028296852617\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"481.2693864040983\" y=\"255.83106998829726\" height=\"0.009172763261005912\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"478.1073010794985\" y=\"255.82860732924013\" height=\"0.01163542231813608\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"474.94521575489864\" y=\"255.82808713769714\" height=\"0.012155613861125403\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"471.7831304302988\" y=\"255.82507495101805\" height=\"0.015167800540211829\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"468.6210451056989\" y=\"255.8242881154716\" height=\"0.015954636086661367\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"465.45895978109905\" y=\"255.8241403873597\" height=\"0.01610236419855937\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"462.2968744564992\" y=\"255.82351385253045\" height=\"0.01672889902781094\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"459.13478913189937\" y=\"255.82339965136592\" height=\"0.016843100192346583\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"455.97270380729947\" y=\"255.82155828855252\" height=\"0.01868446300574078\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"452.8106184826996\" y=\"255.82052366791058\" height=\"0.019719083647686375\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"449.6485331580998\" y=\"255.81759739403415\" height=\"0.02264535752411234\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"446.48644783349994\" y=\"255.80583886495612\" height=\"0.034403886602149214\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"443.32436250890004\" y=\"255.80573828411394\" height=\"0.03450446744432156\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"440.1622771843002\" y=\"255.68479191685813\" height=\"0.1554508347001331\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"437.00019185970035\" y=\"255.65057295232515\" height=\"0.18966979923311555\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"433.8381065351005\" y=\"255.63523018302826\" height=\"0.20501256853000882\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"430.6760212105006\" y=\"255.63081091227613\" height=\"0.20943183928213216\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"427.51393588590076\" y=\"255.5724593557874\" height=\"0.26778339577086285\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"424.3518505613009\" y=\"255.56007219644587\" height=\"0.28017055511239164\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"421.1897652367011\" y=\"255.55598452815772\" height=\"0.28425822340054197\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"418.0276799121012\" y=\"255.50822486774976\" height=\"0.33201788380850417\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"414.86559458750133\" y=\"255.49141372292914\" height=\"0.348829028629126\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"411.7035092629015\" y=\"255.48252855801366\" height=\"0.3577141935446093\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"408.54142393830165\" y=\"255.47216401654484\" height=\"0.3680787350134267\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"405.37933861370175\" y=\"255.45527272136562\" height=\"0.3849700301926475\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"402.21725328910185\" y=\"255.4232288175442\" height=\"0.41701393401405085\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"399.055167964502\" y=\"255.3778836212065\" height=\"0.46235913035175713\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"395.89308263990216\" y=\"255.33449922743225\" height=\"0.505743524126018\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"392.7309973153023\" y=\"255.32835750975823\" height=\"0.5118852418000301\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"389.5689119907024\" y=\"255.31103403127287\" height=\"0.5292087202853963\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"386.4068266661026\" y=\"255.23784313355657\" height=\"0.602399618001698\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"383.24474134150273\" y=\"255.21525435275618\" height=\"0.6249883988020883\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"380.0826560169029\" y=\"255.1752870883224\" height=\"0.6649556632358724\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"376.920570692303\" y=\"255.12460848805776\" height=\"0.7156342635005046\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"373.75848536770314\" y=\"255.10943387735637\" height=\"0.7308088742018981\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"370.5964000431033\" y=\"254.97838070703972\" height=\"0.8618620445185456\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"367.43431471850346\" y=\"254.93363585260363\" height=\"0.9066068989546352\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"364.27222939390356\" y=\"254.92037227790314\" height=\"0.9198704736551235\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"361.1101440693037\" y=\"254.75063424889018\" height=\"1.089608502668085\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"357.94805874470387\" y=\"254.6238520973552\" height=\"1.2163906542030531\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"354.785973420104\" y=\"254.6038433199278\" height=\"1.236399431630474\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"351.6238880955041\" y=\"254.5398639510054\" height=\"1.3003788005528634\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"348.4618027709043\" y=\"254.5127511277423\" height=\"1.3274916238159733\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"345.29971744630444\" y=\"254.37213963426973\" height=\"1.4681031172885355\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"342.1376321217046\" y=\"254.2354371733188\" height=\"1.6048055782394783\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"338.9755467971047\" y=\"254.14575101748926\" height=\"1.694491734069004\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"335.81346147250486\" y=\"254.14545451354832\" height=\"1.6947882380099486\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"332.651376147905\" y=\"254.11716510397545\" height=\"1.7230776475828122\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"329.48929082330517\" y=\"254.08185913294523\" height=\"1.7583836186130384\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"326.32720549870527\" y=\"253.75174023639093\" height=\"2.0885025151673346\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"323.1651201741054\" y=\"253.5747357653909\" height=\"2.2655069861673667\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"320.0030348495056\" y=\"253.44856181363585\" height=\"2.391680937922416\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"316.84094952490574\" y=\"253.42997216902816\" height=\"2.410270582530103\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"313.67886420030584\" y=\"253.42815437984967\" height=\"2.4120883717085917\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"310.516778875706\" y=\"253.39825620066085\" height=\"2.4419865508974112\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"307.35469355110615\" y=\"253.08900992428772\" height=\"2.7512328272705417\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"304.1926082265063\" y=\"252.98698323252788\" height=\"2.853259519030388\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"301.0305229019064\" y=\"252.78190518167875\" height=\"3.0583375698795123\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"297.86843757730657\" y=\"252.6594972490604\" height=\"3.180745502497871\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"294.7063522527067\" y=\"252.57565106837842\" height=\"3.2645916831798445\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"291.5442669281069\" y=\"252.53681638613594\" height=\"3.3034263654223253\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"288.382181603507\" y=\"252.30353693395082\" height=\"3.536705817607441\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"285.22009627890714\" y=\"252.21745125795528\" height=\"3.622791493602989\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"282.0580109543073\" y=\"252.21712908494524\" height=\"3.6231136666130226\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"278.89592562970745\" y=\"251.75587634385718\" height=\"4.084366407701083\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"275.73384030510755\" y=\"251.5928363703014\" height=\"4.247406381256866\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"272.5717549805077\" y=\"251.51267605839752\" height=\"4.3275666931607475\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"269.40966965590786\" y=\"251.31851783908328\" height=\"4.52172491247498\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"266.247584331308\" y=\"251.28609204237682\" height=\"4.554150709181442\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"263.0854990067081\" y=\"251.1900038111725\" height=\"4.650238940385776\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"259.9234136821083\" y=\"251.15413678763213\" height=\"4.686105963926138\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"256.76132835750843\" y=\"251.11403751084302\" height=\"4.726205240715245\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"253.59924303290856\" y=\"251.05085440692102\" height=\"4.789388344637246\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"250.43715770830872\" y=\"251.00595029948485\" height=\"4.834292452073413\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"247.27507238370885\" y=\"251.00298002149\" height=\"4.837262730068261\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"244.112987059109\" y=\"250.7052518231191\" height=\"5.1349909284391515\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"240.95090173450913\" y=\"250.3185001499881\" height=\"5.521742601570168\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"237.7888164099093\" y=\"250.2162817259979\" height=\"5.623961025560362\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"234.62673108530942\" y=\"249.79292229333277\" height=\"6.047320458225499\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"231.46464576070957\" y=\"249.65916444130758\" height=\"6.181078310250683\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"228.3025604361097\" y=\"249.3656569712973\" height=\"6.474585780260952\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"225.14047511150986\" y=\"248.92419089161024\" height=\"6.916051859948027\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"221.97838978691\" y=\"248.88815832876716\" height=\"6.952084422791103\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"218.81630446231014\" y=\"248.1994262973915\" height=\"7.640816454166753\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"215.65421913771027\" y=\"248.1293722646899\" height=\"7.710870486868373\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"212.49213381311043\" y=\"247.95304409508165\" height=\"7.887198656476613\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"209.33004848851056\" y=\"247.82092749190267\" height=\"8.019315259655599\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"206.1679631639107\" y=\"247.77898266143174\" height=\"8.061260090126524\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"203.00587783931084\" y=\"247.72847588677246\" height=\"8.111766864785807\" width=\"2.8458767921399044\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"199.843792514711\" y=\"247.62396453389627\" height=\"8.216278217661994\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"196.68170719011113\" y=\"247.1665511521423\" height=\"8.673691599415974\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"193.51962186551128\" y=\"247.02752904551917\" height=\"8.81271370603909\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"190.3575365409114\" y=\"247.00875657427656\" height=\"8.831486177281704\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"187.19545121631157\" y=\"246.24506981343706\" height=\"9.595172938121209\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"184.0333658917117\" y=\"245.9224190444127\" height=\"9.917823707145573\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"180.87128056711185\" y=\"245.75005857948398\" height=\"10.090184172074288\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"177.70919524251198\" y=\"245.61069125007452\" height=\"10.22955150148374\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"174.54710991791214\" y=\"245.50112256672878\" height=\"10.339120184829483\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"171.38502459331227\" y=\"244.97234602974953\" height=\"10.867896721808734\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"168.22293926871242\" y=\"244.8528538938365\" height=\"10.987388857721754\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"165.06085394411255\" y=\"244.649643922587\" height=\"11.190598828971275\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"161.8987686195127\" y=\"244.33248004804554\" height=\"11.507762703512725\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"158.73668329491284\" y=\"244.27061916311104\" height=\"11.569623588447229\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"155.574597970313\" y=\"243.20522916520136\" height=\"12.635013586356905\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"152.41251264571312\" y=\"243.15429858897278\" height=\"12.685944162585486\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"149.25042732111328\" y=\"242.61780771094374\" height=\"13.222435040614528\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"146.0883419965134\" y=\"242.2410664508998\" height=\"13.599176300658456\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"142.92625667191356\" y=\"241.618665913349\" height=\"14.221576838209273\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"139.7641713473137\" y=\"241.5141702762294\" height=\"14.326072475328857\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"136.60208602271385\" y=\"240.98552260845415\" height=\"14.854720143104117\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"133.44000069811398\" y=\"240.6961331905281\" height=\"15.144109561030177\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"130.27791537351413\" y=\"240.53035972304338\" height=\"15.30988302851489\" width=\"2.8458767921398476\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"127.11583004891426\" y=\"240.13778640981414\" height=\"15.702456341744124\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"123.9537447243144\" y=\"239.11688143249833\" height=\"16.723361319059933\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"120.79165939971455\" y=\"237.18123927148713\" height=\"18.659003480071135\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"117.62957407511469\" y=\"236.36100721844923\" height=\"19.479235533109033\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"114.46748875051483\" y=\"235.67278385372845\" height=\"20.167458897829817\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"111.30540342591497\" y=\"234.86984699081404\" height=\"20.970395760744225\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"108.14331810131512\" y=\"234.22570160859152\" height=\"21.614541142966743\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"104.98123277671526\" y=\"234.00133089495677\" height=\"21.8389118566015\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"101.8191474521154\" y=\"233.90407445917947\" height=\"21.936168292378795\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"98.65706212751554\" y=\"233.65326408052206\" height=\"22.1869786710362\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"95.49497680291569\" y=\"233.41271818634988\" height=\"22.427524565208387\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"92.33289147831583\" y=\"231.77909619683334\" height=\"24.061146554724928\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"89.17080615371597\" y=\"230.6921221788277\" height=\"25.148120572730562\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"86.00872082911611\" y=\"227.2685603791894\" height=\"28.571682372368855\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"82.84663550451626\" y=\"226.43575048229678\" height=\"29.404492269261482\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"79.6845501799164\" y=\"225.92627918070843\" height=\"29.91396357084983\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"76.52246485531654\" y=\"225.75969006545685\" height=\"30.080552686101413\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"73.36037953071668\" y=\"221.67321931794882\" height=\"34.167023433609444\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"70.19829420611683\" y=\"221.66440854094787\" height=\"34.17583421061039\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"67.03620888151697\" y=\"221.32386957391813\" height=\"34.51637317764013\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"63.87412355691713\" y=\"219.84202250363612\" height=\"35.99822024792215\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"60.71203823231727\" y=\"217.53131281065743\" height=\"38.30892994090084\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"57.54995290771741\" y=\"217.07884412978413\" height=\"38.761398621774134\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"54.387867583117554\" y=\"216.61615287310985\" height=\"39.22408987844841\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"51.2257822585177\" y=\"213.8833247683778\" height=\"41.95691798318046\" width=\"2.8458767921398618\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"48.06369693391784\" y=\"213.1732056877221\" height=\"42.667037063836176\" width=\"2.845876792139869\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"44.90161160931798\" y=\"210.39433251162566\" height=\"45.4459102399326\" width=\"2.845876792139869\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"41.739526284718124\" y=\"208.713221696573\" height=\"47.12702105498528\" width=\"2.845876792139869\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"38.57744096011827\" y=\"203.51423987432332\" height=\"52.32600287723494\" width=\"2.845876792139869\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"35.41535563551841\" y=\"202.37196734747516\" height=\"53.4682754040831\" width=\"2.845876792139869\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"32.253270310918545\" y=\"200.97519438232308\" height=\"54.86504836923518\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"29.09118498631869\" y=\"192.7109212917629\" height=\"63.129321459795364\" width=\"2.8458767921398724\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"25.92909966171883\" y=\"190.0876985404753\" height=\"65.75254421108298\" width=\"2.8458767921398724\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"22.767014337118972\" y=\"184.26185238194563\" height=\"71.57839036961263\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"19.604929012519115\" y=\"176.48896594801113\" height=\"79.35127680354714\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"16.442843687919257\" y=\"139.017412902867\" height=\"116.82282984869127\" width=\"2.845876792139876\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"13.280758363319402\" y=\"109.4443471421556\" height=\"146.39589560940266\" width=\"2.8458767921398707\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"10.118673038719544\" y=\"106.26123432285723\" height=\"149.57900842870103\" width=\"2.8458767921398707\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"6.956587714119687\" y=\"60.9920666246482\" height=\"194.84817612691006\" width=\"2.8458767921398724\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"3.7945023895198293\" y=\"42.70867706101521\" height=\"213.13156569054306\" width=\"2.8458767921398724\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" <rect x=\"0.6324170649199716\" y=\"12.182868702455153\" height=\"243.6573740491031\" width=\"2.8458767921398715\" stroke=\"rgb(255,255,255)\" stroke-opacity=\"1.0\" fill=\"rgb(17,142,216)\" fill-opacity=\"1.0\" stroke-width=\"1.6500000000000001\">\n",
|
||
" </rect>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <defs>\n",
|
||
" <clipPath id=\"chzcaOf\">\n",
|
||
" <rect x=\"41.307295843643615\" y=\"0.0\" width=\"522.6927041563564\" height=\"255.84024275155826\">\n",
|
||
" </rect>\n",
|
||
" </clipPath>\n",
|
||
" </defs>\n",
|
||
" </g>\n",
|
||
" <g>\n",
|
||
" <g transform=\"translate(41.307295843643615 255.84024275155826 ) \">\n",
|
||
" <g transform=\"translate(2.0553554609899076 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Prince Tom</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(17.865782083989195 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Sonyakisa8</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(33.67620870698848 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Toon4</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(49.48663532998777 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Lovely Kit</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(65.29706195298705 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Sirf Shrey</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(81.10748857598634 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>SRH Funny </tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(96.91791519898563 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Lucky cat</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(112.72834182198491 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Half-Aslee</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(128.5387684449842 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Maiw Milky</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(144.3491950679835 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Meow WORLD</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(160.1596216909828 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Mantio</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(175.9700483139821 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Cat 😍 sho</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(191.78047493698136 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Furry Corn</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(207.59090155998064 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Beco's Sto</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(223.40132818297994 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Brennan Ro</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(239.21175480597924 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Wholesome </tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(255.0221814289785 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Cat dance </tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(270.8326080519778 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>WhiteCat</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(286.64303467497706 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>NewFunStor</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(302.4534612979764 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Meow Kingd</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(318.26388792097566 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Meow Memor</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(334.07431454397494 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Koray Zeyn</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(349.88474116697427 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>CaD Animal</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(365.69516778997354 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Republic O</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(381.5055944129728 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Grinly</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(397.3160210359721 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>CATZ</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(413.12644765897136 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Funny And </tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(428.9368742819707 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Cat Fun 0</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(444.74730090496996 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Kit Cat Ja</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(460.55772752796923 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Cheetosimb</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(476.36815415096856 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>pets</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(492.17858077396784 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>The Black </tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(507.9890073969671 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) rotate(90.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" dy=\"0.35em\">\n",
|
||
" <tspan>Testameow</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <line x1=\"0.0\" y1=\"0.0\" x2=\"522.6927041563564\" y2=\"0.0\" stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n",
|
||
" </line>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(41.307295843643615 0.0 ) \">\n",
|
||
" <g transform=\"translate(0.0 255.84024275155826 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>0</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 203.45438746308056 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>100M</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 151.06853217460286 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>200M</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 98.6826768861252 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>300M</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 46.296821597647494 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>400M</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(16.0 134.42012137577913 ) rotate(-90.0 ) \">\n",
|
||
" <text class=\"axis-title-y\" y=\"0.0\" text-anchor=\"middle\">\n",
|
||
" <tspan>viewCount</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(332.1536479218218 393.0 ) \">\n",
|
||
" <text class=\"axis-title-x\" y=\"0.0\" text-anchor=\"middle\">\n",
|
||
" <tspan>channelTitle</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 400.0 L600.0 400.0 L600.0 0.0 Z\" pointer-events=\"none\">\n",
|
||
" </path>\n",
|
||
" </g>\n",
|
||
" <g id=\"dT4o8EV\">\n",
|
||
" </g>\n",
|
||
"</svg>\n",
|
||
" <script>document.getElementById(\"5b91a5ee-58f0-4727-94e1-d9bdf0d82091\").style.display = \"none\";</script>"
|
||
],
|
||
"application/plot+json": {
|
||
"output_type": "lets_plot_spec",
|
||
"output": {
|
||
"mapping": {},
|
||
"data": {
|
||
"viewCount": [
|
||
4.65120542E8,
|
||
4.06849453E8,
|
||
3.71948067E8,
|
||
2.85533199E8,
|
||
2.79456916E8,
|
||
2.23004529E8,
|
||
1.51474623E8,
|
||
1.36636865E8,
|
||
1.25515836E8,
|
||
1.20508334E8,
|
||
1.04732562E8,
|
||
1.02066245E8,
|
||
9.9885747E7,
|
||
8.9961347E7,
|
||
8.6752254E7,
|
||
8.1447629E7,
|
||
8.0092074E7,
|
||
7.4875345E7,
|
||
7.3992108E7,
|
||
7.3128385E7,
|
||
6.8717443E7,
|
||
6.5888727E7,
|
||
6.5238668E7,
|
||
6.5221849E7,
|
||
5.7421135E7,
|
||
5.7103131E7,
|
||
5.6130595E7,
|
||
5.4540834E7,
|
||
4.8005555E7,
|
||
4.5930617E7,
|
||
4.2812176E7,
|
||
4.2352995E7,
|
||
4.187422E7,
|
||
4.1688566E7,
|
||
4.1260262E7,
|
||
4.0030645E7,
|
||
3.8497909E7,
|
||
3.7184151E7,
|
||
3.56184E7,
|
||
3.1923429E7,
|
||
2.9974611E7,
|
||
2.9225223E7,
|
||
2.8908776E7,
|
||
2.8356357E7,
|
||
2.7347215E7,
|
||
2.7147742E7,
|
||
2.5959634E7,
|
||
2.5240468E7,
|
||
2.4216354E7,
|
||
2.4119132E7,
|
||
2.2085396E7,
|
||
2.1967309E7,
|
||
2.1361871E7,
|
||
2.0973961E7,
|
||
2.0745861E7,
|
||
1.9736473E7,
|
||
1.9527316E7,
|
||
1.9261276E7,
|
||
1.8932255E7,
|
||
1.8316343E7,
|
||
1.6858532E7,
|
||
1.6822697E7,
|
||
1.6557316E7,
|
||
1.5684154E7,
|
||
1.5484651E7,
|
||
1.5388238E7,
|
||
1.5308169E7,
|
||
1.505597E7,
|
||
1.4719375E7,
|
||
1.4585648E7,
|
||
1.3270919E7,
|
||
1.3202136E7,
|
||
1.2359416E7,
|
||
1.1799136E7,
|
||
1.1543804E7,
|
||
1.0735648E7,
|
||
1.0540522E7,
|
||
9802247.0,
|
||
9233910.0,
|
||
9228240.0,
|
||
9142522.0,
|
||
9021911.0,
|
||
8945365.0,
|
||
8876898.0,
|
||
8693474.0,
|
||
8631576.0,
|
||
8260945.0,
|
||
8107926.0,
|
||
7796697.0,
|
||
6916206.0,
|
||
6915591.0,
|
||
6751261.0,
|
||
6305951.0,
|
||
6231819.0,
|
||
6071764.0,
|
||
5838098.0,
|
||
5446622.0,
|
||
5251862.0,
|
||
4661538.0,
|
||
4604465.0,
|
||
4600995.0,
|
||
4565509.0,
|
||
4324654.0,
|
||
3986768.0,
|
||
3356600.0,
|
||
3289204.0,
|
||
3235202.0,
|
||
3234636.0,
|
||
3063433.0,
|
||
2802480.0,
|
||
2534065.0,
|
||
2482309.0,
|
||
2360178.0,
|
||
2321983.0,
|
||
2079967.0,
|
||
1755952.0,
|
||
1730633.0,
|
||
1645219.0,
|
||
1395050.0,
|
||
1366083.0,
|
||
1269342.0,
|
||
1193048.0,
|
||
1149928.0,
|
||
1010213.0,
|
||
977144.0,
|
||
965420.0,
|
||
882603.0,
|
||
796043.0,
|
||
734874.0,
|
||
702630.0,
|
||
682845.0,
|
||
665884.0,
|
||
633793.0,
|
||
542624.0,
|
||
534821.0,
|
||
511175.0,
|
||
399787.0,
|
||
391351.0,
|
||
362063.0,
|
||
296742.0,
|
||
65866.0,
|
||
65674.0,
|
||
43228.0,
|
||
37642.0,
|
||
35667.0,
|
||
32152.0,
|
||
31934.0,
|
||
30738.0,
|
||
30456.0,
|
||
28954.0,
|
||
23204.0,
|
||
22211.0,
|
||
17510.0,
|
||
16117.0,
|
||
14153.0,
|
||
10593.0,
|
||
10372.0,
|
||
9708.0,
|
||
6782.0,
|
||
6302.0,
|
||
4548.0,
|
||
3782.0,
|
||
3240.0,
|
||
1781.0,
|
||
1039.0
|
||
],
|
||
"channelTitle": [
|
||
"Prince Tom",
|
||
"catvid-19",
|
||
"Cute Baby ",
|
||
"Like Nasty",
|
||
"exlittlebe",
|
||
"Sonyakisa8",
|
||
"VIKU INFO",
|
||
"MIRANO",
|
||
"Catfuntv",
|
||
" Cute Cat?",
|
||
"Toon4",
|
||
"Cute cat's",
|
||
"SugarStar",
|
||
"Meow Motio",
|
||
"ThomasTruc",
|
||
"Lovely Kit",
|
||
"toyfunnyca",
|
||
"Remus Bujo",
|
||
"Ana.simon_",
|
||
"Chpetoo_05",
|
||
"Sirf Shrey",
|
||
"Cat Cute J",
|
||
"Cat and Ha",
|
||
"MY CAT NEW",
|
||
"COOL PEACH",
|
||
"SRH Funny ",
|
||
"Kiran's An",
|
||
"Stocat",
|
||
"Teddy Kitt",
|
||
"dragon hub",
|
||
"Lucky cat",
|
||
"Princess c",
|
||
"Lovento Fi",
|
||
"Story Arc ",
|
||
"Funny-anim",
|
||
"Half-Aslee",
|
||
"Prank",
|
||
"Aww Animal",
|
||
"FunnyCatTv",
|
||
"The BN Fam",
|
||
"Maiw Milky",
|
||
"Adventures",
|
||
"Oscar's Fu",
|
||
"Impossible",
|
||
"DIARY DIMU",
|
||
"Meow WORLD",
|
||
"PurrfectPa",
|
||
"FunnyPaws",
|
||
"Baby Pop",
|
||
"Jeff Canal",
|
||
"Mantio",
|
||
"SydVids",
|
||
"Ai Game ",
|
||
"Shefali Ra",
|
||
"TheCatRank",
|
||
"Cat 😍 sho",
|
||
"FurryFritz",
|
||
"Lulu the C",
|
||
"COSEFNASTY",
|
||
"Meow Magic",
|
||
"Furry Corn",
|
||
"Pets Unive",
|
||
"Stew-Art",
|
||
"Dancing Ca",
|
||
"wk.loverba",
|
||
"Beco's Sto",
|
||
"Animal Wor",
|
||
"Rufus",
|
||
"CatAniki",
|
||
"Jusbrend M",
|
||
"Brennan Ro",
|
||
"LilyJoy",
|
||
"土豆の日記Cat's",
|
||
"A Satisfyi",
|
||
"Kak Nurul",
|
||
"Wholesome ",
|
||
"Pretty Kit",
|
||
"Cute Anima",
|
||
"Lovie Jenn",
|
||
"Every Minu",
|
||
"Cat dance ",
|
||
"Organic Na",
|
||
"Cute Cat o",
|
||
"The Pet Zo",
|
||
"Cute.video",
|
||
"WhiteCat",
|
||
"LOADING FU",
|
||
"Meowtvee",
|
||
"Cat Ai Net",
|
||
"CUTE CAT",
|
||
"NewFunStor",
|
||
"CatClips",
|
||
"Peshtook",
|
||
"DailyDoseO",
|
||
"OhCrayZ",
|
||
"Meow Kingd",
|
||
"The Meow S",
|
||
"Takasi ani",
|
||
"Kitty Show",
|
||
"𝐭𝐡𝐞-𝐏?",
|
||
"Meow Memor",
|
||
"Tasty Paws",
|
||
"Pets Funny",
|
||
"CAT KITTY ",
|
||
"Funny Sofi",
|
||
"Koray Zeyn",
|
||
"PET NATION",
|
||
"Jaw-Droppi",
|
||
"Meow Meow ",
|
||
"CUTE ANIMA",
|
||
"CaD Animal",
|
||
"All About ",
|
||
"Top 10 Ser",
|
||
"Pawfectly ",
|
||
"imili , Fu",
|
||
"Republic O",
|
||
"Ai pet cre",
|
||
"BearyDeliv",
|
||
"Cat 888",
|
||
"Humpty Hob",
|
||
"Grinly",
|
||
"Monster Bi",
|
||
"Evolving F",
|
||
"Acorn Stud",
|
||
"Incredible",
|
||
"CATZ",
|
||
"The Pet Co",
|
||
"CoCpet",
|
||
"ColdNPC",
|
||
"matta",
|
||
"Funny And ",
|
||
"Salim Ubey",
|
||
"Daisy Vide",
|
||
"Little Lov",
|
||
"Little Kit",
|
||
"Cat Fun 0",
|
||
"Happy Tail",
|
||
"Kitten Won",
|
||
"cats101",
|
||
"REST EASY ",
|
||
"Kit Cat Ja",
|
||
"CuteAnimal",
|
||
"Meowtoon S",
|
||
"Cat story ",
|
||
"Cute Momen",
|
||
"Cheetosimb",
|
||
"Kittycute",
|
||
"Funny vide",
|
||
"Sunghoonve",
|
||
"Paws & Cla",
|
||
"pets",
|
||
"Love For A",
|
||
"apt cat cu",
|
||
"CUTE CAT🥰",
|
||
"Cute Cat D",
|
||
"The Black ",
|
||
"Miau Miau",
|
||
"MUNDO PET",
|
||
"Sweet anim",
|
||
"sleep_cats",
|
||
"Testameow",
|
||
"Ansari Wri",
|
||
"About Robl",
|
||
"ODINKK 06",
|
||
"Kids' Bedt"
|
||
]
|
||
},
|
||
"kind": "plot",
|
||
"scales": [
|
||
{
|
||
"aesthetic": "x",
|
||
"discrete": true
|
||
},
|
||
{
|
||
"aesthetic": "y",
|
||
"limits": [
|
||
null,
|
||
null
|
||
]
|
||
}
|
||
],
|
||
"layers": [
|
||
{
|
||
"mapping": {
|
||
"x": "channelTitle",
|
||
"y": "viewCount"
|
||
},
|
||
"stat": "identity",
|
||
"sampling": "none",
|
||
"inherit_aes": false,
|
||
"position": "dodge",
|
||
"geom": "bar"
|
||
}
|
||
],
|
||
"data_meta": {
|
||
"series_annotations": [
|
||
{
|
||
"type": "str",
|
||
"column": "channelTitle"
|
||
},
|
||
{
|
||
"type": "int",
|
||
"column": "viewCount"
|
||
}
|
||
]
|
||
}
|
||
},
|
||
"apply_color_scheme": true,
|
||
"swing_enabled": true
|
||
}
|
||
},
|
||
"execution_count": 21,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"execution_count": 21
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:12:50.186274Z",
|
||
"start_time": "2025-05-28T11:12:49.743773Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"val growth = joined\n",
|
||
" .select { publishedAt and viewCount }\n",
|
||
" .sortBy { publishedAt }\n",
|
||
" .convert { all() }.toLong()\n",
|
||
" .cumSum { viewCount }"
|
||
],
|
||
"outputs": [],
|
||
"execution_count": 22
|
||
},
|
||
{
|
||
"metadata": {
|
||
"ExecuteTime": {
|
||
"end_time": "2025-05-28T11:12:54.745863Z",
|
||
"start_time": "2025-05-28T11:12:54.569514Z"
|
||
}
|
||
},
|
||
"cell_type": "code",
|
||
"source": [
|
||
"growth.plot {\n",
|
||
" area {\n",
|
||
" x(publishedAt)\n",
|
||
" y(viewCount)\n",
|
||
" }\n",
|
||
"}"
|
||
],
|
||
"outputs": [
|
||
{
|
||
"data": {
|
||
"text/html": [
|
||
" <iframe src='about:blank' style='border:none !important;' width='600' height='400' srcdoc=\"<html lang="en">\n",
|
||
" <head>\n",
|
||
" <meta charset="UTF-8">\n",
|
||
" <style> html, body { margin: 0; overflow: hidden; } </style>\n",
|
||
" <script type="text/javascript" data-lets-plot-script="library" src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.5.1/js-package/distr/lets-plot.min.js"></script>\n",
|
||
" </head>\n",
|
||
" <body>\n",
|
||
" <div id="YOE1vL"></div>\n",
|
||
" <script type="text/javascript" data-lets-plot-script="plot">\n",
|
||
" \n",
|
||
" (function() {\n",
|
||
" // ----------\n",
|
||
" \n",
|
||
" var plotSpec={\n",
|
||
""mapping":{\n",
|
||
"},\n",
|
||
""data":{\n",
|
||
""publishedAt":[1.577569041E12,1.580917785E12,1.586534428E12,1.588658412E12,1.606854526E12,1.62193824E12,1.624121248E12,1.628847525E12,1.630931238E12,1.643915461E12,1.644768012E12,1.660788019E12,1.66385613E12,1.664582409E12,1.666046538E12,1.672652771E12,1.673068557E12,1.674361058E12,1.677005928E12,1.679653492E12,1.680254122E12,1.680358674E12,1.680448798E12,1.682702817E12,1.682941601E12,1.68301981E12,1.683382685E12,1.68364645E12,1.684461611E12,1.684632901E12,1.685010602E12,1.685278844E12,1.685795773E12,1.686917165E12,1.687430453E12,1.688292028E12,1.688909778E12,1.690003678E12,1.69037843E12,1.691850373E12,1.692276804E12,1.693785617E12,1.69481532E12,1.695038217E12,1.69641004E12,1.696770029E12,1.697722573E12,1.70042041E12,1.702088091E12,1.703490944E12,1.704719601E12,1.708473604E12,1.710758999E12,1.710767884E12,1.710970137E12,1.711007273E12,1.711622705E12,1.711710029E12,1.712294024E12,1.7123256E12,1.71450696E12,1.716518623E12,1.717148789E12,1.718794319E12,1.718867992E12,1.7188905E12,1.71896499E12,1.719423661E12,1.719491004E12,1.719670726E12,1.720520215E12,1.720748375E12,1.720958071E12,1.721179802E12,1.721181612E12,1.72155768E12,1.721581025E12,1.721650763E12,1.721750104E12,1.7219085E12,1.722434406E12,1.722603661E12,1.722733213E12,1.723221904E12,1.723362484E12,1.723538203E12,1.723726852E12,1.72372879E12,1.723740856E12,1.723814102E12,1.724553019E12,1.72546536E12,1.7255433E12,1.725614511E12,1.725620416E12,1.726107304E12,1.726590582E12,1.726617618E12,1.726717616E12,1.72688222E12,1.727103079E12,1.7271837E12,1.727322677E12,1.727326817E12,1.727348053E12,1.727362825E12,1.727430478E12,1.72791217E12,1.728484104E12,1.728901827E12,1.729060203E12,1.729083628E12,1.72921518E12,1.729256979E12,1.729869012E12,1.729980039E12,1.73004093E12,1.730097008E12,1.730509204E12,1.730654248E12,1.730683829E12,1.730876206E12,1.73131832E12,1.732152857E12,1.732336507E12,1.732668879E12,1.732817473E12,1.733825741E12,1.733842592E12,1.733918603E12,1.733925619E12,1.734566425E12,1.734739205E12,1.735023563E12,1.735051582E12,1.735236523E12,1.735381818E12,1.735390333E12,1.735567575E12,1.736261194E12,1.736274846E12,1.736566217E12,1.736828497E12,1.736828662E12,1.737007044E12,1.737049131E12,1.737077628E12,1.737196291E12,1.737252047E12,1.737300905E12,1.73769485E12,1.73775942E12,1.737986459E12,1.738223746E12,1.738241817E12,1.738328416E12,1.73833542E12,1.738417927E12,1.738418186E12,1.738504846E12,1.738858513E12,1.739961024E12,1.739971105E12,1.7402075E12,1.740275336E12,1.740278829E12,1.740720607E12,1.741098409E12,1.741191058E12,1.741250545E12,1.741434597E12,1.74174324E12,1.741783978E12,1.741794614E12,1.741939267E12,1.742180948E12,1.742223453E12,1.742301998E12,1.742344355E12,1.742391903E12,1.742562902E12,1.743074336E12,1.743087086E12,1.743750016E12,1.743774001E12,1.743840037E12,1.744358607E12,1.744549211E12,1.74465214E12,1.744774027E12,1.744886001E12,1.744979139E12,1.745018956E12,1.745712045E12,1.746232252E12,1.746395036E12,1.74649112E12,1.746544596E12,1.746574424E12,1.746806635E12,1.747029797E12,1.747101636E12,1.747254488E12,1.74731221E12,1.747323287E12,1.747478101E12,1.747652405E12,1.747712065E12,1.747821616E12,1.747911633E12,1.747962041E12,1.748168812E12,1.748203233E12,1.748253132E12,1.748266283E12,1.748271084E12,1.748282461E12,1.748285761E12,1.7482893E12,1.748289626E12,1.748318271E12,1.748327403E12,1.748336892E12,1.748338558E12,1.748340036E12,1.748344224E12,1.748347245E12,1.74835089E12,1.7483529E12,1.74835817E12,1.748371501E12,1.748401467E12],\n",
|
||
""viewCount":[6436450.0,4.3620601E7,5.8676571E7,3.4420977E8,4.19085115E8,4.27962013E8,4.30764493E8,4.88185628E8,5.10271024E8,5.58276579E8,5.98307224E8,5.99673307E8,5.99970049E8,6.04062509E8,6.13290749E8,6.7039388E8,6.7178893E8,8.23263553E8,8.46390698E8,8.50995163E8,8.92255425E8,8.96242193E8,9.52728743E8,1.025857128E9,1.470506776E9,1.476222023E9,1.84817009E9,1.851405292E9,1.893758287E9,1.949888882E9,2.031336511E9,2.05024607E9,2.407649122E9,2.786927129E9,2.860919237E9,2.997556102E9,3.457090309E9,3.543842563E9,3.950692016E9,4.230148932E9,4.363878693E9,4.364384902E9,4.484893236E9,4.720347013E9,4.739608289E9,4.742556649E9,4.813087711E9,4.814459084E9,4.8268185E9,4.926704247E9,4.997999845E9,5.011270764E9,5.069022792E9,5.100056791E9,5.1220241E9,5.211985447E9,5.276901634E9,5.40241747E9,5.456958304E9,5.47648562E9,5.493042936E9,5.538973553E9,5.547507307E9,5.587706135E9,5.607442608E9,5.639366037E9,5.639765824E9,5.719857898E9,5.875860104E9,5.881931868E9,5.896539785E9,5.920254663E9,5.945495131E9,5.970190258E9,6.4353108E9,6.448512936E9,6.450243569E9,6.458367303E9,6.681371832E9,6.692061509E9,6.69261673E9,6.698848549E9,6.70227349E9,6.711218855E9,6.723017991E9,6.727679529E9,6.756588305E9,6.822477032E9,6.82483721E9,6.84554067E9,6.859742161E9,6.864655889E9,6.953080429E9,6.980427644E9,6.98853557E9,6.994990122E9,7.003251067E9,7.033225678E9,7.047725727E9,7.064584259E9,7.081406956E9,7.091947478E9,7.19668004E9,7.211988209E9,7.22747286E9,7.246405115E9,7.267766986E9,7.271001622E9,7.27215155E9,7.27550815E9,7.303864507E9,7.304547352E9,7.338276963E9,7.342601617E9,7.348439715E9,7.359175363E9,7.385134997E9,7.404155232E9,7.425129193E9,7.432045399E9,7.441847646E9,7.483721866E9,7.490292675E9,7.528790584E9,7.531854017E9,7.534428056E9,7.53516293E9,7.559282062E9,7.560317799E9,7.563607003E9,7.568861871E9,7.571223368E9,7.576070037E9,7.585212559E9,7.58882366E9,7.597845571E9,7.603408614E9,7.613104455E9,7.614081599E9,7.619528221E9,7.636482028E9,7.644132506E9,7.658718154E9,7.674402308E9,7.773044614E9,7.787763989E9,7.814911731E9,7.815446552E9,7.917512797E9,7.925309494E9,7.936853298E9,7.972471698E9,7.974116917E9,7.975872869E9,7.977952836E9,7.980486901E9,7.98296921E9,7.989720471E9,7.995679424E9,7.996222048E9,7.996733223E9,7.997124574E9,8.021340928E9,8.023871564E9,8.06556013E9,8.074253604E9,8.080203047E9,8.081182508E9,8.146404357E9,8.189216533E9,8.190226746E9,8.208543089E9,8.209036404E9,8.274275072E9,8.278876067E9,8.30810129E9,8.313336461E9,8.313896656E9,8.320202607E9,8.324768116E9,8.325130179E9,8.355369793E9,8.370758031E9,8.376009893E9,8.444727336E9,8.453415713E9,8.454685055E9,8.455567658E9,8.476313519E9,8.476413113E9,8.485044689E9,8.494278599E9,8.495829951E9,8.496625994E9,8.49676137E9,8.497442882E9,8.497508556E9,8.498142349E9,8.499107769E9,8.499145411E9,8.499181078E9,8.501503061E9,8.502205691E9,8.503398739E9,8.503430673E9,8.503496539E9,8.51041213E9,8.510426283E9,8.510461992E9,8.511127876E9,8.511150087E9,8.511173291E9,8.511593811E9,8.511624267E9,8.511640384E9,8.511672536E9,8.511682908E9,8.511698112E9,8.511727066E9,8.511770294E9,8.511772075E9,8.511802813E9,8.511809115E9,8.511824657E9,8.511842167E9,8.51185276E9,8.511862468E9,8.51186625E9,8.51186949E9,8.511876272E9,8.511877311E9,8.511881859E9]\n",
|
||
"},\n",
|
||
""kind":"plot",\n",
|
||
""scales":[{\n",
|
||
""aesthetic":"x",\n",
|
||
""limits":[null,null]\n",
|
||
"},{\n",
|
||
""aesthetic":"y",\n",
|
||
""limits":[null,null]\n",
|
||
"}],\n",
|
||
""layers":[{\n",
|
||
""mapping":{\n",
|
||
""x":"publishedAt",\n",
|
||
""y":"viewCount"\n",
|
||
"},\n",
|
||
""stat":"identity",\n",
|
||
""sampling":"none",\n",
|
||
""inherit_aes":false,\n",
|
||
""position":"identity",\n",
|
||
""geom":"area",\n",
|
||
""data":{\n",
|
||
"}\n",
|
||
"}],\n",
|
||
""data_meta":{\n",
|
||
""series_annotations":[{\n",
|
||
""type":"int",\n",
|
||
""column":"publishedAt"\n",
|
||
"},{\n",
|
||
""type":"int",\n",
|
||
""column":"viewCount"\n",
|
||
"}]\n",
|
||
"},\n",
|
||
""spec_id":"5"\n",
|
||
"};\n",
|
||
" var containerDiv = document.getElementById("YOE1vL");\n",
|
||
" \n",
|
||
" var toolbar = null;\n",
|
||
" var plotContainer = containerDiv; \n",
|
||
" \n",
|
||
" var options = {\n",
|
||
" sizing: {\n",
|
||
" width_mode: "fixed",\n",
|
||
" height_mode: "fixed",\n",
|
||
" width: 600.0,\n",
|
||
" height: 400.0\n",
|
||
" }\n",
|
||
" };\n",
|
||
" var fig = LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer, options);\n",
|
||
" if (toolbar) {\n",
|
||
" toolbar.bind(fig);\n",
|
||
" }\n",
|
||
" \n",
|
||
" // ----------\n",
|
||
" })();\n",
|
||
" \n",
|
||
" </script>\n",
|
||
" </body>\n",
|
||
"</html>\"></iframe> <svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" display=\"block\" class=\"plt-container\" id=9b52e313-269a-4d79-a1c7-21714fb34254 width=\"100%\" height=\"100%\" style=\"max-width: 600.0px; max-height: 400.0px;\" viewBox=\"0 0 600.0 400.0\" preserveAspectRatio=\"xMinYMin meet\">\n",
|
||
" <style type=\"text/css\">\n",
|
||
" .plt-container {\n",
|
||
" font-family: Lucida Grande, sans-serif;\n",
|
||
" user-select: none;\n",
|
||
" -webkit-user-select: none;\n",
|
||
" -moz-user-select: none;\n",
|
||
" -ms-user-select: none;\n",
|
||
"}\n",
|
||
"text {\n",
|
||
" text-rendering: optimizeLegibility;\n",
|
||
"}\n",
|
||
"#pw01gDx .plot-title {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 16.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#pw01gDx .plot-subtitle {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 15.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#pw01gDx .plot-caption {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#pw01gDx .hyperlink-element {\n",
|
||
"fill: #118ed8;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;\n",
|
||
"}\n",
|
||
"#pw01gDx .legend-title {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 15.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#pw01gDx .legend-item {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#pw01gDx .axis-title-x {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 15.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#pw01gDx .axis-text-x {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#d6ndQ2r .axis-tooltip-text-x {\n",
|
||
"fill: #ffffff;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#pw01gDx .axis-title-y {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 15.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#pw01gDx .axis-text-y {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#d6ndQ2r .axis-tooltip-text-y {\n",
|
||
"fill: #ffffff;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#pw01gDx .facet-strip-text-x {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#pw01gDx .facet-strip-text-y {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#d6ndQ2r .tooltip-text {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: normal;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#d6ndQ2r .tooltip-title {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: bold;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"#d6ndQ2r .tooltip-label {\n",
|
||
"fill: #474747;\n",
|
||
"font-weight: bold;\n",
|
||
" font-style: normal;font-family: Lucida Grande, sans-serif;\n",
|
||
"font-size: 13.0px;\n",
|
||
"\n",
|
||
"}\n",
|
||
"\n",
|
||
" </style>\n",
|
||
" <g id=\"pw01gDx\">\n",
|
||
" <path fill-rule=\"evenodd\" fill=\"rgb(255,255,255)\" fill-opacity=\"1.0\" d=\"M0.0 0.0 L0.0 400.0 L600.0 400.0 L600.0 0.0 Z\">\n",
|
||
" </path>\n",
|
||
" <g transform=\"translate(29.5 6.5 ) \">\n",
|
||
" <g>\n",
|
||
" <g transform=\"translate(25.34608493270721 0.0 ) \">\n",
|
||
" <g>\n",
|
||
" <line x1=\"31.452530707092592\" y1=\"0.0\" x2=\"31.452530707092592\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"88.7818549811509\" y1=\"0.0\" x2=\"88.7818549811509\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"146.1111792552092\" y1=\"0.0\" x2=\"146.1111792552092\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"203.44050352926752\" y1=\"0.0\" x2=\"203.44050352926752\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"260.7698278033249\" y1=\"0.0\" x2=\"260.7698278033249\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"318.0991520773832\" y1=\"0.0\" x2=\"318.0991520773832\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"375.42847635144153\" y1=\"0.0\" x2=\"375.42847635144153\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"432.75780062549984\" y1=\"0.0\" x2=\"432.75780062549984\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"490.08712489955815\" y1=\"0.0\" x2=\"490.08712489955815\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(25.34608493270721 0.0 ) \">\n",
|
||
" <g>\n",
|
||
" <line x1=\"0.0\" y1=\"341.0\" x2=\"538.6539150672928\" y2=\"341.0\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"302.8460511856706\" x2=\"538.6539150672928\" y2=\"302.8460511856706\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"264.69210237134126\" x2=\"538.6539150672928\" y2=\"264.69210237134126\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"226.53815355701187\" x2=\"538.6539150672928\" y2=\"226.53815355701187\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"188.38420474268253\" x2=\"538.6539150672928\" y2=\"188.38420474268253\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"150.23025592835313\" x2=\"538.6539150672928\" y2=\"150.23025592835313\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"112.07630711402376\" x2=\"538.6539150672928\" y2=\"112.07630711402376\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"73.9223582996944\" x2=\"538.6539150672928\" y2=\"73.9223582996944\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" <line x1=\"0.0\" y1=\"35.768409485365055\" x2=\"538.6539150672928\" y2=\"35.768409485365055\" stroke=\"rgb(233,233,233)\" stroke-opacity=\"1.0\" stroke-width=\"1.0\" fill=\"none\">\n",
|
||
" </line>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g clip-path=\"url(#cOgZkti)\" clip-bounds-jfx=\"[rect (25.34608493270721, 0.0), (538.6539150672928, 341.0)]\">\n",
|
||
" <g transform=\"translate(25.34608493270721 0.0 ) \">\n",
|
||
" <g>\n",
|
||
" <g>\n",
|
||
" <g>\n",
|
||
" <path d=\"M24.484268866695857 340.754424016154 L24.484268866695857 340.754424016154 L34.08333040103571 339.3357018221957 L50.18324779496652 338.76125711346566 L56.27157616941258 327.8670380540279 L108.43012217109936 325.0102479734427 L151.6670787292569 324.67155926152066 L157.9245974054993 324.56463358304745 L171.4723107426007 322.37379053739676 L177.44520365615426 321.53114546886854 L214.66404019683887 319.6995439805951 L217.1078488337971 318.1722168002605 L263.0286576425815 318.1200953394024 L271.8232941639717 318.10877346032333 L273.90514837919363 317.9526299509586 L278.10202469019623 317.60053615435226 L297.0385683845452 315.42182621704035 L298.23040490567564 315.3685995507469 L301.93531535335296 309.58924453813506 L309.51674584799 308.7068526315835 L317.1058986026055 308.53117410965615 L318.8275842045423 306.9569321852423 L319.1272789801169 306.8048212430357 L319.3856163811606 304.6496363056376 L325.84668568970574 301.85949964747306 L326.5311519580782 284.8943597373715 L326.75533541418554 284.6763004958722 L327.79550434148314 270.4850129859655 L328.55157780234094 270.3615772544535 L330.8882092675685 268.7456432510899 L331.37920626531377 266.60403940254207 L332.46187342069607 263.49649073462757 L333.2307800507915 262.77501638844006 L334.71253956417513 249.13867863634695 L337.9269718444921 234.6677249708681 L339.3982945543912 231.84463386957177 L341.86797018246216 226.6313979162113 L343.6387296859766 209.0983533038999 L346.7743570771463 205.78841224525618 L347.8485710236646 190.26549904035627 L352.0678459016608 179.60311417148193 L353.2901959556366 174.50079571533544 L357.6151574429323 174.4814818430601 L360.5667663025806 169.883613035924 L361.2056930222161 160.90012168012547 L365.1379773028966 160.1652279415228 L366.1698736087019 160.05273636499658 L368.9003088017671 157.3616978356283 L376.63356741234475 157.30937454038093 L381.41391865407877 156.83781401494193 L385.43514938137105 153.02677833662287 L388.95705316010026 150.30656973984387 L399.71777592573926 149.80023177559875 L406.2687834782055 147.59676385536304 L406.29425203051414 146.4126942460131 L406.87400342163437 145.57455466283852 L406.9804525109457 142.1421740341324 L408.7445675457775 139.665365158113 L408.9948788414231 134.87644037598122 L410.6688807778946 132.79549218725438 L410.759392315058 132.05044797210914 L417.01218705498104 131.41872098494247 L422.7785510778376 129.6662865749139 L424.58490062586225 129.34069016160382 L429.3017567744964 127.8069461356958 L429.5129379398586 127.05392175507839 L429.5774563613968 125.83591687903453 L429.79097942965564 125.82066342629989 L431.10574435436047 122.76483453447042 L431.2987807885902 116.81273435182393 L431.8139478294488 116.58107257895526 L434.24897934686123 116.02372286145328 L434.90299227818014 115.11890662010322 L435.5040787773287 114.1558830959815 L436.13966319735937 113.21366648446013 L436.1448515012062 95.46748113249902 L437.2228377172605 94.96376751131518 L437.28975537101996 94.8977370284168 L437.489656991831 94.58778449719958 L437.7744146119667 86.07928111236996 L438.2284513943523 85.67142772327023 L439.7359431749355 85.6502438496556 L440.2211069139357 85.41247534650941 L440.59246334485397 85.28180032290334 L441.99327958529466 84.94049932456784 L442.39624740561703 84.4903156935705 L442.89993998222235 84.31245961132248 L443.44069596697136 83.20947565153358 L443.4462511784932 80.69556053413424 L443.480837959828 80.60551042352955 L443.69079514411624 79.81559167041002 L445.80887575934776 79.27374870970885 L448.4240704112235 79.0862705831093 L448.6474827879192 75.71252521001867 L448.8516067134633 74.66912096869424 L448.86853319645525 74.35977157509984 L450.26418119831305 74.11350492847242 L451.6494812571382 73.79831725578447 L451.7269790376922 72.65466748196098 L452.01361992612965 72.10143335460975 L452.48545173077036 71.458213787597 L453.1185365922629 70.81636146734002 L453.3496339648773 70.41419893047572 L453.74800683985904 66.41823812073415 L453.75987400998383 65.83417102426705 L453.82074628649843 65.24337044260528 L453.863089725407 64.52103015439548 L454.0570147641629 63.70599042168317 L455.43776860757407 63.582576285306175 L457.07719809504124 63.538701991254015 L458.2745869612281 63.410634446663835 L458.72856641429007 62.328727453125 L458.79571338534606 62.30267421994688 L459.17280274869063 61.01575636832564 L459.2926181699577 60.850753740969935 L461.046990086129 60.628007248704876 L461.3652452304377 60.21839988442423 L461.5397872246558 59.22793733754952 L461.70053291698787 58.50224026492299 L462.8820788244111 57.70200083049525 L463.29784254991137 57.438120260781886 L463.38263548697887 57.064125830478474 L463.93407765777283 55.46645898395849 L465.20138250137825 55.215756673703766 L467.5935546159626 53.74690942425906 L468.11998113610935 53.630027358380914 L469.07271424449027 53.53181760612887 L469.49865392504944 53.50377926114788 L472.3888200814072 52.58353913337379 L472.43712290357416 52.544021676890736 L472.6550058669436 52.41852555583483 L472.6751169938989 52.218031591136764 L474.5119657424375 52.12793115547356 L475.00723377484064 51.94301159452755 L475.8223363744373 51.59418827810572 L475.90265189127877 51.45641051538831 L476.4327790193074 51.11218898488687 L476.84926222782724 50.89993692701296 L476.8736701876369 50.53000230578709 L477.3817283922863 50.49272040362689 L479.3699638209682 50.28491026662789 L479.4090968177179 49.638055582141874 L480.24430194487104 49.346159636124696 L480.9961187034005 48.78965956890886 L480.99659167032587 48.191247159996806 L481.50791764645874 44.4276536659454 L481.6285586099948 43.86605138561646 L481.7102442976866 42.830257826923855 L482.0503877780038 42.80985229386505 L482.2102104682144 38.91562200646422 L482.35026027448384 38.61814722820537 L483.4794903070406 38.17770552126672 L483.6645780304598 36.81872291081845 L484.3153776531526 36.755951309304066 L484.99555282160327 36.68895480657562 L485.0473527325512 36.60959585212214 L485.29558584019196 36.51291126581998 L485.31566256955284 36.4182013752926 L485.5521660974464 36.16061410866644 L485.55290851219615 35.93325652091744 L485.80131647427515 35.91255327259603 L486.81509098067727 35.893049927810864 L489.97540151241265 35.87811834178842 L490.00429835831346 34.95416881080274 L490.6819166389014 34.85761505439103 L490.8763662409747 33.26703164108426 L490.88637880745864 32.935341279069576 L492.15272051841566 32.70834653537378 L493.23567718688537 32.67097623051416 L493.50125241511887 30.182505142192213 L493.67176989077325 28.549051570458175 L494.199348730338 28.510507955364574 L495.0840634619335 27.811667142076885 L495.20083756254735 27.792845226817576 L495.23132529719624 25.3037324272305 L495.6459682344075 25.128186299505558 L496.33873865540136 24.013128637076193 L496.4605778018149 23.813386190707945 L496.6857243905697 23.7920125393519 L496.80713929998365 23.551415607672197 L496.94343403551284 23.377223410974864 L497.43359689159024 23.36340927780526 L498.8996051731283 22.209648593084182 L498.9361526173534 21.622526548089468 L500.83641906440334 21.422147274161546 L500.9051712565388 18.80030547128797 L501.0944612194271 18.468809579950403 L502.58092460386706 18.420379170254478 L503.12728453006366 18.386704380569142 L503.422327030974 17.595167861865946 L503.77171199836357 17.591367957487705 L504.09268168617655 17.26203924859675 L504.3596586163885 16.909729119100575 L504.47379270161946 16.85053891429959 L506.4605089032084 16.82016673042358 L507.9516646928405 16.8150016014489 L508.41827952897165 16.788999227484567 L508.6937010686497 16.78649350505009 L508.84698821589336 16.76231179936923 L508.93248917011533 16.7254772141049 L509.598114156066 16.724041023163636 L510.237800489248 16.722680186271248 L510.4437245555746 16.63408736574155 L510.8818696492717 16.607279256686127 L511.04732781205894 16.561759764361057 L511.0790796583078 16.56054135615966 L511.52284875871646 16.558028308167025 L512.022485285629 16.29417120313218 L512.193498659939 16.29363121029462 L512.5075229001159 16.292268770936403 L512.7655535892754 16.26686266688415 L512.9100464181756 16.266015229527 L513.502748503649 16.26512990529875 L513.601415137191 16.249085406743347 L513.7444489347881 16.247923390078256 L513.782145831965 16.2473084628852 L513.7959077362566 16.24608173712295 L513.8285195223698 16.245686004365837 L513.8379788608754 16.245105911728047 L513.8481232848053 16.2440012022941 L513.8490577527909 16.242351883394747 L513.9311676774832 16.242283931211887 L513.9573442469464 16.24111115513324 L513.9845441448479 16.240870708947796 L513.9893196775602 16.240277720275344 L513.9935563146246 16.239609644631628 L514.0055610751269 16.23920547985182 L514.0142206695591 16.238835081316722 L514.0246689389078 16.23869078308229 L514.0304305359969 16.238567164288156 L514.0455368129433 16.238308404207316 L514.0837496740387 16.23826876225445 L514.1696462005984 16.23809523809524 L514.1696462005984 341.0 L514.0837496740387 341.0 L514.0455368129433 341.0 L514.0304305359969 341.0 L514.0246689389078 341.0 L514.0142206695591 341.0 L514.0055610751269 341.0 L513.9935563146246 341.0 L513.9893196775602 341.0 L513.9845441448479 341.0 L513.9573442469464 341.0 L513.9311676774832 341.0 L513.8490577527909 341.0 L513.8481232848053 341.0 L513.8379788608754 341.0 L513.8285195223698 341.0 L513.7959077362566 341.0 L513.782145831965 341.0 L513.7444489347881 341.0 L513.601415137191 341.0 L513.502748503649 341.0 L512.9100464181756 341.0 L512.7655535892754 341.0 L512.5075229001159 341.0 L512.193498659939 341.0 L512.022485285629 341.0 L511.52284875871646 341.0 L511.0790796583078 341.0 L511.04732781205894 341.0 L510.8818696492717 341.0 L510.4437245555746 341.0 L510.237800489248 341.0 L509.598114156066 341.0 L508.93248917011533 341.0 L508.84698821589336 341.0 L508.6937010686497 341.0 L508.41827952897165 341.0 L507.9516646928405 341.0 L506.4605089032084 341.0 L504.47379270161946 341.0 L504.3596586163885 341.0 L504.09268168617655 341.0 L503.77171199836357 341.0 L503.422327030974 341.0 L503.12728453006366 341.0 L502.58092460386706 341.0 L501.0944612194271 341.0 L500.9051712565388 341.0 L500.83641906440334 341.0 L498.9361526173534 341.0 L498.8996051731283 341.0 L497.43359689159024 341.0 L496.94343403551284 341.0 L496.80713929998365 341.0 L496.6857243905697 341.0 L496.4605778018149 341.0 L496.33873865540136 341.0 L495.6459682344075 341.0 L495.23132529719624 341.0 L495.20083756254735 341.0 L495.0840634619335 341.0 L494.199348730338 341.0 L493.67176989077325 341.0 L493.50125241511887 341.0 L493.23567718688537 341.0 L492.15272051841566 341.0 L490.88637880745864 341.0 L490.8763662409747 341.0 L490.6819166389014 341.0 L490.00429835831346 341.0 L489.97540151241265 341.0 L486.81509098067727 341.0 L485.80131647427515 341.0 L485.55290851219615 341.0 L485.5521660974464 341.0 L485.31566256955284 341.0 L485.29558584019196 341.0 L485.0473527325512 341.0 L484.99555282160327 341.0 L484.3153776531526 341.0 L483.6645780304598 341.0 L483.4794903070406 341.0 L482.35026027448384 341.0 L482.2102104682144 341.0 L482.0503877780038 341.0 L481.7102442976866 341.0 L481.6285586099948 341.0 L481.50791764645874 341.0 L480.99659167032587 341.0 L480.9961187034005 341.0 L480.24430194487104 341.0 L479.4090968177179 341.0 L479.3699638209682 341.0 L477.3817283922863 341.0 L476.8736701876369 341.0 L476.84926222782724 341.0 L476.4327790193074 341.0 L475.90265189127877 341.0 L475.8223363744373 341.0 L475.00723377484064 341.0 L474.5119657424375 341.0 L472.6751169938989 341.0 L472.6550058669436 341.0 L472.43712290357416 341.0 L472.3888200814072 341.0 L469.49865392504944 341.0 L469.07271424449027 341.0 L468.11998113610935 341.0 L467.5935546159626 341.0 L465.20138250137825 341.0 L463.93407765777283 341.0 L463.38263548697887 341.0 L463.29784254991137 341.0 L462.8820788244111 341.0 L461.70053291698787 341.0 L461.5397872246558 341.0 L461.3652452304377 341.0 L461.046990086129 341.0 L459.2926181699577 341.0 L459.17280274869063 341.0 L458.79571338534606 341.0 L458.72856641429007 341.0 L458.2745869612281 341.0 L457.07719809504124 341.0 L455.43776860757407 341.0 L454.0570147641629 341.0 L453.863089725407 341.0 L453.82074628649843 341.0 L453.75987400998383 341.0 L453.74800683985904 341.0 L453.3496339648773 341.0 L453.1185365922629 341.0 L452.48545173077036 341.0 L452.01361992612965 341.0 L451.7269790376922 341.0 L451.6494812571382 341.0 L450.26418119831305 341.0 L448.86853319645525 341.0 L448.8516067134633 341.0 L448.6474827879192 341.0 L448.4240704112235 341.0 L445.80887575934776 341.0 L443.69079514411624 341.0 L443.480837959828 341.0 L443.4462511784932 341.0 L443.44069596697136 341.0 L442.89993998222235 341.0 L442.39624740561703 341.0 L441.99327958529466 341.0 L440.59246334485397 341.0 L440.2211069139357 341.0 L439.7359431749355 341.0 L438.2284513943523 341.0 L437.7744146119667 341.0 L437.489656991831 341.0 L437.28975537101996 341.0 L437.2228377172605 341.0 L436.1448515012062 341.0 L436.13966319735937 341.0 L435.5040787773287 341.0 L434.90299227818014 341.0 L434.24897934686123 341.0 L431.8139478294488 341.0 L431.2987807885902 341.0 L431.10574435436047 341.0 L429.79097942965564 341.0 L429.5774563613968 341.0 L429.5129379398586 341.0 L429.3017567744964 341.0 L424.58490062586225 341.0 L422.7785510778376 341.0 L417.01218705498104 341.0 L410.759392315058 341.0 L410.6688807778946 341.0 L408.9948788414231 341.0 L408.7445675457775 341.0 L406.9804525109457 341.0 L406.87400342163437 341.0 L406.29425203051414 341.0 L406.2687834782055 341.0 L399.71777592573926 341.0 L388.95705316010026 341.0 L385.43514938137105 341.0 L381.41391865407877 341.0 L376.63356741234475 341.0 L368.9003088017671 341.0 L366.1698736087019 341.0 L365.1379773028966 341.0 L361.2056930222161 341.0 L360.5667663025806 341.0 L357.6151574429323 341.0 L353.2901959556366 341.0 L352.0678459016608 341.0 L347.8485710236646 341.0 L346.7743570771463 341.0 L343.6387296859766 341.0 L341.86797018246216 341.0 L339.3982945543912 341.0 L337.9269718444921 341.0 L334.71253956417513 341.0 L333.2307800507915 341.0 L332.46187342069607 341.0 L331.37920626531377 341.0 L330.8882092675685 341.0 L328.55157780234094 341.0 L327.79550434148314 341.0 L326.75533541418554 341.0 L326.5311519580782 341.0 L325.84668568970574 341.0 L319.3856163811606 341.0 L319.1272789801169 341.0 L318.8275842045423 341.0 L317.1058986026055 341.0 L309.51674584799 341.0 L301.93531535335296 341.0 L298.23040490567564 341.0 L297.0385683845452 341.0 L278.10202469019623 341.0 L273.90514837919363 341.0 L271.8232941639717 341.0 L263.0286576425815 341.0 L217.1078488337971 341.0 L214.66404019683887 341.0 L177.44520365615426 341.0 L171.4723107426007 341.0 L157.9245974054993 341.0 L151.6670787292569 341.0 L108.43012217109936 341.0 L56.27157616941258 341.0 L50.18324779496652 341.0 L34.08333040103571 341.0 L24.484268866695857 341.0 Z\" fill=\"rgb(71,71,71)\" stroke-width=\"1.0\" fill-opacity=\"0.10196078431372549\">\n",
|
||
" </path>\n",
|
||
" </g>\n",
|
||
" <g>\n",
|
||
" <path d=\"M24.484268866695857 340.754424016154 L24.484268866695857 340.754424016154 L34.08333040103571 339.3357018221957 L50.18324779496652 338.76125711346566 L56.27157616941258 327.8670380540279 L108.43012217109936 325.0102479734427 L151.6670787292569 324.67155926152066 L157.9245974054993 324.56463358304745 L171.4723107426007 322.37379053739676 L177.44520365615426 321.53114546886854 L214.66404019683887 319.6995439805951 L217.1078488337971 318.1722168002605 L263.0286576425815 318.1200953394024 L271.8232941639717 318.10877346032333 L273.90514837919363 317.9526299509586 L278.10202469019623 317.60053615435226 L297.0385683845452 315.42182621704035 L298.23040490567564 315.3685995507469 L301.93531535335296 309.58924453813506 L309.51674584799 308.7068526315835 L317.1058986026055 308.53117410965615 L318.8275842045423 306.9569321852423 L319.1272789801169 306.8048212430357 L319.3856163811606 304.6496363056376 L325.84668568970574 301.85949964747306 L326.5311519580782 284.8943597373715 L326.75533541418554 284.6763004958722 L327.79550434148314 270.4850129859655 L328.55157780234094 270.3615772544535 L330.8882092675685 268.7456432510899 L331.37920626531377 266.60403940254207 L332.46187342069607 263.49649073462757 L333.2307800507915 262.77501638844006 L334.71253956417513 249.13867863634695 L337.9269718444921 234.6677249708681 L339.3982945543912 231.84463386957177 L341.86797018246216 226.6313979162113 L343.6387296859766 209.0983533038999 L346.7743570771463 205.78841224525618 L347.8485710236646 190.26549904035627 L352.0678459016608 179.60311417148193 L353.2901959556366 174.50079571533544 L357.6151574429323 174.4814818430601 L360.5667663025806 169.883613035924 L361.2056930222161 160.90012168012547 L365.1379773028966 160.1652279415228 L366.1698736087019 160.05273636499658 L368.9003088017671 157.3616978356283 L376.63356741234475 157.30937454038093 L381.41391865407877 156.83781401494193 L385.43514938137105 153.02677833662287 L388.95705316010026 150.30656973984387 L399.71777592573926 149.80023177559875 L406.2687834782055 147.59676385536304 L406.29425203051414 146.4126942460131 L406.87400342163437 145.57455466283852 L406.9804525109457 142.1421740341324 L408.7445675457775 139.665365158113 L408.9948788414231 134.87644037598122 L410.6688807778946 132.79549218725438 L410.759392315058 132.05044797210914 L417.01218705498104 131.41872098494247 L422.7785510778376 129.6662865749139 L424.58490062586225 129.34069016160382 L429.3017567744964 127.8069461356958 L429.5129379398586 127.05392175507839 L429.5774563613968 125.83591687903453 L429.79097942965564 125.82066342629989 L431.10574435436047 122.76483453447042 L431.2987807885902 116.81273435182393 L431.8139478294488 116.58107257895526 L434.24897934686123 116.02372286145328 L434.90299227818014 115.11890662010322 L435.5040787773287 114.1558830959815 L436.13966319735937 113.21366648446013 L436.1448515012062 95.46748113249902 L437.2228377172605 94.96376751131518 L437.28975537101996 94.8977370284168 L437.489656991831 94.58778449719958 L437.7744146119667 86.07928111236996 L438.2284513943523 85.67142772327023 L439.7359431749355 85.6502438496556 L440.2211069139357 85.41247534650941 L440.59246334485397 85.28180032290334 L441.99327958529466 84.94049932456784 L442.39624740561703 84.4903156935705 L442.89993998222235 84.31245961132248 L443.44069596697136 83.20947565153358 L443.4462511784932 80.69556053413424 L443.480837959828 80.60551042352955 L443.69079514411624 79.81559167041002 L445.80887575934776 79.27374870970885 L448.4240704112235 79.0862705831093 L448.6474827879192 75.71252521001867 L448.8516067134633 74.66912096869424 L448.86853319645525 74.35977157509984 L450.26418119831305 74.11350492847242 L451.6494812571382 73.79831725578447 L451.7269790376922 72.65466748196098 L452.01361992612965 72.10143335460975 L452.48545173077036 71.458213787597 L453.1185365922629 70.81636146734002 L453.3496339648773 70.41419893047572 L453.74800683985904 66.41823812073415 L453.75987400998383 65.83417102426705 L453.82074628649843 65.24337044260528 L453.863089725407 64.52103015439548 L454.0570147641629 63.70599042168317 L455.43776860757407 63.582576285306175 L457.07719809504124 63.538701991254015 L458.2745869612281 63.410634446663835 L458.72856641429007 62.328727453125 L458.79571338534606 62.30267421994688 L459.17280274869063 61.01575636832564 L459.2926181699577 60.850753740969935 L461.046990086129 60.628007248704876 L461.3652452304377 60.21839988442423 L461.5397872246558 59.22793733754952 L461.70053291698787 58.50224026492299 L462.8820788244111 57.70200083049525 L463.29784254991137 57.438120260781886 L463.38263548697887 57.064125830478474 L463.93407765777283 55.46645898395849 L465.20138250137825 55.215756673703766 L467.5935546159626 53.74690942425906 L468.11998113610935 53.630027358380914 L469.07271424449027 53.53181760612887 L469.49865392504944 53.50377926114788 L472.3888200814072 52.58353913337379 L472.43712290357416 52.544021676890736 L472.6550058669436 52.41852555583483 L472.6751169938989 52.218031591136764 L474.5119657424375 52.12793115547356 L475.00723377484064 51.94301159452755 L475.8223363744373 51.59418827810572 L475.90265189127877 51.45641051538831 L476.4327790193074 51.11218898488687 L476.84926222782724 50.89993692701296 L476.8736701876369 50.53000230578709 L477.3817283922863 50.49272040362689 L479.3699638209682 50.28491026662789 L479.4090968177179 49.638055582141874 L480.24430194487104 49.346159636124696 L480.9961187034005 48.78965956890886 L480.99659167032587 48.191247159996806 L481.50791764645874 44.4276536659454 L481.6285586099948 43.86605138561646 L481.7102442976866 42.830257826923855 L482.0503877780038 42.80985229386505 L482.2102104682144 38.91562200646422 L482.35026027448384 38.61814722820537 L483.4794903070406 38.17770552126672 L483.6645780304598 36.81872291081845 L484.3153776531526 36.755951309304066 L484.99555282160327 36.68895480657562 L485.0473527325512 36.60959585212214 L485.29558584019196 36.51291126581998 L485.31566256955284 36.4182013752926 L485.5521660974464 36.16061410866644 L485.55290851219615 35.93325652091744 L485.80131647427515 35.91255327259603 L486.81509098067727 35.893049927810864 L489.97540151241265 35.87811834178842 L490.00429835831346 34.95416881080274 L490.6819166389014 34.85761505439103 L490.8763662409747 33.26703164108426 L490.88637880745864 32.935341279069576 L492.15272051841566 32.70834653537378 L493.23567718688537 32.67097623051416 L493.50125241511887 30.182505142192213 L493.67176989077325 28.549051570458175 L494.199348730338 28.510507955364574 L495.0840634619335 27.811667142076885 L495.20083756254735 27.792845226817576 L495.23132529719624 25.3037324272305 L495.6459682344075 25.128186299505558 L496.33873865540136 24.013128637076193 L496.4605778018149 23.813386190707945 L496.6857243905697 23.7920125393519 L496.80713929998365 23.551415607672197 L496.94343403551284 23.377223410974864 L497.43359689159024 23.36340927780526 L498.8996051731283 22.209648593084182 L498.9361526173534 21.622526548089468 L500.83641906440334 21.422147274161546 L500.9051712565388 18.80030547128797 L501.0944612194271 18.468809579950403 L502.58092460386706 18.420379170254478 L503.12728453006366 18.386704380569142 L503.422327030974 17.595167861865946 L503.77171199836357 17.591367957487705 L504.09268168617655 17.26203924859675 L504.3596586163885 16.909729119100575 L504.47379270161946 16.85053891429959 L506.4605089032084 16.82016673042358 L507.9516646928405 16.8150016014489 L508.41827952897165 16.788999227484567 L508.6937010686497 16.78649350505009 L508.84698821589336 16.76231179936923 L508.93248917011533 16.7254772141049 L509.598114156066 16.724041023163636 L510.237800489248 16.722680186271248 L510.4437245555746 16.63408736574155 L510.8818696492717 16.607279256686127 L511.04732781205894 16.561759764361057 L511.0790796583078 16.56054135615966 L511.52284875871646 16.558028308167025 L512.022485285629 16.29417120313218 L512.193498659939 16.29363121029462 L512.5075229001159 16.292268770936403 L512.7655535892754 16.26686266688415 L512.9100464181756 16.266015229527 L513.502748503649 16.26512990529875 L513.601415137191 16.249085406743347 L513.7444489347881 16.247923390078256 L513.782145831965 16.2473084628852 L513.7959077362566 16.24608173712295 L513.8285195223698 16.245686004365837 L513.8379788608754 16.245105911728047 L513.8481232848053 16.2440012022941 L513.8490577527909 16.242351883394747 L513.9311676774832 16.242283931211887 L513.9573442469464 16.24111115513324 L513.9845441448479 16.240870708947796 L513.9893196775602 16.240277720275344 L513.9935563146246 16.239609644631628 L514.0055610751269 16.23920547985182 L514.0142206695591 16.238835081316722 L514.0246689389078 16.23869078308229 L514.0304305359969 16.238567164288156 L514.0455368129433 16.238308404207316 L514.0837496740387 16.23826876225445 L514.1696462005984 16.23809523809524 \" fill=\"none\" stroke-width=\"1.6500000000000001\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n",
|
||
" </path>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <defs>\n",
|
||
" <clipPath id=\"cOgZkti\">\n",
|
||
" <rect x=\"25.34608493270721\" y=\"0.0\" width=\"538.6539150672928\" height=\"341.0\">\n",
|
||
" </rect>\n",
|
||
" </clipPath>\n",
|
||
" </defs>\n",
|
||
" </g>\n",
|
||
" <g>\n",
|
||
" <g transform=\"translate(25.34608493270721 341.0 ) \">\n",
|
||
" <g transform=\"translate(31.452530707092592 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
|
||
" <tspan>1.6T</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(88.7818549811509 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
|
||
" <tspan>1.6T</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(146.1111792552092 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
|
||
" <tspan>1.6T</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(203.44050352926752 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
|
||
" <tspan>1.6T</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(260.7698278033249 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
|
||
" <tspan>1.7T</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(318.0991520773832 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
|
||
" <tspan>1.7T</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(375.42847635144153 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
|
||
" <tspan>1.7T</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(432.75780062549984 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
|
||
" <tspan>1.7T</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(490.08712489955815 0.0 ) \">\n",
|
||
" <line stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" x2=\"0.0\" y2=\"4.0\">\n",
|
||
" </line>\n",
|
||
" <g transform=\"translate(0.0 7.0 ) \">\n",
|
||
" <text class=\"axis-text-x\" text-anchor=\"middle\" dy=\"0.7em\">\n",
|
||
" <tspan>1.7T</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <line x1=\"0.0\" y1=\"0.0\" x2=\"538.6539150672928\" y2=\"0.0\" stroke-width=\"1.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\">\n",
|
||
" </line>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(25.34608493270721 0.0 ) \">\n",
|
||
" <g transform=\"translate(0.0 341.0 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>0</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 302.8460511856706 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>1G</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 264.69210237134126 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>2G</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 226.53815355701187 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>3G</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 188.38420474268253 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>4G</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 150.23025592835313 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>5G</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 112.07630711402376 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>6G</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 73.9223582996944 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>7G</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(0.0 35.768409485365055 ) \">\n",
|
||
" <g transform=\"translate(-3.0 0.0 ) \">\n",
|
||
" <text class=\"axis-text-y\" text-anchor=\"end\" dy=\"0.35em\">\n",
|
||
" <tspan>8G</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(16.0 177.0 ) rotate(-90.0 ) \">\n",
|
||
" <text class=\"axis-title-y\" y=\"0.0\" text-anchor=\"middle\">\n",
|
||
" <tspan>viewCount</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" <g transform=\"translate(324.17304246635365 393.0 ) \">\n",
|
||
" <text class=\"axis-title-x\" y=\"0.0\" text-anchor=\"middle\">\n",
|
||
" <tspan>publishedAt</tspan>\n",
|
||
" </text>\n",
|
||
" </g>\n",
|
||
" <path fill=\"rgb(0,0,0)\" fill-opacity=\"0.0\" stroke=\"rgb(71,71,71)\" stroke-opacity=\"1.0\" stroke-width=\"0.0\" d=\"M0.0 0.0 L0.0 400.0 L600.0 400.0 L600.0 0.0 Z\" pointer-events=\"none\">\n",
|
||
" </path>\n",
|
||
" </g>\n",
|
||
" <g id=\"d6ndQ2r\">\n",
|
||
" </g>\n",
|
||
"</svg>\n",
|
||
" <script>document.getElementById(\"9b52e313-269a-4d79-a1c7-21714fb34254\").style.display = \"none\";</script>"
|
||
],
|
||
"application/plot+json": {
|
||
"output_type": "lets_plot_spec",
|
||
"output": {
|
||
"mapping": {},
|
||
"data": {
|
||
"publishedAt": [
|
||
1.577569041E12,
|
||
1.580917785E12,
|
||
1.586534428E12,
|
||
1.588658412E12,
|
||
1.606854526E12,
|
||
1.62193824E12,
|
||
1.624121248E12,
|
||
1.628847525E12,
|
||
1.630931238E12,
|
||
1.643915461E12,
|
||
1.644768012E12,
|
||
1.660788019E12,
|
||
1.66385613E12,
|
||
1.664582409E12,
|
||
1.666046538E12,
|
||
1.672652771E12,
|
||
1.673068557E12,
|
||
1.674361058E12,
|
||
1.677005928E12,
|
||
1.679653492E12,
|
||
1.680254122E12,
|
||
1.680358674E12,
|
||
1.680448798E12,
|
||
1.682702817E12,
|
||
1.682941601E12,
|
||
1.68301981E12,
|
||
1.683382685E12,
|
||
1.68364645E12,
|
||
1.684461611E12,
|
||
1.684632901E12,
|
||
1.685010602E12,
|
||
1.685278844E12,
|
||
1.685795773E12,
|
||
1.686917165E12,
|
||
1.687430453E12,
|
||
1.688292028E12,
|
||
1.688909778E12,
|
||
1.690003678E12,
|
||
1.69037843E12,
|
||
1.691850373E12,
|
||
1.692276804E12,
|
||
1.693785617E12,
|
||
1.69481532E12,
|
||
1.695038217E12,
|
||
1.69641004E12,
|
||
1.696770029E12,
|
||
1.697722573E12,
|
||
1.70042041E12,
|
||
1.702088091E12,
|
||
1.703490944E12,
|
||
1.704719601E12,
|
||
1.708473604E12,
|
||
1.710758999E12,
|
||
1.710767884E12,
|
||
1.710970137E12,
|
||
1.711007273E12,
|
||
1.711622705E12,
|
||
1.711710029E12,
|
||
1.712294024E12,
|
||
1.7123256E12,
|
||
1.71450696E12,
|
||
1.716518623E12,
|
||
1.717148789E12,
|
||
1.718794319E12,
|
||
1.718867992E12,
|
||
1.7188905E12,
|
||
1.71896499E12,
|
||
1.719423661E12,
|
||
1.719491004E12,
|
||
1.719670726E12,
|
||
1.720520215E12,
|
||
1.720748375E12,
|
||
1.720958071E12,
|
||
1.721179802E12,
|
||
1.721181612E12,
|
||
1.72155768E12,
|
||
1.721581025E12,
|
||
1.721650763E12,
|
||
1.721750104E12,
|
||
1.7219085E12,
|
||
1.722434406E12,
|
||
1.722603661E12,
|
||
1.722733213E12,
|
||
1.723221904E12,
|
||
1.723362484E12,
|
||
1.723538203E12,
|
||
1.723726852E12,
|
||
1.72372879E12,
|
||
1.723740856E12,
|
||
1.723814102E12,
|
||
1.724553019E12,
|
||
1.72546536E12,
|
||
1.7255433E12,
|
||
1.725614511E12,
|
||
1.725620416E12,
|
||
1.726107304E12,
|
||
1.726590582E12,
|
||
1.726617618E12,
|
||
1.726717616E12,
|
||
1.72688222E12,
|
||
1.727103079E12,
|
||
1.7271837E12,
|
||
1.727322677E12,
|
||
1.727326817E12,
|
||
1.727348053E12,
|
||
1.727362825E12,
|
||
1.727430478E12,
|
||
1.72791217E12,
|
||
1.728484104E12,
|
||
1.728901827E12,
|
||
1.729060203E12,
|
||
1.729083628E12,
|
||
1.72921518E12,
|
||
1.729256979E12,
|
||
1.729869012E12,
|
||
1.729980039E12,
|
||
1.73004093E12,
|
||
1.730097008E12,
|
||
1.730509204E12,
|
||
1.730654248E12,
|
||
1.730683829E12,
|
||
1.730876206E12,
|
||
1.73131832E12,
|
||
1.732152857E12,
|
||
1.732336507E12,
|
||
1.732668879E12,
|
||
1.732817473E12,
|
||
1.733825741E12,
|
||
1.733842592E12,
|
||
1.733918603E12,
|
||
1.733925619E12,
|
||
1.734566425E12,
|
||
1.734739205E12,
|
||
1.735023563E12,
|
||
1.735051582E12,
|
||
1.735236523E12,
|
||
1.735381818E12,
|
||
1.735390333E12,
|
||
1.735567575E12,
|
||
1.736261194E12,
|
||
1.736274846E12,
|
||
1.736566217E12,
|
||
1.736828497E12,
|
||
1.736828662E12,
|
||
1.737007044E12,
|
||
1.737049131E12,
|
||
1.737077628E12,
|
||
1.737196291E12,
|
||
1.737252047E12,
|
||
1.737300905E12,
|
||
1.73769485E12,
|
||
1.73775942E12,
|
||
1.737986459E12,
|
||
1.738223746E12,
|
||
1.738241817E12,
|
||
1.738328416E12,
|
||
1.73833542E12,
|
||
1.738417927E12,
|
||
1.738418186E12,
|
||
1.738504846E12,
|
||
1.738858513E12,
|
||
1.739961024E12,
|
||
1.739971105E12,
|
||
1.7402075E12,
|
||
1.740275336E12,
|
||
1.740278829E12,
|
||
1.740720607E12,
|
||
1.741098409E12,
|
||
1.741191058E12,
|
||
1.741250545E12,
|
||
1.741434597E12,
|
||
1.74174324E12,
|
||
1.741783978E12,
|
||
1.741794614E12,
|
||
1.741939267E12,
|
||
1.742180948E12,
|
||
1.742223453E12,
|
||
1.742301998E12,
|
||
1.742344355E12,
|
||
1.742391903E12,
|
||
1.742562902E12,
|
||
1.743074336E12,
|
||
1.743087086E12,
|
||
1.743750016E12,
|
||
1.743774001E12,
|
||
1.743840037E12,
|
||
1.744358607E12,
|
||
1.744549211E12,
|
||
1.74465214E12,
|
||
1.744774027E12,
|
||
1.744886001E12,
|
||
1.744979139E12,
|
||
1.745018956E12,
|
||
1.745712045E12,
|
||
1.746232252E12,
|
||
1.746395036E12,
|
||
1.74649112E12,
|
||
1.746544596E12,
|
||
1.746574424E12,
|
||
1.746806635E12,
|
||
1.747029797E12,
|
||
1.747101636E12,
|
||
1.747254488E12,
|
||
1.74731221E12,
|
||
1.747323287E12,
|
||
1.747478101E12,
|
||
1.747652405E12,
|
||
1.747712065E12,
|
||
1.747821616E12,
|
||
1.747911633E12,
|
||
1.747962041E12,
|
||
1.748168812E12,
|
||
1.748203233E12,
|
||
1.748253132E12,
|
||
1.748266283E12,
|
||
1.748271084E12,
|
||
1.748282461E12,
|
||
1.748285761E12,
|
||
1.7482893E12,
|
||
1.748289626E12,
|
||
1.748318271E12,
|
||
1.748327403E12,
|
||
1.748336892E12,
|
||
1.748338558E12,
|
||
1.748340036E12,
|
||
1.748344224E12,
|
||
1.748347245E12,
|
||
1.74835089E12,
|
||
1.7483529E12,
|
||
1.74835817E12,
|
||
1.748371501E12,
|
||
1.748401467E12
|
||
],
|
||
"viewCount": [
|
||
6436450.0,
|
||
4.3620601E7,
|
||
5.8676571E7,
|
||
3.4420977E8,
|
||
4.19085115E8,
|
||
4.27962013E8,
|
||
4.30764493E8,
|
||
4.88185628E8,
|
||
5.10271024E8,
|
||
5.58276579E8,
|
||
5.98307224E8,
|
||
5.99673307E8,
|
||
5.99970049E8,
|
||
6.04062509E8,
|
||
6.13290749E8,
|
||
6.7039388E8,
|
||
6.7178893E8,
|
||
8.23263553E8,
|
||
8.46390698E8,
|
||
8.50995163E8,
|
||
8.92255425E8,
|
||
8.96242193E8,
|
||
9.52728743E8,
|
||
1.025857128E9,
|
||
1.470506776E9,
|
||
1.476222023E9,
|
||
1.84817009E9,
|
||
1.851405292E9,
|
||
1.893758287E9,
|
||
1.949888882E9,
|
||
2.031336511E9,
|
||
2.05024607E9,
|
||
2.407649122E9,
|
||
2.786927129E9,
|
||
2.860919237E9,
|
||
2.997556102E9,
|
||
3.457090309E9,
|
||
3.543842563E9,
|
||
3.950692016E9,
|
||
4.230148932E9,
|
||
4.363878693E9,
|
||
4.364384902E9,
|
||
4.484893236E9,
|
||
4.720347013E9,
|
||
4.739608289E9,
|
||
4.742556649E9,
|
||
4.813087711E9,
|
||
4.814459084E9,
|
||
4.8268185E9,
|
||
4.926704247E9,
|
||
4.997999845E9,
|
||
5.011270764E9,
|
||
5.069022792E9,
|
||
5.100056791E9,
|
||
5.1220241E9,
|
||
5.211985447E9,
|
||
5.276901634E9,
|
||
5.40241747E9,
|
||
5.456958304E9,
|
||
5.47648562E9,
|
||
5.493042936E9,
|
||
5.538973553E9,
|
||
5.547507307E9,
|
||
5.587706135E9,
|
||
5.607442608E9,
|
||
5.639366037E9,
|
||
5.639765824E9,
|
||
5.719857898E9,
|
||
5.875860104E9,
|
||
5.881931868E9,
|
||
5.896539785E9,
|
||
5.920254663E9,
|
||
5.945495131E9,
|
||
5.970190258E9,
|
||
6.4353108E9,
|
||
6.448512936E9,
|
||
6.450243569E9,
|
||
6.458367303E9,
|
||
6.681371832E9,
|
||
6.692061509E9,
|
||
6.69261673E9,
|
||
6.698848549E9,
|
||
6.70227349E9,
|
||
6.711218855E9,
|
||
6.723017991E9,
|
||
6.727679529E9,
|
||
6.756588305E9,
|
||
6.822477032E9,
|
||
6.82483721E9,
|
||
6.84554067E9,
|
||
6.859742161E9,
|
||
6.864655889E9,
|
||
6.953080429E9,
|
||
6.980427644E9,
|
||
6.98853557E9,
|
||
6.994990122E9,
|
||
7.003251067E9,
|
||
7.033225678E9,
|
||
7.047725727E9,
|
||
7.064584259E9,
|
||
7.081406956E9,
|
||
7.091947478E9,
|
||
7.19668004E9,
|
||
7.211988209E9,
|
||
7.22747286E9,
|
||
7.246405115E9,
|
||
7.267766986E9,
|
||
7.271001622E9,
|
||
7.27215155E9,
|
||
7.27550815E9,
|
||
7.303864507E9,
|
||
7.304547352E9,
|
||
7.338276963E9,
|
||
7.342601617E9,
|
||
7.348439715E9,
|
||
7.359175363E9,
|
||
7.385134997E9,
|
||
7.404155232E9,
|
||
7.425129193E9,
|
||
7.432045399E9,
|
||
7.441847646E9,
|
||
7.483721866E9,
|
||
7.490292675E9,
|
||
7.528790584E9,
|
||
7.531854017E9,
|
||
7.534428056E9,
|
||
7.53516293E9,
|
||
7.559282062E9,
|
||
7.560317799E9,
|
||
7.563607003E9,
|
||
7.568861871E9,
|
||
7.571223368E9,
|
||
7.576070037E9,
|
||
7.585212559E9,
|
||
7.58882366E9,
|
||
7.597845571E9,
|
||
7.603408614E9,
|
||
7.613104455E9,
|
||
7.614081599E9,
|
||
7.619528221E9,
|
||
7.636482028E9,
|
||
7.644132506E9,
|
||
7.658718154E9,
|
||
7.674402308E9,
|
||
7.773044614E9,
|
||
7.787763989E9,
|
||
7.814911731E9,
|
||
7.815446552E9,
|
||
7.917512797E9,
|
||
7.925309494E9,
|
||
7.936853298E9,
|
||
7.972471698E9,
|
||
7.974116917E9,
|
||
7.975872869E9,
|
||
7.977952836E9,
|
||
7.980486901E9,
|
||
7.98296921E9,
|
||
7.989720471E9,
|
||
7.995679424E9,
|
||
7.996222048E9,
|
||
7.996733223E9,
|
||
7.997124574E9,
|
||
8.021340928E9,
|
||
8.023871564E9,
|
||
8.06556013E9,
|
||
8.074253604E9,
|
||
8.080203047E9,
|
||
8.081182508E9,
|
||
8.146404357E9,
|
||
8.189216533E9,
|
||
8.190226746E9,
|
||
8.208543089E9,
|
||
8.209036404E9,
|
||
8.274275072E9,
|
||
8.278876067E9,
|
||
8.30810129E9,
|
||
8.313336461E9,
|
||
8.313896656E9,
|
||
8.320202607E9,
|
||
8.324768116E9,
|
||
8.325130179E9,
|
||
8.355369793E9,
|
||
8.370758031E9,
|
||
8.376009893E9,
|
||
8.444727336E9,
|
||
8.453415713E9,
|
||
8.454685055E9,
|
||
8.455567658E9,
|
||
8.476313519E9,
|
||
8.476413113E9,
|
||
8.485044689E9,
|
||
8.494278599E9,
|
||
8.495829951E9,
|
||
8.496625994E9,
|
||
8.49676137E9,
|
||
8.497442882E9,
|
||
8.497508556E9,
|
||
8.498142349E9,
|
||
8.499107769E9,
|
||
8.499145411E9,
|
||
8.499181078E9,
|
||
8.501503061E9,
|
||
8.502205691E9,
|
||
8.503398739E9,
|
||
8.503430673E9,
|
||
8.503496539E9,
|
||
8.51041213E9,
|
||
8.510426283E9,
|
||
8.510461992E9,
|
||
8.511127876E9,
|
||
8.511150087E9,
|
||
8.511173291E9,
|
||
8.511593811E9,
|
||
8.511624267E9,
|
||
8.511640384E9,
|
||
8.511672536E9,
|
||
8.511682908E9,
|
||
8.511698112E9,
|
||
8.511727066E9,
|
||
8.511770294E9,
|
||
8.511772075E9,
|
||
8.511802813E9,
|
||
8.511809115E9,
|
||
8.511824657E9,
|
||
8.511842167E9,
|
||
8.51185276E9,
|
||
8.511862468E9,
|
||
8.51186625E9,
|
||
8.51186949E9,
|
||
8.511876272E9,
|
||
8.511877311E9,
|
||
8.511881859E9
|
||
]
|
||
},
|
||
"kind": "plot",
|
||
"scales": [
|
||
{
|
||
"aesthetic": "x",
|
||
"limits": [
|
||
null,
|
||
null
|
||
]
|
||
},
|
||
{
|
||
"aesthetic": "y",
|
||
"limits": [
|
||
null,
|
||
null
|
||
]
|
||
}
|
||
],
|
||
"layers": [
|
||
{
|
||
"mapping": {
|
||
"x": "publishedAt",
|
||
"y": "viewCount"
|
||
},
|
||
"stat": "identity",
|
||
"sampling": "none",
|
||
"inherit_aes": false,
|
||
"position": "identity",
|
||
"geom": "area"
|
||
}
|
||
],
|
||
"data_meta": {
|
||
"series_annotations": [
|
||
{
|
||
"type": "int",
|
||
"column": "publishedAt"
|
||
},
|
||
{
|
||
"type": "int",
|
||
"column": "viewCount"
|
||
}
|
||
]
|
||
}
|
||
},
|
||
"apply_color_scheme": true,
|
||
"swing_enabled": true
|
||
}
|
||
},
|
||
"execution_count": 23,
|
||
"metadata": {},
|
||
"output_type": "execute_result"
|
||
}
|
||
],
|
||
"execution_count": 23
|
||
},
|
||
{
|
||
"metadata": {},
|
||
"cell_type": "code",
|
||
"outputs": [],
|
||
"execution_count": null,
|
||
"source": ""
|
||
}
|
||
],
|
||
"metadata": {
|
||
"kernelspec": {
|
||
"display_name": "Kotlin",
|
||
"language": "kotlin",
|
||
"name": "kotlin"
|
||
},
|
||
"language_info": {
|
||
"codemirror_mode": "text/x-kotlin",
|
||
"file_extension": ".kt",
|
||
"mimetype": "text/x-kotlin",
|
||
"name": "kotlin",
|
||
"nbconvert_exporter": "",
|
||
"pygments_lexer": "kotlin",
|
||
"version": "1.8.20-Beta"
|
||
},
|
||
"ktnbPluginMetadata": {
|
||
"projectLibraries": []
|
||
}
|
||
},
|
||
"nbformat": 4,
|
||
"nbformat_minor": 4
|
||
}
|