tamnd commited on
Commit
f5ea73f
·
verified ·
1 Parent(s): 1753467

Publish shards CC-MAIN-2026-08/00889–00898 (10 files)

Browse files
README.md CHANGED
@@ -32,7 +32,7 @@ configs:
32
 
33
  Open Index is a large-scale web text dataset built from [Common Crawl](https://commoncrawl.org). Every page goes through a pipeline that extracts the main content from raw HTML, converts it to clean Markdown using [trafilatura](https://github.com/adbar/trafilatura), and packages the result into Parquet files with full WARC metadata preserved.
34
 
35
- The dataset currently includes crawl **CC-MAIN-2026-08** with **5,159,918 documents across 267 shards**. We plan to add more snapshots over time.
36
 
37
  Open Index is released under the **Open Data Commons Attribution License (ODC-By) v1.0**, the same license used by Common Crawl.
38
 
@@ -110,7 +110,7 @@ The following is an example row from the dataset:
110
 
111
  ```json
112
  {
113
- "doc_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
114
  "url": "https://example.com/article/interesting-topic",
115
  "host": "example.com",
116
  "crawl_date": "2026-02-06T18:14:58Z",
@@ -126,7 +126,7 @@ The following is an example row from the dataset:
126
 
127
  | Column | Type | Description |
128
  |---|---|---|
129
- | `doc_id` | string | Unique identifier derived from the WARC-Record-ID (UUID) |
130
  | `url` | string | Original URL of the crawled page |
131
  | `host` | string | Lowercase hostname extracted from the URL |
132
  | `crawl_date` | string | RFC 3339 timestamp from the WARC record |
@@ -164,28 +164,28 @@ Empty conversions (pages where trafilatura could not extract meaningful content)
164
 
165
  ### Compression Ratios
166
 
167
- Numbers below are actual measurements summed across all 267 files of CC-MAIN-2026-08 (5,159,918 pages total), projected to the full crawl of 100,000 WARC files.
168
 
169
- | Stage | 267 files (measured) | 100,000 files (projected) | Reduction |
170
  |---|---|---|---|
171
- | Raw WARC (.warc.gz, downloaded) | ~216.4 GB | ~83 TB | — |
172
- | HTML extracted (uncompressed) | 637.7 GB | ~295 TB | — |
173
- | Packed markdown WARC (.md.warc.gz) | ~10.9 GB | ~3.7 TB | **-98.3%** vs HTML |
174
- | Final Parquet (Zstd level 19) | 7.4 GB | ~2.9 TB | **-32.2%** vs packed WARC |
175
 
176
- The big win is the HTML → Markdown step: trafilatura strips all tags, scripts, styles, navigation, and ads, keeping only the main content. This cuts 637.7 GB of uncompressed HTML down to 23.1 GB of markdown — a **98.3% reduction** — before any file-level compression is applied. Parquet with Zstd level 19 then compresses the markdown a further 68.1%.
177
 
178
- End to end: ~216.4 GB of raw gzipped WARCs becomes **7.4 GB of Parquet** — a **96.6% total reduction** — containing 5,159,918 clean markdown documents.
179
 
180
  ### Processing Times
181
 
182
- Pipeline timings across 267 shards of CC-MAIN-2026-08:
183
 
184
  ```
185
- Download (raw WARC) ████████████████████████ total 8h 54m 20s avg 2m 0s
186
- Convert (HTML → MD) █░░░░░░░░░░░░░░░░░░░░░░░ total 16m 51s avg 3s
187
- Export (Parquet) ████░░░░░░░░░░░░░░░░░░░ total 1h 48m 12s avg 24s
188
- Publish (HuggingFace) ████████████░░░░░░░░░░░░ total 4h 47m 17s avg 1m 4s
189
  ```
190
 
191
  ### Dataset Charts
 
32
 
33
  Open Index is a large-scale web text dataset built from [Common Crawl](https://commoncrawl.org). Every page goes through a pipeline that extracts the main content from raw HTML, converts it to clean Markdown using [trafilatura](https://github.com/adbar/trafilatura), and packages the result into Parquet files with full WARC metadata preserved.
34
 
35
+ The dataset currently includes crawl **CC-MAIN-2026-08** with **5,838,642 documents across 303 shards**. We plan to add more snapshots over time.
36
 
37
  Open Index is released under the **Open Data Commons Attribution License (ODC-By) v1.0**, the same license used by Common Crawl.
38
 
 
110
 
111
  ```json
112
  {
113
+ "doc_id": "6aaa5be7-a917-5105-aa60-e39ea1d087fc",
114
  "url": "https://example.com/article/interesting-topic",
115
  "host": "example.com",
116
  "crawl_date": "2026-02-06T18:14:58Z",
 
126
 
127
  | Column | Type | Description |
128
  |---|---|---|
129
+ | `doc_id` | string | Deterministic UUID v5 derived from the canonical URL: `doc_id = UUID5(NamespaceURL, url)` — identical URLs always produce the same `doc_id` across crawls |
130
  | `url` | string | Original URL of the crawled page |
131
  | `host` | string | Lowercase hostname extracted from the URL |
132
  | `crawl_date` | string | RFC 3339 timestamp from the WARC record |
 
164
 
165
  ### Compression Ratios
166
 
167
+ Numbers below are actual measurements summed across all 303 files of CC-MAIN-2026-08 (5,838,642 pages total), projected to the full crawl of 100,000 WARC files.
168
 
169
+ | Stage | 303 files (measured) | 100,000 files (projected) | Reduction |
170
  |---|---|---|---|
171
+ | Raw WARC (.warc.gz, downloaded) | ~245.6 GB | ~83 TB | — |
172
+ | HTML extracted (uncompressed) | 721.2 GB | ~295 TB | — |
173
+ | Packed markdown WARC (.md.warc.gz) | ~12.3 GB | ~3.7 TB | **-98.3%** vs HTML |
174
+ | Final Parquet (Zstd level 19) | 8.4 GB | ~2.9 TB | **-32.1%** vs packed WARC |
175
 
176
+ The big win is the HTML → Markdown step: trafilatura strips all tags, scripts, styles, navigation, and ads, keeping only the main content. This cuts 721.2 GB of uncompressed HTML down to 26.2 GB of markdown — a **98.3% reduction** — before any file-level compression is applied. Parquet with Zstd level 19 then compresses the markdown a further 68.1%.
177
 
178
+ End to end: ~245.6 GB of raw gzipped WARCs becomes **8.4 GB of Parquet** — a **96.6% total reduction** — containing 5,838,642 clean markdown documents.
179
 
180
  ### Processing Times
181
 
182
+ Pipeline timings across 303 shards of CC-MAIN-2026-08:
183
 
184
  ```
185
+ Download (raw WARC) ████████████████████████ total 8h 48m 10s avg 1m 44s
186
+ Convert (HTML → MD) █░░░░░░░░░░░░░░░░░░░░░░░ total 30m 47s avg 6s
187
+ Export (Parquet) ████░░░░░░░░░░░░░░░░░░░ total 1h 50m 4s avg 21s
188
+ Publish (HuggingFace) ████████████░░░░░░░░░░░░ total 4h 35m 57s avg 54s
189
  ```
190
 
191
  ### Dataset Charts
data/CC-MAIN-2026-08/00889.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c530ab6323dc2f4249032aefb65f83ffc969f36b50131000edfd21a3ee96461a
3
+ size 30973295
data/CC-MAIN-2026-08/00890.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f84d739c1bbf99bdd875c1741f5fcd9235f6d1f91ef554de529a7b35b59785b
3
+ size 28301173
data/CC-MAIN-2026-08/00891.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f82a453a6a4c98cc9b136f8592dbd8186a552e3893a81ff8f4cb5433707bf14
3
+ size 30860487
data/CC-MAIN-2026-08/00892.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02eae65166da0f1470eeedb2618b050197885bcc88c9f64e4ce878d37f6d3d06
3
+ size 29907179
data/CC-MAIN-2026-08/00893.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32f876d78baecd67b60e463ee2e5ef33d80eddfe1b5ee512ca515e4b45ca32e5
3
+ size 29589336
data/CC-MAIN-2026-08/00894.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adc01554d8f4173484337269b2908c9b834a47323001fc2a9b9d88b125319135
3
+ size 30232114
data/CC-MAIN-2026-08/00895.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c69cd69be4a135dde4fe730f15ff84659c33a263712ca3e6d857873c7ebd4b37
3
+ size 29247904
data/CC-MAIN-2026-08/00896.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0f47907bbd992ef3aba1ab49e46186d358cce6a2bf968560937ab3e0d151fbc
3
+ size 30180239
data/CC-MAIN-2026-08/00897.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1d9e147335862e2be0571c471a9f673e9467eecfb27e8b214557ac06f038d290
3
+ size 29660981
data/CC-MAIN-2026-08/00898.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f25a306d2775560a79c3cddfe2d2eb4ba38f8b99ad822b4d8b3591782e6a8b6b
3
+ size 29479183
stats.csv CHANGED
@@ -49,15 +49,16 @@ CC-MAIN-2026-08,46,19497,2587172839,93962075,30171609,2026-03-13T07:16:54Z,156,0
49
  CC-MAIN-2026-08,47,19360,2607142769,94572800,30141571,2026-03-13T07:24:07Z,375,0,31,25
50
  CC-MAIN-2026-08,48,19446,2550413995,94532267,30664841,2026-03-13T10:34:53Z,0,0,0,0
51
  CC-MAIN-2026-08,49,19306,2588072529,94515530,29853644,2026-03-13T09:48:51Z,139,0,22,26
52
- CC-MAIN-2026-08,50,19627,2609847755,95762688,30233987,2026-03-13T09:51:37Z,143,0,22,26
53
- CC-MAIN-2026-08,51,19297,2556393249,92698482,30113318,2026-03-13T09:54:53Z,172,0,22,26
54
- CC-MAIN-2026-08,52,19607,2601151988,92878787,30267347,2026-03-13T09:58:53Z,216,0,22,26
55
- CC-MAIN-2026-08,53,19357,2578191580,96554618,29812656,2026-03-13T10:02:24Z,168,0,42,26
56
- CC-MAIN-2026-08,54,19483,2558749188,95680427,29738982,2026-03-13T10:04:53Z,123,0,25,26
57
- CC-MAIN-2026-08,55,19811,2639871700,95584061,30186548,2026-03-13T10:08:46Z,203,0,28,26
58
- CC-MAIN-2026-08,56,19564,2584558902,96118951,30612792,2026-03-13T10:11:02Z,110,0,24,26
59
- CC-MAIN-2026-08,57,19287,2537367660,89669513,29101832,2026-03-13T10:13:52Z,149,0,21,26
60
- CC-MAIN-2026-08,58,19411,2568951195,90787416,28734704,2026-03-13T10:20:05Z,78,0,25,0
 
61
  CC-MAIN-2026-08,101,19267,2514449658,96925434,30875010,2026-03-13T06:40:05Z,179,0,50,81
62
  CC-MAIN-2026-08,102,19438,2568537422,97402434,31137610,2026-03-13T06:42:52Z,93,0,20,52
63
  CC-MAIN-2026-08,103,19511,2593312947,96164480,30296223,2026-03-13T06:47:48Z,187,0,46,61
@@ -106,6 +107,15 @@ CC-MAIN-2026-08,145,19411,2578264098,98409544,31288259,2026-03-13T10:05:35Z,105,
106
  CC-MAIN-2026-08,146,19315,2510247125,93773926,29238318,2026-03-13T10:08:59Z,177,0,25,0
107
  CC-MAIN-2026-08,147,19186,2543360279,93393458,29762722,2026-03-13T10:13:00Z,200,0,40,0
108
  CC-MAIN-2026-08,148,19552,2560436014,92340180,29533467,2026-03-13T10:15:33Z,121,0,31,0
 
 
 
 
 
 
 
 
 
109
  CC-MAIN-2026-08,251,19610,2594898345,97558492,31917087,2026-03-13T06:42:12Z,277,0,23,136
110
  CC-MAIN-2026-08,252,19240,2525928701,98163046,31104034,2026-03-13T06:47:10Z,238,0,49,10
111
  CC-MAIN-2026-08,253,19312,2557230855,96017199,30399966,2026-03-13T06:51:42Z,130,0,23,117
@@ -148,7 +158,15 @@ CC-MAIN-2026-08,289,19470,2566814697,92315753,29674457,2026-03-13T08:48:43Z,79,0
148
  CC-MAIN-2026-08,290,19333,2552308644,90326736,28308814,2026-03-13T08:51:49Z,71,0,18,95
149
  CC-MAIN-2026-08,291,19721,2581488854,98585156,31036664,2026-03-13T08:53:20Z,70,0,20,0
150
  CC-MAIN-2026-08,292,19312,2543945839,96808758,30391397,2026-03-13T10:34:53Z,0,0,0,0
151
- CC-MAIN-2026-08,293,3961,435613457,29961376,8191281,2026-03-13T10:35:21Z,0,18,8,0
 
 
 
 
 
 
 
 
152
  CC-MAIN-2026-08,401,19517,2605589961,95609438,30404753,2026-03-13T06:41:08Z,218,0,47,107
153
  CC-MAIN-2026-08,402,19446,2552785517,96654791,30588984,2026-03-13T06:43:58Z,98,0,26,44
154
  CC-MAIN-2026-08,403,19320,2579048144,91406292,29375992,2026-03-13T06:49:29Z,198,0,33,98
@@ -173,16 +191,17 @@ CC-MAIN-2026-08,421,19425,2579210908,95275597,30546957,2026-03-13T08:32:40Z,126,
173
  CC-MAIN-2026-08,422,19427,2555156689,91998757,28929921,2026-03-13T08:35:01Z,110,0,22,7
174
  CC-MAIN-2026-08,423,19529,2593089061,91877466,30698634,2026-03-13T08:37:01Z,85,0,20,12
175
  CC-MAIN-2026-08,424,19493,2582889122,97164973,30896366,2026-03-13T08:40:17Z,99,0,21,73
176
- CC-MAIN-2026-08,425,19407,2554177884,94629300,29465545,2026-03-13T10:34:54Z,0,0,0,0
177
- CC-MAIN-2026-08,426,19361,2596094056,94590616,30321267,2026-03-13T10:35:22Z,0,0,28,0
178
- CC-MAIN-2026-08,427,19459,2589539484,95470936,30123921,2026-03-13T09:50:32Z,175,0,25,35
179
- CC-MAIN-2026-08,428,19661,2602153067,94878072,30397597,2026-03-13T09:54:35Z,207,0,35,35
180
- CC-MAIN-2026-08,429,19546,2571303178,99912577,31544804,2026-03-13T09:58:37Z,206,0,33,35
181
- CC-MAIN-2026-08,430,19562,2589628098,94171334,29515204,2026-03-13T10:01:57Z,160,0,39,35
182
- CC-MAIN-2026-08,431,19413,2548907034,94526535,29610662,2026-03-13T10:04:44Z,141,0,24,35
183
- CC-MAIN-2026-08,432,19238,2571728032,91270409,28904924,2026-03-13T10:07:44Z,130,0,48,35
184
- CC-MAIN-2026-08,433,19491,2559045927,95637979,30992131,2026-03-13T10:09:55Z,108,0,22,35
185
- CC-MAIN-2026-08,434,19293,2556585254,94418254,30499336,2026-03-13T10:13:31Z,183,0,31,35
 
186
  CC-MAIN-2026-08,551,19551,2609034951,89980913,29167227,2026-03-13T06:42:51Z,280,0,20,176
187
  CC-MAIN-2026-08,552,19402,2594817630,94092761,30309254,2026-03-13T06:48:30Z,211,0,46,80
188
  CC-MAIN-2026-08,553,19856,2617133708,99106486,30365588,2026-03-13T06:52:51Z,116,0,23,120
@@ -196,7 +215,15 @@ CC-MAIN-2026-08,560,19245,2526080415,92097391,28978710,2026-03-13T09:55:02Z,172,
196
  CC-MAIN-2026-08,561,19597,2583291759,94250807,30076803,2026-03-13T09:58:48Z,204,0,21,0
197
  CC-MAIN-2026-08,562,19249,2550150832,93160591,28640931,2026-03-13T10:02:45Z,199,0,36,0
198
  CC-MAIN-2026-08,563,19305,2585520140,91881520,28540874,2026-03-13T10:34:54Z,0,0,0,0
199
- CC-MAIN-2026-08,564,731,60830785,7351822,1854295,2026-03-13T10:34:58Z,0,3,0,0
 
 
 
 
 
 
 
 
200
  CC-MAIN-2026-08,701,19412,2563976599,92296196,29384755,2026-03-13T06:41:28Z,272,0,22,99
201
  CC-MAIN-2026-08,702,19449,2572639558,92293569,29721653,2026-03-13T06:44:08Z,113,0,20,24
202
  CC-MAIN-2026-08,703,19592,2602952509,95185029,30720858,2026-03-13T06:49:34Z,187,0,36,100
@@ -217,16 +244,18 @@ CC-MAIN-2026-08,717,19177,2533421579,90968900,29639500,2026-03-13T07:48:49Z,206,
217
  CC-MAIN-2026-08,718,19595,2583045607,94790124,30279291,2026-03-13T07:52:09Z,131,0,28,39
218
  CC-MAIN-2026-08,719,19572,2625852803,96279252,30376974,2026-03-13T07:54:11Z,86,0,22,13
219
  CC-MAIN-2026-08,720,19102,2510122806,90026849,28988668,2026-03-13T07:58:08Z,120,0,31,84
220
- CC-MAIN-2026-08,721,19416,2596451111,95166686,30313062,2026-03-13T10:34:54Z,0,0,0,0
221
- CC-MAIN-2026-08,722,6529,755020075,35941632,11200377,2026-03-13T10:35:36Z,0,28,13,0
222
- CC-MAIN-2026-08,723,19590,2541660499,94658665,29842729,2026-03-13T09:54:30Z,193,0,41,24
223
- CC-MAIN-2026-08,724,19690,2605884803,94926082,30424696,2026-03-13T09:58:05Z,164,0,49,24
224
- CC-MAIN-2026-08,725,19412,2562975956,92451410,29425587,2026-03-13T10:00:42Z,119,0,37,24
225
- CC-MAIN-2026-08,726,19460,2562536227,96869305,30705353,2026-03-13T10:04:08Z,168,0,36,24
226
- CC-MAIN-2026-08,727,19515,2591155330,96253967,30239842,2026-03-13T10:06:23Z,100,0,34,24
227
- CC-MAIN-2026-08,728,19540,2593341974,93848018,30167216,2026-03-13T10:09:28Z,154,0,29,24
228
- CC-MAIN-2026-08,729,19486,2582307405,94911288,30121176,2026-03-13T10:13:30Z,209,0,31,24
229
- CC-MAIN-2026-08,730,19683,2635693020,96060955,29873922,2026-03-13T10:16:08Z,135,0,22,24
 
 
230
  CC-MAIN-2026-08,851,19575,2612873485,97000364,30911294,2026-03-13T06:41:39Z,163,0,37,204
231
  CC-MAIN-2026-08,852,19334,2546015208,94959847,30205044,2026-03-13T06:45:52Z,183,0,57,11
232
  CC-MAIN-2026-08,853,19694,2567973975,95901932,30303494,2026-03-13T06:50:12Z,150,0,28,80
@@ -266,3 +295,12 @@ CC-MAIN-2026-08,886,19392,2590108194,93901267,29711500,2026-03-13T10:09:00Z,142,
266
  CC-MAIN-2026-08,887,19413,2546371491,94095379,29912843,2026-03-13T10:13:13Z,139,0,23,89
267
  CC-MAIN-2026-08,888,19055,2537834456,93861442,29781404,2026-03-13T10:15:45Z,128,0,22,0
268
  CC-MAIN-2026-08,889,19476,2633236313,98055027,30973295,2026-03-13T10:34:53Z,0,0,0,0
 
 
 
 
 
 
 
 
 
 
49
  CC-MAIN-2026-08,47,19360,2607142769,94572800,30141571,2026-03-13T07:24:07Z,375,0,31,25
50
  CC-MAIN-2026-08,48,19446,2550413995,94532267,30664841,2026-03-13T10:34:53Z,0,0,0,0
51
  CC-MAIN-2026-08,49,19306,2588072529,94515530,29853644,2026-03-13T09:48:51Z,139,0,22,26
52
+ CC-MAIN-2026-08,50,19627,2609847755,95762688,30211239,2026-03-13T11:02:50Z,0,0,0,0
53
+ CC-MAIN-2026-08,51,19297,2556393249,92698482,30166583,2026-03-13T11:02:50Z,0,0,0,0
54
+ CC-MAIN-2026-08,52,19607,2601151988,92878787,30282924,2026-03-13T11:02:51Z,0,0,0,0
55
+ CC-MAIN-2026-08,53,19357,2578191580,96554618,29955930,2026-03-13T11:02:51Z,0,0,0,0
56
+ CC-MAIN-2026-08,54,19483,2558749188,95680427,29740339,2026-03-13T11:03:10Z,0,0,19,0
57
+ CC-MAIN-2026-08,55,19811,2639871700,95584061,30183759,2026-03-13T11:06:52Z,199,0,21,0
58
+ CC-MAIN-2026-08,56,19564,2584558902,96118951,30635388,2026-03-13T11:10:57Z,168,0,76,0
59
+ CC-MAIN-2026-08,57,19287,2537367660,89669513,29103490,2026-03-13T11:13:47Z,145,0,23,0
60
+ CC-MAIN-2026-08,58,19411,2568951195,90787416,28734704,2026-03-13T11:13:47Z,0,0,0,0
61
+ CC-MAIN-2026-08,59,13692,1699773152,68772682,21439325,2026-03-13T11:16:10Z,0,105,36,0
62
  CC-MAIN-2026-08,101,19267,2514449658,96925434,30875010,2026-03-13T06:40:05Z,179,0,50,81
63
  CC-MAIN-2026-08,102,19438,2568537422,97402434,31137610,2026-03-13T06:42:52Z,93,0,20,52
64
  CC-MAIN-2026-08,103,19511,2593312947,96164480,30296223,2026-03-13T06:47:48Z,187,0,46,61
 
107
  CC-MAIN-2026-08,146,19315,2510247125,93773926,29238318,2026-03-13T10:08:59Z,177,0,25,0
108
  CC-MAIN-2026-08,147,19186,2543360279,93393458,29762722,2026-03-13T10:13:00Z,200,0,40,0
109
  CC-MAIN-2026-08,148,19552,2560436014,92340180,29533467,2026-03-13T10:15:33Z,121,0,31,0
110
+ CC-MAIN-2026-08,150,19389,2564791037,95103527,30016280,2026-03-13T11:02:50Z,0,0,0,0
111
+ CC-MAIN-2026-08,151,19442,2579386142,102900987,32540715,2026-03-13T11:02:50Z,0,0,0,0
112
+ CC-MAIN-2026-08,152,19414,2569567443,95036444,30049170,2026-03-13T11:02:50Z,0,0,0,0
113
+ CC-MAIN-2026-08,153,19873,2638924058,97010934,30841295,2026-03-13T11:02:50Z,0,0,0,0
114
+ CC-MAIN-2026-08,154,19451,2541232057,93405356,29678588,2026-03-13T11:02:50Z,0,0,0,0
115
+ CC-MAIN-2026-08,155,19247,2521031213,92407572,29336270,2026-03-13T11:02:51Z,0,0,0,0
116
+ CC-MAIN-2026-08,156,19426,2546889902,93308746,29726591,2026-03-13T11:06:12Z,0,150,50,0
117
+ CC-MAIN-2026-08,157,19296,2569979144,95657887,30027726,2026-03-13T11:12:16Z,335,0,26,0
118
+ CC-MAIN-2026-08,158,19602,2574519954,95688884,31198151,2026-03-13T11:16:24Z,198,0,47,0
119
  CC-MAIN-2026-08,251,19610,2594898345,97558492,31917087,2026-03-13T06:42:12Z,277,0,23,136
120
  CC-MAIN-2026-08,252,19240,2525928701,98163046,31104034,2026-03-13T06:47:10Z,238,0,49,10
121
  CC-MAIN-2026-08,253,19312,2557230855,96017199,30399966,2026-03-13T06:51:42Z,130,0,23,117
 
158
  CC-MAIN-2026-08,290,19333,2552308644,90326736,28308814,2026-03-13T08:51:49Z,71,0,18,95
159
  CC-MAIN-2026-08,291,19721,2581488854,98585156,31036664,2026-03-13T08:53:20Z,70,0,20,0
160
  CC-MAIN-2026-08,292,19312,2543945839,96808758,30391397,2026-03-13T10:34:53Z,0,0,0,0
161
+ CC-MAIN-2026-08,293,3961,435613457,29961376,8191281,2026-03-13T11:02:50Z,0,0,0,0
162
+ CC-MAIN-2026-08,294,19371,2553232834,92508746,29573682,2026-03-13T11:02:50Z,0,0,0,0
163
+ CC-MAIN-2026-08,295,19536,2611497522,98919902,30946765,2026-03-13T11:02:50Z,0,0,0,0
164
+ CC-MAIN-2026-08,296,19470,2593378035,94827239,31224698,2026-03-13T11:02:50Z,0,0,0,0
165
+ CC-MAIN-2026-08,297,19606,2584951887,96125858,31088838,2026-03-13T11:02:51Z,0,0,0,0
166
+ CC-MAIN-2026-08,298,19567,2617126178,93858365,30159538,2026-03-13T11:02:51Z,0,0,0,0
167
+ CC-MAIN-2026-08,299,19470,2585122899,97807957,31296172,2026-03-13T11:06:45Z,210,0,23,0
168
+ CC-MAIN-2026-08,300,19575,2576499879,94898509,30254983,2026-03-13T11:12:15Z,298,0,30,0
169
+ CC-MAIN-2026-08,301,19374,2565938944,91551161,29089308,2026-03-13T11:16:07Z,164,0,66,0
170
  CC-MAIN-2026-08,401,19517,2605589961,95609438,30404753,2026-03-13T06:41:08Z,218,0,47,107
171
  CC-MAIN-2026-08,402,19446,2552785517,96654791,30588984,2026-03-13T06:43:58Z,98,0,26,44
172
  CC-MAIN-2026-08,403,19320,2579048144,91406292,29375992,2026-03-13T06:49:29Z,198,0,33,98
 
191
  CC-MAIN-2026-08,422,19427,2555156689,91998757,28929921,2026-03-13T08:35:01Z,110,0,22,7
192
  CC-MAIN-2026-08,423,19529,2593089061,91877466,30698634,2026-03-13T08:37:01Z,85,0,20,12
193
  CC-MAIN-2026-08,424,19493,2582889122,97164973,30896366,2026-03-13T08:40:17Z,99,0,21,73
194
+ CC-MAIN-2026-08,425,19407,2554177884,94629300,29465545,2026-03-13T11:02:50Z,0,0,0,0
195
+ CC-MAIN-2026-08,426,19361,2596094056,94590616,30321267,2026-03-13T11:02:50Z,0,0,0,0
196
+ CC-MAIN-2026-08,427,19459,2589539484,95470936,30125145,2026-03-13T11:02:50Z,0,0,0,0
197
+ CC-MAIN-2026-08,428,19661,2602153067,94878072,30429486,2026-03-13T11:02:0Z,0,0,0,0
198
+ CC-MAIN-2026-08,429,19546,2571303178,99912577,31497946,2026-03-13T11:02:50Z,0,0,0,0
199
+ CC-MAIN-2026-08,430,19562,2589628098,94171334,29476831,2026-03-13T11:02:51Z,0,0,0,0
200
+ CC-MAIN-2026-08,431,19413,2548907034,94526535,29621836,2026-03-13T11:02:51Z,0,0,0,0
201
+ CC-MAIN-2026-08,432,19238,2571728032,91270409,28957312,2026-03-13T11:06:07Z,0,149,46,0
202
+ CC-MAIN-2026-08,433,19491,2559045927,95637979,30984174,2026-03-13T11:10:59Z,214,0,76,0
203
+ CC-MAIN-2026-08,434,19293,2556585254,94418254,30483469,2026-03-13T11:13:49Z,144,0,24,0
204
+ CC-MAIN-2026-08,435,19756,2623086020,95118418,30534249,2026-03-13T11:16:50Z,0,156,24,0
205
  CC-MAIN-2026-08,551,19551,2609034951,89980913,29167227,2026-03-13T06:42:51Z,280,0,20,176
206
  CC-MAIN-2026-08,552,19402,2594817630,94092761,30309254,2026-03-13T06:48:30Z,211,0,46,80
207
  CC-MAIN-2026-08,553,19856,2617133708,99106486,30365588,2026-03-13T06:52:51Z,116,0,23,120
 
215
  CC-MAIN-2026-08,561,19597,2583291759,94250807,30076803,2026-03-13T09:58:48Z,204,0,21,0
216
  CC-MAIN-2026-08,562,19249,2550150832,93160591,28640931,2026-03-13T10:02:45Z,199,0,36,0
217
  CC-MAIN-2026-08,563,19305,2585520140,91881520,28540874,2026-03-13T10:34:54Z,0,0,0,0
218
+ CC-MAIN-2026-08,564,731,60830785,7351822,1854295,2026-03-13T11:02:50Z,0,0,0,0
219
+ CC-MAIN-2026-08,565,19576,2640083780,95833595,30846139,2026-03-13T11:02:50Z,0,0,0,0
220
+ CC-MAIN-2026-08,566,19394,2556784784,90355759,28786738,2026-03-13T11:02:50Z,0,0,0,0
221
+ CC-MAIN-2026-08,567,19762,2633204206,95692876,30938147,2026-03-13T11:02:50Z,0,0,0,0
222
+ CC-MAIN-2026-08,568,19429,2585245751,94501563,29184881,2026-03-13T11:02:51Z,0,0,0,0
223
+ CC-MAIN-2026-08,569,19423,2571763837,95847327,30721996,2026-03-13T11:02:51Z,0,0,0,0
224
+ CC-MAIN-2026-08,570,19204,2550891446,95728466,30743422,2026-03-13T11:02:51Z,0,0,0,0
225
+ CC-MAIN-2026-08,571,19379,2550766654,91392053,29384858,2026-03-13T11:06:12Z,0,149,50,0
226
+ CC-MAIN-2026-08,572,19544,2567054295,91119940,29356985,2026-03-13T11:12:09Z,319,0,37,0
227
  CC-MAIN-2026-08,701,19412,2563976599,92296196,29384755,2026-03-13T06:41:28Z,272,0,22,99
228
  CC-MAIN-2026-08,702,19449,2572639558,92293569,29721653,2026-03-13T06:44:08Z,113,0,20,24
229
  CC-MAIN-2026-08,703,19592,2602952509,95185029,30720858,2026-03-13T06:49:34Z,187,0,36,100
 
244
  CC-MAIN-2026-08,718,19595,2583045607,94790124,30279291,2026-03-13T07:52:09Z,131,0,28,39
245
  CC-MAIN-2026-08,719,19572,2625852803,96279252,30376974,2026-03-13T07:54:11Z,86,0,22,13
246
  CC-MAIN-2026-08,720,19102,2510122806,90026849,28988668,2026-03-13T07:58:08Z,120,0,31,84
247
+ CC-MAIN-2026-08,721,19416,2596451111,95166686,30313062,2026-03-13T11:02:50Z,0,0,0,0
248
+ CC-MAIN-2026-08,722,6529,755020075,35941632,11200377,2026-03-13T11:02:50Z,0,0,0,0
249
+ CC-MAIN-2026-08,723,19590,2541660499,94658665,29819898,2026-03-13T11:02:50Z,0,0,0,0
250
+ CC-MAIN-2026-08,724,19690,2605884803,94926082,30439068,2026-03-13T11:02:50Z,0,0,0,0
251
+ CC-MAIN-2026-08,725,19412,2562975956,92451410,30579376,2026-03-13T11:02:50Z,0,0,0,0
252
+ CC-MAIN-2026-08,726,19460,2562536227,96869305,30697030,2026-03-13T11:02:51Z,0,0,0,0
253
+ CC-MAIN-2026-08,727,19515,2591155330,96253967,30252716,2026-03-13T11:02:51Z,0,0,0,0
254
+ CC-MAIN-2026-08,728,19540,2593341974,93848018,30038335,2026-03-13T11:02:51Z,0,0,0,0
255
+ CC-MAIN-2026-08,729,19486,2582307405,94911288,30098381,2026-03-13T11:06:11Z,0,150,48,0
256
+ CC-MAIN-2026-08,730,19683,2635693020,96060955,29932781,2026-03-13T11:12:31Z,349,0,29,0
257
+ CC-MAIN-2026-08,731,5033,556256083,28082945,8607738,2026-03-13T11:13:16Z,0,32,11,0
258
+ CC-MAIN-2026-08,732,19633,2579405059,96302372,30188279,2026-03-13T11:16:47Z,186,0,24,0
259
  CC-MAIN-2026-08,851,19575,2612873485,97000364,30911294,2026-03-13T06:41:39Z,163,0,37,204
260
  CC-MAIN-2026-08,852,19334,2546015208,94959847,30205044,2026-03-13T06:45:52Z,183,0,57,11
261
  CC-MAIN-2026-08,853,19694,2567973975,95901932,30303494,2026-03-13T06:50:12Z,150,0,28,80
 
295
  CC-MAIN-2026-08,887,19413,2546371491,94095379,29912843,2026-03-13T10:13:13Z,139,0,23,89
296
  CC-MAIN-2026-08,888,19055,2537834456,93861442,29781404,2026-03-13T10:15:45Z,128,0,22,0
297
  CC-MAIN-2026-08,889,19476,2633236313,98055027,30973295,2026-03-13T10:34:53Z,0,0,0,0
298
+ CC-MAIN-2026-08,890,17690,2288910023,88714950,28301173,2026-03-13T11:02:50Z,0,0,0,0
299
+ CC-MAIN-2026-08,891,19467,2590908713,95935908,30860487,2026-03-13T11:02:50Z,0,0,0,0
300
+ CC-MAIN-2026-08,892,19244,2563134822,94789345,29907179,2026-03-13T10:46:17Z,247,0,80,0
301
+ CC-MAIN-2026-08,893,19372,2546117953,92250463,29589336,2026-03-13T11:02:50Z,0,0,0,0
302
+ CC-MAIN-2026-08,894,19584,2609888351,96561086,30232114,2026-03-13T11:02:51Z,0,0,0,0
303
+ CC-MAIN-2026-08,895,19501,2611570166,91692702,29247904,2026-03-13T11:02:51Z,0,0,0,0
304
+ CC-MAIN-2026-08,896,19512,2581028892,94986555,30180239,2026-03-13T11:06:14Z,0,150,51,0
305
+ CC-MAIN-2026-08,897,19348,2541159665,93760641,29660981,2026-03-13T11:12:25Z,343,0,27,0
306
+ CC-MAIN-2026-08,898,19461,2584779719,92579345,29479183,2026-03-13T11:16:29Z,211,0,32,0