-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Explore compressing URL Metrics to work within the 64 KiB limit #1893
Comments
I think we could use the Compression Streams API to compress the JSON. Here is the browser support for Compression Streams API. I created this codepen to test the compression quality. I used the same URL Metrics JSON from your codepen. Below is the result: I also wrote a PHP code snippet to decompress the same metrics, which you can check here: Here’s a quick proof of concept (POC) I created: |
@b1ink0 wow, great idea! I love it. Way better compression as well. I see the CompressionStream API is available to >93% of browsers too via caniuse. The WP REST API in core should add support for such automatically decompressing such gzipped JSON bodies. When saving a post in the block editor, for example, it could be sped up by using gzipping the body. |
Unfortunately, I found a critical bug with the Compression Stream API where if you try to use it during |
Reopening since this had to be reverted, so this means the exploration can continue. One thought that comes to mind: every time that the URL Metric is modified, we could have a debounced process that would compress the URL Metric again in a Blob which is always ready to go whenever performance/plugins/optimization-detective/detect.js Lines 772 to 779 in 47eef00
In fact, given #1930 which suggests introducing these functions to |
If we do this, we should add a |
To pick this work back up, the following should serve as the initial state for the working branch:
|
Before we do that, however, let's make sure that Safari is able to send a |
After testing I can confirm Safari is able to send a |
Good news! Now the question is whether the performance impact of compressing and re-compressing the URL Metric data during the life of the page is going to be a problem. My guess is no because in general the URL Metric is constructed initially, and then there will only be sporadic updates later (e.g. when an embed is resized). What will be super important however is to |
In analyzing sites on HTTP Archive, I stumbled across a site that was not submitting URL Metrics due to the size being excessive:
URL Metric JSON{
"url": "https://███████████████",
"viewport": {
"width": 361,
"height": 641
},
"elements": [
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[3][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::A]/*[1][self::SPAN]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[4][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::A]/*[1][self::SPAN]/*[1][self::IMG]",
"intersectionRatio": 1,
"intersectionRect": {
"x": 80.43359375,
"y": 99.9881591796875,
"width": 199.9337158203125,
"height": 64.98307800292969,
"top": 99.9881591796875,
"right": 280.3673095703125,
"bottom": 164.9712371826172,
"left": 80.43359375
},
"boundingClientRect": {
"x": 80.43359375,
"y": 99.9881591796875,
"width": 199.9337158203125,
"height": 64.98307800292969,
"top": 99.9881591796875,
"right": 280.3673095703125,
"bottom": 164.9712371826172,
"left": 80.43359375
}
},
{
"isLCP": true,
"isLCPCandidate": true,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 1,
"intersectionRect": {
"x": 20.90364646911621,
"y": 274.4881591796875,
"width": 319.0078125,
"height": 179.44189453125,
"top": 274.4881591796875,
"right": 339.9114589691162,
"bottom": 453.9300537109375,
"left": 20.90364646911621
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 274.4881591796875,
"width": 319.0078125,
"height": 179.44189453125,
"top": 274.4881591796875,
"right": 339.9114589691162,
"bottom": 453.9300537109375,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 662.19970703125,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 662.19970703125,
"right": 130.9034023284912,
"bottom": 738.1884384155273,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 763.181884765625,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 763.181884765625,
"right": 130.9034023284912,
"bottom": 839.1706161499023,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 864.1641235351562,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 864.1641235351562,
"right": 130.9034023284912,
"bottom": 940.1528549194336,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 971.1817016601562,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 971.1817016601562,
"right": 130.9034023284912,
"bottom": 1047.1704330444336,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[5][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 1072.1639404296875,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 1072.1639404296875,
"right": 130.9034023284912,
"bottom": 1148.1526718139648,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[6][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 1173.1461181640625,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 1173.1461181640625,
"right": 130.9034023284912,
"bottom": 1249.1348495483398,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[7][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 1274.12841796875,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 1274.12841796875,
"right": 130.9034023284912,
"bottom": 1350.1171493530273,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[8][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 1375.110595703125,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 1375.110595703125,
"right": 130.9034023284912,
"bottom": 1451.0993270874023,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 2691.656982421875,
"width": 319.0078125,
"height": 179.44189453125,
"top": 2691.656982421875,
"right": 339.9114589691162,
"bottom": 2871.098876953125,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 3106.548828125,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 3106.548828125,
"right": 130.9034023284912,
"bottom": 3182.5375595092773,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 3213.56640625,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 3213.56640625,
"right": 130.9034023284912,
"bottom": 3289.5551376342773,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 3314.548583984375,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 3314.548583984375,
"right": 130.9034023284912,
"bottom": 3390.5373153686523,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 3415.53076171875,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 3415.53076171875,
"right": 130.9034023284912,
"bottom": 3491.5194931030273,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[5][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 3516.512939453125,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 3516.512939453125,
"right": 130.9034023284912,
"bottom": 3592.5016708374023,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[6][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 3623.530517578125,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 3623.530517578125,
"right": 130.9034023284912,
"bottom": 3699.5192489624023,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 3812.0185546875,
"width": 319.0078125,
"height": 179.44189453125,
"top": 3812.0185546875,
"right": 339.9114589691162,
"bottom": 3991.46044921875,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 4175.74462890625,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 4175.74462890625,
"right": 130.9034023284912,
"bottom": 4251.733360290527,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 4276.72705078125,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 4276.72705078125,
"right": 130.9034023284912,
"bottom": 4352.715782165527,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 4377.708984375,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 4377.708984375,
"right": 130.9034023284912,
"bottom": 4453.697715759277,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 4484.7265625,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 4484.7265625,
"right": 130.9034023284912,
"bottom": 4560.715293884277,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[5][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 4585.708984375,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 4585.708984375,
"right": 130.9034023284912,
"bottom": 4661.697715759277,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[6][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 4686.69140625,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 4686.69140625,
"right": 130.9034023284912,
"bottom": 4762.680137634277,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 5446.13818359375,
"width": 319.0078125,
"height": 179.44189453125,
"top": 5446.13818359375,
"right": 339.9114589691162,
"bottom": 5625.580078125,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 5837.044921875,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 5837.044921875,
"right": 130.9034023284912,
"bottom": 5913.033653259277,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 5938.02734375,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 5938.02734375,
"right": 130.9034023284912,
"bottom": 6014.016075134277,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 6039.00927734375,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 6039.00927734375,
"right": 130.9034023284912,
"bottom": 6114.998008728027,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 6139.99169921875,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 6139.99169921875,
"right": 130.9034023284912,
"bottom": 6215.980430603027,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[5][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 6247.00927734375,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 6247.00927734375,
"right": 130.9034023284912,
"bottom": 6322.998008728027,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[6][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 6347.99169921875,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 6347.99169921875,
"right": 130.9034023284912,
"bottom": 6423.980430603027,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[7][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 6448.9736328125,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 6448.9736328125,
"right": 130.9034023284912,
"bottom": 6524.962364196777,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[8][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 6549.9560546875,
"width": 109.999755859375,
"height": 75.98873138427734,
"top": 6549.9560546875,
"right": 130.9034023284912,
"bottom": 6625.944786071777,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 6758.4384765625,
"width": 319.0078125,
"height": 179.44189453125,
"top": 6758.4384765625,
"right": 339.9114589691162,
"bottom": 6937.88037109375,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 7149.359375,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 7149.359375,
"right": 167.4137783050537,
"bottom": 7231.766891479492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 7149.359375,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 7149.359375,
"right": 339.9114685058594,
"bottom": 7231.766891479492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 7353.96533203125,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 7353.96533203125,
"right": 167.4137783050537,
"bottom": 7436.372848510742,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 7353.96533203125,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 7353.96533203125,
"right": 339.9114685058594,
"bottom": 7436.372848510742,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 7669.06787109375,
"width": 319.0078125,
"height": 179.44189453125,
"top": 7669.06787109375,
"right": 339.9114589691162,
"bottom": 7848.509765625,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 8032.80810546875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 8032.80810546875,
"right": 167.4137783050537,
"bottom": 8115.215621948242,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 8032.80810546875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 8032.80810546875,
"right": 339.9114685058594,
"bottom": 8115.215621948242,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 8237.4140625,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 8237.4140625,
"right": 167.4137783050537,
"bottom": 8319.821578979492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[7][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 8237.4140625,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 8237.4140625,
"right": 339.9114685058594,
"bottom": 8319.821578979492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 8532.521484375,
"width": 319.0078125,
"height": 179.44189453125,
"top": 8532.521484375,
"right": 339.9114589691162,
"bottom": 8711.96337890625,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 8923.4423828125,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 8923.4423828125,
"right": 167.4137783050537,
"bottom": 9005.849899291992,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 8923.4423828125,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 8923.4423828125,
"right": 339.9114685058594,
"bottom": 9005.849899291992,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 9128.048828125,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 9128.048828125,
"right": 167.4137783050537,
"bottom": 9210.456344604492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 9128.048828125,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 9128.048828125,
"right": 339.9114685058594,
"bottom": 9210.456344604492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[5][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 9332.654296875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 9332.654296875,
"right": 167.4137783050537,
"bottom": 9415.061813354492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[6][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 9332.654296875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 9332.654296875,
"right": 339.9114685058594,
"bottom": 9415.061813354492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 10073.75390625,
"width": 319.0078125,
"height": 179.44189453125,
"top": 10073.75390625,
"right": 339.9114589691162,
"bottom": 10253.19580078125,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 10464.6748046875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 10464.6748046875,
"right": 167.4137783050537,
"bottom": 10547.082321166992,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 10464.6748046875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 10464.6748046875,
"right": 339.9114685058594,
"bottom": 10547.082321166992,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 10669.2802734375,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 10669.2802734375,
"right": 167.4137783050537,
"bottom": 10751.687789916992,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 10669.2802734375,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 10669.2802734375,
"right": 339.9114685058594,
"bottom": 10751.687789916992,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[5][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 10873.88671875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 10873.88671875,
"right": 167.4137783050537,
"bottom": 10956.294235229492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[6][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 10873.88671875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 10873.88671875,
"right": 339.9114685058594,
"bottom": 10956.294235229492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 11144.0009765625,
"width": 319.0078125,
"height": 179.44189453125,
"top": 11144.0009765625,
"right": 339.9114589691162,
"bottom": 11323.44287109375,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 11534.921875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 11534.921875,
"right": 167.4137783050537,
"bottom": 11617.329391479492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 11534.921875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 11534.921875,
"right": 339.9114685058594,
"bottom": 11617.329391479492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 11739.52734375,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 11739.52734375,
"right": 167.4137783050537,
"bottom": 11821.934860229492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 11739.52734375,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 11739.52734375,
"right": 339.9114685058594,
"bottom": 11821.934860229492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[5][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 11944.1337890625,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 11944.1337890625,
"right": 167.4137783050537,
"bottom": 12026.541305541992,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[6][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 11944.1337890625,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 11944.1337890625,
"right": 339.9114685058594,
"bottom": 12026.541305541992,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[5][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 12214.248046875,
"width": 319.0078125,
"height": 179.44189453125,
"top": 12214.248046875,
"right": 339.9114589691162,
"bottom": 12393.68994140625,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[5][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 12577.98828125,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 12577.98828125,
"right": 167.4137783050537,
"bottom": 12660.395797729492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[5][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 12577.98828125,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 12577.98828125,
"right": 339.9114685058594,
"bottom": 12660.395797729492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[5][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 12782.59375,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 12782.59375,
"right": 167.4137783050537,
"bottom": 12865.001266479492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[5][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 12782.59375,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 12782.59375,
"right": 339.9114685058594,
"bottom": 12865.001266479492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[5][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[5][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 12987.19921875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 12987.19921875,
"right": 167.4137783050537,
"bottom": 13069.606735229492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[5][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[6][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 12987.19921875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 12987.19921875,
"right": 339.9114685058594,
"bottom": 13069.606735229492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[6][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 13257.314453125,
"width": 319.0078125,
"height": 179.44189453125,
"top": 13257.314453125,
"right": 339.9114589691162,
"bottom": 13436.75634765625,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[6][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 13621.0546875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 13621.0546875,
"right": 167.4137783050537,
"bottom": 13703.462203979492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[6][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 13621.0546875,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 13621.0546875,
"right": 339.9114685058594,
"bottom": 13703.462203979492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[6][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 13825.66015625,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 13825.66015625,
"right": 167.4137783050537,
"bottom": 13908.067672729492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[6][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 13825.66015625,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 13825.66015625,
"right": 339.9114685058594,
"bottom": 13908.067672729492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[6][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[5][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 20.90364646911621,
"y": 14030.265625,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 14030.265625,
"right": 167.4137783050537,
"bottom": 14112.673141479492,
"left": 20.90364646911621
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[8][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[6][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[6][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 14030.265625,
"width": 146.5101318359375,
"height": 82.40751647949219,
"top": 14030.265625,
"right": 339.9114685058594,
"bottom": 14112.673141479492,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 14433.740234375,
"width": 299.0130310058594,
"height": 168.19482421875,
"top": 14433.740234375,
"right": 329.9140739440918,
"bottom": 14601.93505859375,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 14810.21875,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 14810.21875,
"right": 167.4137840270996,
"bottom": 14887.002731323242,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 14810.21875,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 14810.21875,
"right": 329.91407775878906,
"bottom": 14887.002731323242,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 14988.794921875,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 14988.794921875,
"right": 167.4137840270996,
"bottom": 15065.578903198242,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 14988.794921875,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 14988.794921875,
"right": 329.91407775878906,
"bottom": 15065.578903198242,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 15242.8759765625,
"width": 299.0130310058594,
"height": 168.19482421875,
"top": 15242.8759765625,
"right": 329.9140739440918,
"bottom": 15411.07080078125,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 15646.53515625,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 15646.53515625,
"right": 167.4137840270996,
"bottom": 15723.319137573242,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 15646.53515625,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 15646.53515625,
"right": 329.91407775878906,
"bottom": 15723.319137573242,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 15886.3310546875,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 15886.3310546875,
"right": 167.4137840270996,
"bottom": 15963.115036010742,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 15886.3310546875,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 15886.3310546875,
"right": 329.91407775878906,
"bottom": 15963.115036010742,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 16216.62890625,
"width": 299.0130310058594,
"height": 168.19482421875,
"top": 16216.62890625,
"right": 329.9140739440918,
"bottom": 16384.82373046875,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 16596.302734375,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 16596.302734375,
"right": 167.4137840270996,
"bottom": 16673.086715698242,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 16596.302734375,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 16596.302734375,
"right": 329.91407775878906,
"bottom": 16673.086715698242,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 16795.28515625,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 16795.28515625,
"right": 167.4137840270996,
"bottom": 16872.069137573242,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[3][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 16795.28515625,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 16795.28515625,
"right": 329.91407775878906,
"bottom": 16872.069137573242,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 17084.76953125,
"width": 299.0130310058594,
"height": 168.19482421875,
"top": 17084.76953125,
"right": 329.9140739440918,
"bottom": 17252.96435546875,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[1][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 17461.248046875,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 17461.248046875,
"right": 167.4137840270996,
"bottom": 17538.032028198242,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[2][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 17461.248046875,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 17461.248046875,
"right": 329.91407775878906,
"bottom": 17538.032028198242,
"left": 193.40133666992188
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[3][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 30.901042938232422,
"y": 17660.23046875,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 17660.23046875,
"right": 167.4137840270996,
"bottom": 17737.014450073242,
"left": 30.901042938232422
}
},
{
"isLCP": false,
"isLCPCandidate": false,
"xpath": "/HTML/BODY/DIV[@class='main-wrap']/*[5][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[12][self::SECTION]/*[1][self::DIV]/*[1][self::DIV]/*[1][self::DIV]/*[4][self::DIV]/*[1][self::DIV]/*[1][self::SECTION]/*[2][self::DIV]/*[1][self::DIV]/*[2][self::DIV]/*[4][self::ARTICLE]/*[1][self::DIV]/*[1][self::A]/*[1][self::IMG]",
"intersectionRatio": 0,
"intersectionRect": {
"x": 0,
"y": 0,
"width": 0,
"height": 0,
"top": 0,
"right": 0,
"bottom": 0,
"left": 0
},
"boundingClientRect": {
"x": 193.40133666992188,
"y": 17660.23046875,
"width": 136.5127410888672,
"height": 76.78398132324219,
"top": 17660.23046875,
"right": 329.91407775878906,
"bottom": 17737.014450073242,
"left": 193.40133666992188
}
}
]
} There are 99 |
This is blocked by #1951 which moves URL Metric mutation logic to the Note: We should probably opt-out of compression altogether if one of the client extensions includes a |
With #1951 merged this is now unblocked. |
This is a follow-up to #1851.
There is a maximum possible limit of 64 kibibytes (65,536 bytes) which can be submitted via
navigator.sendBeacon()
. This limit is the sum of all data sent by all calls tonavigator.sendBeacon()
, so when sending a URL Metric the size of the JSON may be less than this limit.So as more elements are tracked we could quickly run over our budget.
I did some quick prototyping with Gemini and after a few iterations it seemed to come up with something workable: https://g.co/gemini/share/38e21d505e0f
For a URL Metric with 100 elements, this saves ~17% on the JSON size: https://codepen.io/westonruter/pen/OPJbpap?editors=1011
I'm sure the algorithm could be further refined! The tricky part would be after sending the compressed JSON to the REST API, that we would have to uncompress the JSON before it is processed by the REST API. This could look like adding a
rest_pre_dispatch
action which runs extremely early (likePHP_INT_MIN
) and then checks to see if the endpoint is for storing a URL Metric and if so, to do$request->get_body()
and then decompress the JSON and put it back via$request->set_body()
.We should explore how feasible these compression strategies are.
Note: The URL Metric storage endpoint currently enforces a 64 KiB limit as well. This logic should be moved to the
rest_pre_dispatch
handler instead, since the decompressed URL Metric could be larger than 64 KiB.The text was updated successfully, but these errors were encountered: