sitespeed.io 30.8.0 → 30.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/Dockerfile +1 -1
- package/lib/plugins/compare/pug/index.pug +9 -9
- package/npm-shrinkwrap.json +74 -32
- package/package.json +2 -2
- package/wpr-record.log +102 -0
- package/wpr-replay.log +96 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# CHANGELOG - sitespeed.io (we use [semantic versioning](https://semver.org))
|
|
2
2
|
|
|
3
|
+
## 30.9.0 - 2023-12-12
|
|
4
|
+
### Added
|
|
5
|
+
* Chrome and Edge 120 in the Docker container [#4027](https://github.com/sitespeedio/sitespeed.io/pull/4027).
|
|
6
|
+
* Updated to Browsertime 19.2.0.
|
|
7
|
+
* For users of the +1 container Lighthouse has been upgraded to 11.4.0.
|
|
8
|
+
|
|
3
9
|
## 30.8.0 - 2023-12-07
|
|
4
10
|
### Added
|
|
5
11
|
* Use Cliffs delta to know the size of the significant change [#4024](https://github.com/sitespeedio/sitespeed.io/pull/4024).
|
package/Dockerfile
CHANGED
|
@@ -21,21 +21,21 @@ p
|
|
|
21
21
|
|
|
22
22
|
h2 Settings
|
|
23
23
|
p
|
|
24
|
-
| The test conducted in this comparison is the #{compare.meta.testOptions.testType} test. The alternative hypothesis used for this test is "#{compare.meta.testOptions.alternative}".
|
|
24
|
+
| The test conducted in this comparison is the #{compare.meta.testOptions.testType} test. The alternative hypothesis used for this test is "#{compare.meta.testOptions.alternative}".
|
|
25
25
|
if compare.meta.testOptions.alternative === 'less'
|
|
26
|
-
| This means that we test if the current test is significant less that the baseline tests.
|
|
26
|
+
| This means that we test if the current test is significant less that the baseline tests.
|
|
27
27
|
else if compare.meta.testOptions.alternative === 'greater'
|
|
28
|
-
| This means that we test if the current test is siginficant higher than the baseline tests.
|
|
28
|
+
| This means that we test if the current test is siginficant higher than the baseline tests.
|
|
29
29
|
else if compare.meta.testOptions.alternative === 'two-sided'
|
|
30
|
-
| This means that we test the baseline vs the current tests both ways, if there are any change in both directions.
|
|
30
|
+
| This means that we test the baseline vs the current tests both ways, if there are any change in both directions.
|
|
31
31
|
if compare.meta.testOptions.testType === 'mannwhitneyu'
|
|
32
32
|
| For more information on the settings of the Mann-Whitney U test, please refer to the
|
|
33
|
-
a(href='https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.mannwhitneyu.html') official documentation.
|
|
34
|
-
| The test was configured to use continuity (set to #{compare.meta.testOptions.mannwhitneyu.useContinuity}) and the method chosen was "#{compare.meta.testOptions.mannwhitneyu.method}".
|
|
33
|
+
a(href='https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.mannwhitneyu.html') official documentation.
|
|
34
|
+
| The test was configured to use continuity (set to #{compare.meta.testOptions.mannwhitneyu.useContinuity}) and the method chosen was "#{compare.meta.testOptions.mannwhitneyu.method}".
|
|
35
35
|
else if compare.meta.testOptions.testType === 'wilcoxon'
|
|
36
36
|
| For more information on the settings of the Wilcoxon test, please refer to the
|
|
37
|
-
a(href='https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.wilcoxon.html') official documentation
|
|
38
|
-
| For this test, a correction parameter (#{compare.meta.testOptions.wilcoxon.correction ? 'enabled' : 'disabled'}) was applied to adjust for small sample sizes.
|
|
37
|
+
a(href='https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.wilcoxon.html') official documentation
|
|
38
|
+
| . For this test, a correction parameter (#{compare.meta.testOptions.wilcoxon.correction ? 'enabled' : 'disabled'}) was applied to adjust for small sample sizes.
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
p
|
|
@@ -49,7 +49,7 @@ p
|
|
|
49
49
|
a(href=compare.meta.current.url) #{compare.meta.current.alias}
|
|
50
50
|
else
|
|
51
51
|
a(href=compare.meta.current.url) #{compare.meta.current.url}
|
|
52
|
-
| was
|
|
52
|
+
| was done at #{compare.meta.current.timestamp}.
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
h2 Comparison Data
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sitespeed.io",
|
|
3
|
-
"version": "30.
|
|
3
|
+
"version": "30.9.0",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "sitespeed.io",
|
|
9
|
-
"version": "30.
|
|
9
|
+
"version": "30.9.0",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@google-cloud/storage": "6.9.5",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"@tgwf/co2": "0.13.6",
|
|
16
16
|
"aws-sdk": "2.1327.0",
|
|
17
17
|
"axe-core": "4.8.2",
|
|
18
|
-
"browsertime": "19.
|
|
18
|
+
"browsertime": "19.2.0",
|
|
19
19
|
"cli-color": "2.0.3",
|
|
20
20
|
"coach-core": "8.0.2",
|
|
21
21
|
"concurrent-queue": "7.0.2",
|
|
@@ -1759,9 +1759,9 @@
|
|
|
1759
1759
|
}
|
|
1760
1760
|
},
|
|
1761
1761
|
"node_modules/browsertime": {
|
|
1762
|
-
"version": "19.
|
|
1763
|
-
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-19.
|
|
1764
|
-
"integrity": "sha512-
|
|
1762
|
+
"version": "19.2.0",
|
|
1763
|
+
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-19.2.0.tgz",
|
|
1764
|
+
"integrity": "sha512-4BM5AeiO0ZNkQie3mBIW3nrcgvnTBxR3gZmtJ6q96k3gltzqPoH8Hhz9onn7wbb8U+63qIK5IBmEguG2tpIobQ==",
|
|
1765
1765
|
"dependencies": {
|
|
1766
1766
|
"@cypress/xvfb": "1.2.4",
|
|
1767
1767
|
"@devicefarmer/adbkit": "3.2.5",
|
|
@@ -1777,7 +1777,7 @@
|
|
|
1777
1777
|
"execa": "8.0.1",
|
|
1778
1778
|
"fast-stats": "0.0.6",
|
|
1779
1779
|
"ff-test-bidi-har-export": "0.0.12",
|
|
1780
|
-
"find-up": "
|
|
1780
|
+
"find-up": "7.0.0",
|
|
1781
1781
|
"get-port": "7.0.0",
|
|
1782
1782
|
"hasbin": "1.2.3",
|
|
1783
1783
|
"intel": "1.2.0",
|
|
@@ -1787,14 +1787,14 @@
|
|
|
1787
1787
|
"lodash.merge": "4.6.2",
|
|
1788
1788
|
"lodash.pick": "4.4.0",
|
|
1789
1789
|
"lodash.set": "4.3.2",
|
|
1790
|
-
"selenium-webdriver": "4.
|
|
1790
|
+
"selenium-webdriver": "4.16.0",
|
|
1791
1791
|
"yargs": "17.7.2"
|
|
1792
1792
|
},
|
|
1793
1793
|
"bin": {
|
|
1794
1794
|
"browsertime": "bin/browsertime.js"
|
|
1795
1795
|
},
|
|
1796
1796
|
"engines": {
|
|
1797
|
-
"node": ">=
|
|
1797
|
+
"node": ">=18.0.0"
|
|
1798
1798
|
},
|
|
1799
1799
|
"optionalDependencies": {
|
|
1800
1800
|
"jimp": "0.22.10"
|
|
@@ -1805,6 +1805,22 @@
|
|
|
1805
1805
|
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz",
|
|
1806
1806
|
"integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ=="
|
|
1807
1807
|
},
|
|
1808
|
+
"node_modules/browsertime/node_modules/find-up": {
|
|
1809
|
+
"version": "7.0.0",
|
|
1810
|
+
"resolved": "https://registry.npmjs.org/find-up/-/find-up-7.0.0.tgz",
|
|
1811
|
+
"integrity": "sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==",
|
|
1812
|
+
"dependencies": {
|
|
1813
|
+
"locate-path": "^7.2.0",
|
|
1814
|
+
"path-exists": "^5.0.0",
|
|
1815
|
+
"unicorn-magic": "^0.1.0"
|
|
1816
|
+
},
|
|
1817
|
+
"engines": {
|
|
1818
|
+
"node": ">=18"
|
|
1819
|
+
},
|
|
1820
|
+
"funding": {
|
|
1821
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1822
|
+
}
|
|
1823
|
+
},
|
|
1808
1824
|
"node_modules/btoa": {
|
|
1809
1825
|
"version": "1.2.1",
|
|
1810
1826
|
"resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz",
|
|
@@ -5687,9 +5703,9 @@
|
|
|
5687
5703
|
}
|
|
5688
5704
|
},
|
|
5689
5705
|
"node_modules/locate-path": {
|
|
5690
|
-
"version": "7.
|
|
5691
|
-
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.
|
|
5692
|
-
"integrity": "sha512-
|
|
5706
|
+
"version": "7.2.0",
|
|
5707
|
+
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz",
|
|
5708
|
+
"integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==",
|
|
5693
5709
|
"dependencies": {
|
|
5694
5710
|
"p-locate": "^6.0.0"
|
|
5695
5711
|
},
|
|
@@ -7818,9 +7834,9 @@
|
|
|
7818
7834
|
"integrity": "sha1-e45lYZCyKOgaZq6nSEgNgozS03o="
|
|
7819
7835
|
},
|
|
7820
7836
|
"node_modules/selenium-webdriver": {
|
|
7821
|
-
"version": "4.
|
|
7822
|
-
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.
|
|
7823
|
-
"integrity": "sha512-
|
|
7837
|
+
"version": "4.16.0",
|
|
7838
|
+
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.16.0.tgz",
|
|
7839
|
+
"integrity": "sha512-IbqpRpfGE7JDGgXHJeWuCqT/tUqnLvZ14csSwt+S8o4nJo3RtQoE9VR4jB47tP/A8ArkYsh/THuMY6kyRP6kuA==",
|
|
7824
7840
|
"dependencies": {
|
|
7825
7841
|
"jszip": "^3.10.1",
|
|
7826
7842
|
"tmp": "^0.2.1",
|
|
@@ -7831,9 +7847,9 @@
|
|
|
7831
7847
|
}
|
|
7832
7848
|
},
|
|
7833
7849
|
"node_modules/selenium-webdriver/node_modules/ws": {
|
|
7834
|
-
"version": "8.
|
|
7835
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.
|
|
7836
|
-
"integrity": "sha512-
|
|
7850
|
+
"version": "8.15.0",
|
|
7851
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.15.0.tgz",
|
|
7852
|
+
"integrity": "sha512-H/Z3H55mrcrgjFwI+5jKavgXvwQLtfPCUEp6pi35VhoB0pfcHnSoyuTzkBEZpzq49g1193CUEwIvmsjcotenYw==",
|
|
7837
7853
|
"engines": {
|
|
7838
7854
|
"node": ">=10.0.0"
|
|
7839
7855
|
},
|
|
@@ -8812,6 +8828,17 @@
|
|
|
8812
8828
|
"integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g==",
|
|
8813
8829
|
"dev": true
|
|
8814
8830
|
},
|
|
8831
|
+
"node_modules/unicorn-magic": {
|
|
8832
|
+
"version": "0.1.0",
|
|
8833
|
+
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
|
|
8834
|
+
"integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==",
|
|
8835
|
+
"engines": {
|
|
8836
|
+
"node": ">=18"
|
|
8837
|
+
},
|
|
8838
|
+
"funding": {
|
|
8839
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
8840
|
+
}
|
|
8841
|
+
},
|
|
8815
8842
|
"node_modules/universalify": {
|
|
8816
8843
|
"version": "0.2.0",
|
|
8817
8844
|
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
|
|
@@ -10574,9 +10601,9 @@
|
|
|
10574
10601
|
}
|
|
10575
10602
|
},
|
|
10576
10603
|
"browsertime": {
|
|
10577
|
-
"version": "19.
|
|
10578
|
-
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-19.
|
|
10579
|
-
"integrity": "sha512-
|
|
10604
|
+
"version": "19.2.0",
|
|
10605
|
+
"resolved": "https://registry.npmjs.org/browsertime/-/browsertime-19.2.0.tgz",
|
|
10606
|
+
"integrity": "sha512-4BM5AeiO0ZNkQie3mBIW3nrcgvnTBxR3gZmtJ6q96k3gltzqPoH8Hhz9onn7wbb8U+63qIK5IBmEguG2tpIobQ==",
|
|
10580
10607
|
"requires": {
|
|
10581
10608
|
"@cypress/xvfb": "1.2.4",
|
|
10582
10609
|
"@devicefarmer/adbkit": "3.2.5",
|
|
@@ -10592,7 +10619,7 @@
|
|
|
10592
10619
|
"execa": "8.0.1",
|
|
10593
10620
|
"fast-stats": "0.0.6",
|
|
10594
10621
|
"ff-test-bidi-har-export": "0.0.12",
|
|
10595
|
-
"find-up": "
|
|
10622
|
+
"find-up": "7.0.0",
|
|
10596
10623
|
"get-port": "7.0.0",
|
|
10597
10624
|
"hasbin": "1.2.3",
|
|
10598
10625
|
"intel": "1.2.0",
|
|
@@ -10603,7 +10630,7 @@
|
|
|
10603
10630
|
"lodash.merge": "4.6.2",
|
|
10604
10631
|
"lodash.pick": "4.4.0",
|
|
10605
10632
|
"lodash.set": "4.3.2",
|
|
10606
|
-
"selenium-webdriver": "4.
|
|
10633
|
+
"selenium-webdriver": "4.16.0",
|
|
10607
10634
|
"yargs": "17.7.2"
|
|
10608
10635
|
},
|
|
10609
10636
|
"dependencies": {
|
|
@@ -10611,6 +10638,16 @@
|
|
|
10611
10638
|
"version": "1.11.10",
|
|
10612
10639
|
"resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.10.tgz",
|
|
10613
10640
|
"integrity": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ=="
|
|
10641
|
+
},
|
|
10642
|
+
"find-up": {
|
|
10643
|
+
"version": "7.0.0",
|
|
10644
|
+
"resolved": "https://registry.npmjs.org/find-up/-/find-up-7.0.0.tgz",
|
|
10645
|
+
"integrity": "sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==",
|
|
10646
|
+
"requires": {
|
|
10647
|
+
"locate-path": "^7.2.0",
|
|
10648
|
+
"path-exists": "^5.0.0",
|
|
10649
|
+
"unicorn-magic": "^0.1.0"
|
|
10650
|
+
}
|
|
10614
10651
|
}
|
|
10615
10652
|
}
|
|
10616
10653
|
},
|
|
@@ -13551,9 +13588,9 @@
|
|
|
13551
13588
|
"dev": true
|
|
13552
13589
|
},
|
|
13553
13590
|
"locate-path": {
|
|
13554
|
-
"version": "7.
|
|
13555
|
-
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.
|
|
13556
|
-
"integrity": "sha512-
|
|
13591
|
+
"version": "7.2.0",
|
|
13592
|
+
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz",
|
|
13593
|
+
"integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==",
|
|
13557
13594
|
"requires": {
|
|
13558
13595
|
"p-locate": "^6.0.0"
|
|
13559
13596
|
}
|
|
@@ -15171,9 +15208,9 @@
|
|
|
15171
15208
|
"integrity": "sha1-e45lYZCyKOgaZq6nSEgNgozS03o="
|
|
15172
15209
|
},
|
|
15173
15210
|
"selenium-webdriver": {
|
|
15174
|
-
"version": "4.
|
|
15175
|
-
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.
|
|
15176
|
-
"integrity": "sha512-
|
|
15211
|
+
"version": "4.16.0",
|
|
15212
|
+
"resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.16.0.tgz",
|
|
15213
|
+
"integrity": "sha512-IbqpRpfGE7JDGgXHJeWuCqT/tUqnLvZ14csSwt+S8o4nJo3RtQoE9VR4jB47tP/A8ArkYsh/THuMY6kyRP6kuA==",
|
|
15177
15214
|
"requires": {
|
|
15178
15215
|
"jszip": "^3.10.1",
|
|
15179
15216
|
"tmp": "^0.2.1",
|
|
@@ -15181,9 +15218,9 @@
|
|
|
15181
15218
|
},
|
|
15182
15219
|
"dependencies": {
|
|
15183
15220
|
"ws": {
|
|
15184
|
-
"version": "8.
|
|
15185
|
-
"resolved": "https://registry.npmjs.org/ws/-/ws-8.
|
|
15186
|
-
"integrity": "sha512-
|
|
15221
|
+
"version": "8.15.0",
|
|
15222
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.15.0.tgz",
|
|
15223
|
+
"integrity": "sha512-H/Z3H55mrcrgjFwI+5jKavgXvwQLtfPCUEp6pi35VhoB0pfcHnSoyuTzkBEZpzq49g1193CUEwIvmsjcotenYw==",
|
|
15187
15224
|
"requires": {}
|
|
15188
15225
|
}
|
|
15189
15226
|
}
|
|
@@ -15909,6 +15946,11 @@
|
|
|
15909
15946
|
"integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g==",
|
|
15910
15947
|
"dev": true
|
|
15911
15948
|
},
|
|
15949
|
+
"unicorn-magic": {
|
|
15950
|
+
"version": "0.1.0",
|
|
15951
|
+
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
|
|
15952
|
+
"integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ=="
|
|
15953
|
+
},
|
|
15912
15954
|
"universalify": {
|
|
15913
15955
|
"version": "0.2.0",
|
|
15914
15956
|
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz",
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"sitespeed.io": "./bin/sitespeed.js",
|
|
6
6
|
"sitespeed.io-wpr": "./bin/browsertimeWebPageReplay.js"
|
|
7
7
|
},
|
|
8
|
-
"version": "30.
|
|
8
|
+
"version": "30.9.0",
|
|
9
9
|
"description": "Analyze the web performance of your site",
|
|
10
10
|
"keywords": [
|
|
11
11
|
"performance",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"@tgwf/co2": "0.13.6",
|
|
84
84
|
"aws-sdk": "2.1327.0",
|
|
85
85
|
"axe-core": "4.8.2",
|
|
86
|
-
"browsertime": "19.
|
|
86
|
+
"browsertime": "19.2.0",
|
|
87
87
|
"coach-core": "8.0.2",
|
|
88
88
|
"cli-color": "2.0.3",
|
|
89
89
|
"concurrent-queue": "7.0.2",
|
package/wpr-record.log
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
2023/11/03 08:52:26 Loading cert from /webpagereplay/certs/wpr_cert.pem
|
|
2
|
+
2023/11/03 08:52:26 Loading key from /webpagereplay/certs/wpr_key.pem
|
|
3
|
+
2023/11/03 08:52:26 Opened archive /tmp/archive.wprgo
|
|
4
|
+
2023/11/03 08:52:26 Loading script from /webpagereplay/scripts/deterministic.js
|
|
5
|
+
2023/11/03 08:52:26 Use Ctrl-C to exit.
|
|
6
|
+
2023/11/03 08:52:26 Starting server on https://127.0.0.1:443
|
|
7
|
+
2023/11/03 08:52:26 Starting server on http://127.0.0.1:80
|
|
8
|
+
2023/11/03 08:52:33 ServeHTTP(https://accounts.google.com/ListAccounts?gpsia=1&source=ChromiumBrowser&json=standard): serving 200, 43 bytes
|
|
9
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/wiki/Barack_Obama): serving 200, 287175 bytes
|
|
10
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022): serving 200, 2569 bytes
|
|
11
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg): serving 200, 2604 bytes
|
|
12
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=codex-search-styles%7Cext.cite.styles%7Cext.phonos.icons%2Cstyles%7Cext.tmh.player.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cjquery.makeCollapsible.styles%7Cskins.vector.icons%2Cstyles%7Cwikibase.client.init&only=styles&skin=vector-2022): serving 200, 16908 bytes
|
|
13
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022): serving 200, 19875 bytes
|
|
14
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg): serving 200, 3264 bytes
|
|
15
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/static/images/icons/wikipedia.png): serving 200, 13444 bytes
|
|
16
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=menu&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200, 195 bytes
|
|
17
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=ellipsis&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200, 191 bytes
|
|
18
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=expand&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200, 198 bytes
|
|
19
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/arrow-down.svg?9426f): serving 200, 195 bytes
|
|
20
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/arrow-down-progressive.svg?f0b59): serving 200, 193 bytes
|
|
21
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=language&variant=progressive&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200, 454 bytes
|
|
22
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515): serving 200, 154 bytes
|
|
23
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/link-external-small-ltr-progressive.svg?30a3a): serving 200, 246 bytes
|
|
24
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e): serving 200, 247 bytes
|
|
25
|
+
2023/11/03 08:52:34 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=ext.phonos.icons&image=volumeUp&format=original&lang=en&skin=vector-2022&version=4cpix): serving 200, 292 bytes
|
|
26
|
+
2023/11/03 08:52:34 http: TLS handshake error from 127.0.0.1:54248: EOF
|
|
27
|
+
2023/11/03 08:52:34 http: TLS handshake error from 127.0.0.1:54232: EOF
|
|
28
|
+
2023/11/03 08:52:34 http: TLS handshake error from 127.0.0.1:54278: EOF
|
|
29
|
+
2023/11/03 08:52:34 http: TLS handshake error from 127.0.0.1:54276: EOF
|
|
30
|
+
2023/11/03 08:52:34 http: TLS handshake error from 127.0.0.1:54282: EOF
|
|
31
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Balance%2C_by_David.svg/30px-Balance%2C_by_David.svg.png): serving 200, 400 bytes
|
|
32
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/220px-President_Barack_Obama.jpg): serving 200, 22389 bytes
|
|
33
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg): serving 200, 272 bytes
|
|
34
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/16px-Symbol_list_class.svg.png): serving 200, 514 bytes
|
|
35
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/PPACA_Premium_Chart.jpg/300px-PPACA_Premium_Chart.jpg): serving 200, 14571 bytes
|
|
36
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/21px-Wikinews-logo.svg.png): serving 200, 616 bytes
|
|
37
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/21px-Wikidata-logo.svg.png): serving 200, 170 bytes
|
|
38
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/16px-Wikiquote-logo.svg.png): serving 200, 520 bytes
|
|
39
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/IPhone_5.svg/13px-IPhone_5.svg.png): serving 200, 328 bytes
|
|
40
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Barack_Obama_talks_with_Benjamin_Netanyahu_%288637772147%29.jpg/220px-Barack_Obama_talks_with_Benjamin_Netanyahu_%288637772147%29.jpg): serving 200, 13036 bytes
|
|
41
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/1/1b/Semi-protection-shackle.svg/20px-Semi-protection-shackle.svg.png): serving 200, 342 bytes
|
|
42
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Nuvola_apps_kaboodle.svg/16px-Nuvola_apps_kaboodle.svg.png): serving 200, 530 bytes
|
|
43
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/BarackObamaportrait.jpg/220px-BarackObamaportrait.jpg): serving 200, 12331 bytes
|
|
44
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/18px-Wikisource-logo.svg.png): serving 200, 768 bytes
|
|
45
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg): serving 200, 851 bytes
|
|
46
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/0/01/A_coloured_voting_box.svg/28px-A_coloured_voting_box.svg.png): serving 200, 1000 bytes
|
|
47
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Gallup_Poll-Approval_Rating-Barack_Obama.svg/275px-Gallup_Poll-Approval_Rating-Barack_Obama.svg.png): serving 200, 11454 bytes
|
|
48
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Barack_Obama_welcomes_Shimon_Peres_in_the_Oval_Office.jpg/220px-Barack_Obama_welcomes_Shimon_Peres_in_the_Oval_Office.jpg): serving 200, 12034 bytes
|
|
49
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/9/96/Symbol_category_class.svg/16px-Symbol_category_class.svg.png): serving 200, 528 bytes
|
|
50
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seal_of_the_President_of_the_United_States.svg/100px-Seal_of_the_President_of_the_United_States.svg.png): serving 200, 10948 bytes
|
|
51
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/6/69/P_vip.svg/28px-P_vip.svg.png): serving 200, 1078 bytes
|
|
52
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Seal_of_the_United_States_Senate.svg/80px-Seal_of_the_United_States_Senate.svg.png): serving 200, 12640 bytes
|
|
53
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/P20220405AS-1082_%2852067439422%29.jpg/220px-P20220405AS-1082_%2852067439422%29.jpg): serving 200, 16872 bytes
|
|
54
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/20px-Wiki_letter_w_cropped.svg.png): serving 200, 604 bytes
|
|
55
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_Chicago%2C_Illinois.svg/28px-Seal_of_Chicago%2C_Illinois.svg.png): serving 200, 2524 bytes
|
|
56
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/President_Barack_Obama%2C_2012_portrait_crop.jpg/75px-President_Barack_Obama%2C_2012_portrait_crop.jpg): serving 200, 4983 bytes
|
|
57
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/3/33/Ann_Dunham_with_father_and_children.jpg/220px-Ann_Dunham_with_father_and_children.jpg): serving 200, 16628 bytes
|
|
58
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seal_of_the_President_of_the_United_States.svg/70px-Seal_of_the_President_of_the_United_States.svg.png): serving 200, 10733 bytes
|
|
59
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Barry_Soetoro_school_record.jpg/220px-Barry_Soetoro_school_record.jpg): serving 200, 22497 bytes
|
|
60
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Barack_Obama_signature.svg/128px-Barack_Obama_signature.svg.png): serving 200, 1617 bytes
|
|
61
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Obamamiltondavis1.jpg/220px-Obamamiltondavis1.jpg): serving 200, 15266 bytes
|
|
62
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/US_President_Barack_Obama_taking_his_Oath_of_Office_-_2009Jan20.jpg/220px-US_President_Barack_Obama_taking_his_Oath_of_Office_-_2009Jan20.jpg): serving 200, 15561 bytes
|
|
63
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg): serving 200, 318 bytes
|
|
64
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/14px-Commons-logo.svg.png): serving 200, 416 bytes
|
|
65
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.svg/32px-Flag_of_the_United_States.svg.png): serving 200, 324 bytes
|
|
66
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Obama_family_portrait_in_the_Green_Room.jpg/220px-Obama_family_portrait_in_the_Green_Room.jpg): serving 200, 12240 bytes
|
|
67
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Barack_Obama_addresses_joint_session_of_Congress_2009-02-24.jpg/220px-Barack_Obama_addresses_joint_session_of_Congress_2009-02-24.jpg): serving 200, 11008 bytes
|
|
68
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/4/4d/Icon_pdf_file.png): serving 200, 225 bytes
|
|
69
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/10px-OOjs_UI_icon_edit-ltr-progressive.svg.png): serving 200, 178 bytes
|
|
70
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Blue_iPod_Nano.jpg/12px-Blue_iPod_Nano.jpg): serving 200, 382 bytes
|
|
71
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/15px-Speaker_Icon.svg.png): serving 200, 282 bytes
|
|
72
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Flag_of_Hawaii.svg/32px-Flag_of_Hawaii.svg.png): serving 200, 300 bytes
|
|
73
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/ElectoralCollege2012.svg/290px-ElectoralCollege2012.svg.png): serving 200, 27954 bytes
|
|
74
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/19px-Wiktionary-logo-v2.svg.png): serving 200, 528 bytes
|
|
75
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Michelle_Obama_2013_official_portrait.jpg/140px-Michelle_Obama_2013_official_portrait.jpg): serving 200, 11164 bytes
|
|
76
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Illinois.svg/32px-Flag_of_Illinois.svg.png): serving 200, 910 bytes
|
|
77
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Vladimir_Putin_and_Barack_Obama_%282015-09-29%29_01.jpg/220px-Vladimir_Putin_and_Barack_Obama_%282015-09-29%29_01.jpg): serving 200, 13904 bytes
|
|
78
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Handshake_between_the_President_and_Cuban_President_Ra%C3%BAl_Castro.jpg/220px-Handshake_between_the_President_and_Cuban_President_Ra%C3%BAl_Castro.jpg): serving 200, 13330 bytes
|
|
79
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Obama_Macri_October_2017.jpg/220px-Obama_Macri_October_2017.jpg): serving 200, 12236 bytes
|
|
80
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Obama_and_Biden_await_updates_on_bin_Laden.jpg/220px-Obama_and_Biden_await_updates_on_bin_Laden.jpg): serving 200, 16643 bytes
|
|
81
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/President_Barack_Obama%2C_2012_portrait_crop.jpg/100px-President_Barack_Obama%2C_2012_portrait_crop.jpg): serving 200, 5966 bytes
|
|
82
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Barack_Obama_visiting_victims_of_2012_Aurora_shooting.jpg/220px-Barack_Obama_visiting_victims_of_2012_Aurora_shooting.jpg): serving 200, 14478 bytes
|
|
83
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Job_Growth_by_U.S._President_-_v1.png/352px-Job_Growth_by_U.S._President_-_v1.png): serving 200, 32500 bytes
|
|
84
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Official_portrait_of_Barack_Obama.jpg/220px-Official_portrait_of_Barack_Obama.jpg): serving 200, 18151 bytes
|
|
85
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Obama-venice-la.jpg/220px-Obama-venice-la.jpg): serving 200, 15631 bytes
|
|
86
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/ElectoralCollege2008.svg/290px-ElectoralCollege2008.svg.png): serving 200, 29556 bytes
|
|
87
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Percentage_of_Individuals_in_the_United_States_Without_Health_Insurance%2C_1963-2015.png/220px-Percentage_of_Individuals_in_the_United_States_Without_Health_Insurance%2C_1963-2015.png): serving 200, 13167 bytes
|
|
88
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/US_Employment_Statistics.svg/332px-US_Employment_Statistics.svg.png): serving 200, 22201 bytes
|
|
89
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/U.S._Total_Deficits_vs._National_Debt_Increases_2001-2010.png/220px-U.S._Total_Deficits_vs._National_Debt_Increases_2001-2010.png): serving 200, 15037 bytes
|
|
90
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/P050609PS-0531_%283508804772%29.jpg/220px-P050609PS-0531_%283508804772%29.jpg): serving 200, 11561 bytes
|
|
91
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Obamas_at_church_on_Inauguration_Day_2013.jpg/220px-Obamas_at_church_on_Inauguration_Day_2013.jpg): serving 200, 12927 bytes
|
|
92
|
+
2023/11/03 08:52:35 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/P06409PS-0571_%283594694537%29.jpg/220px-P06409PS-0571_%283594694537%29.jpg): serving 200, 15120 bytes
|
|
93
|
+
2023/11/03 08:52:36 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.visualEditor.core.utils.parsing%7Cext.visualEditor.desktopArticleTarget.init%7Cext.visualEditor.progressBarWidget%2CsupportCheck%2CtargetLoader%2CtempWikitextEditorWidget%2Ctrack%2Cve&skin=vector-2022&version=1q4ht): serving 200, 16349 bytes
|
|
94
|
+
2023/11/03 08:52:36 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.gadget.ReferenceTooltips%2Cswitcher&skin=vector-2022&version=141l3): serving 200, 6659 bytes
|
|
95
|
+
2023/11/03 08:52:36 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.choiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cite.ux-enhancements%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.phonos.init%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cext.uls.common%2Ccompactlinks%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%7Cjquery.uls.data%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctoc%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.editfont.styles%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.media%2Cready%7Cmediawiki.page.watch.ajax%7Cmmv.bootstrap%2Chead%7Cmmv.bootstrap.autostart%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions%7Cskins.vector.clientPreferences%2Cjs%7Cskins.vector.icons.js%7Cwikibase.client.vector-2022&skin=vector-2022&version=wxewo): serving 200, 193792 bytes
|
|
96
|
+
2023/11/03 08:52:37 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=mw.config.values.wbCurrentSiteDetails%2CwbRepo%7Coojs-ui.styles.icons-editing-core&skin=vector-2022&version=1kp4p): serving 200, 1789 bytes
|
|
97
|
+
2023/11/03 08:52:37 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.math.popup%7Cext.popups.images%2Cmain&skin=vector-2022&version=vgds4): serving 200, 20421 bytes
|
|
98
|
+
2023/11/03 08:52:37 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=mediawiki.ui.button&skin=vector-2022&version=1hgtt): serving 200, 1489 bytes
|
|
99
|
+
2023/11/03 08:52:37 ServeHTTP(https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?type=script&wikiid=enwiki): serving 200, 199 bytes
|
|
100
|
+
2023/11/03 08:52:37 ServeHTTP(https://en.wikipedia.org/static/favicon/wikipedia.ico): serving 200, 1035 bytes
|
|
101
|
+
2023/11/03 08:52:45 Shutting down
|
|
102
|
+
2023/11/03 08:52:45 Writing archive file to /tmp/archive.wprgo
|
package/wpr-replay.log
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
2023/11/03 08:52:53 Loading cert from /webpagereplay/certs/wpr_cert.pem
|
|
2
|
+
2023/11/03 08:52:53 Loading key from /webpagereplay/certs/wpr_key.pem
|
|
3
|
+
2023/11/03 08:52:53 Loading archive file from /tmp/archive.wprgo
|
|
4
|
+
2023/11/03 08:52:53 Opened archive /tmp/archive.wprgo
|
|
5
|
+
2023/11/03 08:52:53 Loading script from /webpagereplay/scripts/deterministic.js
|
|
6
|
+
2023/11/03 08:52:53 Use Ctrl-C to exit.
|
|
7
|
+
2023/11/03 08:52:53 Starting server on https://127.0.0.1:443
|
|
8
|
+
2023/11/03 08:52:53 Starting server on http://127.0.0.1:80
|
|
9
|
+
2023/11/03 08:52:57 ServeHTTP(https://accounts.google.com/ListAccounts?gpsia=1&source=ChromiumBrowser&json=standard): serving 200 response
|
|
10
|
+
2023/11/03 08:53:03 ServeHTTP(https://en.wikipedia.org/wiki/Barack_Obama): serving 200 response
|
|
11
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=codex-search-styles%7Cext.cite.styles%7Cext.phonos.icons%2Cstyles%7Cext.tmh.player.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cjquery.makeCollapsible.styles%7Cskins.vector.icons%2Cstyles%7Cwikibase.client.init&only=styles&skin=vector-2022): serving 200 response
|
|
12
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=startup&only=scripts&raw=1&skin=vector-2022): serving 200 response
|
|
13
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=site.styles&only=styles&skin=vector-2022): serving 200 response
|
|
14
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-wordmark-en.svg): serving 200 response
|
|
15
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/static/images/mobile/copyright/wikipedia-tagline-en.svg): serving 200 response
|
|
16
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/static/images/icons/wikipedia.png): serving 200 response
|
|
17
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=menu&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200 response
|
|
18
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=expand&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200 response
|
|
19
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=language&variant=progressive&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200 response
|
|
20
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/arrow-down.svg?9426f): serving 200 response
|
|
21
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/bullet-icon.svg?d4515): serving 200 response
|
|
22
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=skins.vector.icons&image=ellipsis&format=original&lang=en&skin=vector-2022&version=pc82b): serving 200 response
|
|
23
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/arrow-down-progressive.svg?f0b59): serving 200 response
|
|
24
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/load.php?modules=ext.phonos.icons&image=volumeUp&format=original&lang=en&skin=vector-2022&version=4cpix): serving 200 response
|
|
25
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/resources/src/mediawiki.skinning/images/magnify-clip-ltr.svg?8330e): serving 200 response
|
|
26
|
+
2023/11/03 08:53:04 ServeHTTP(https://en.wikipedia.org/w/skins/Vector/resources/skins.vector.styles/images/link-external-small-ltr-progressive.svg?30a3a): serving 200 response
|
|
27
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/President_Barack_Obama.jpg/220px-President_Barack_Obama.jpg): serving 200 response
|
|
28
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/3/33/Ann_Dunham_with_father_and_children.jpg/220px-Ann_Dunham_with_father_and_children.jpg): serving 200 response
|
|
29
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/1/1b/Semi-protection-shackle.svg/20px-Semi-protection-shackle.svg.png): serving 200 response
|
|
30
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/President_Barack_Obama%2C_2012_portrait_crop.jpg/75px-President_Barack_Obama%2C_2012_portrait_crop.jpg): serving 200 response
|
|
31
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seal_of_the_President_of_the_United_States.svg/70px-Seal_of_the_President_of_the_United_States.svg.png): serving 200 response
|
|
32
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Barack_Obama_signature.svg/128px-Barack_Obama_signature.svg.png): serving 200 response
|
|
33
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Obama_family_portrait_in_the_Green_Room.jpg/220px-Obama_family_portrait_in_the_Green_Room.jpg): serving 200 response
|
|
34
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/20px-Wiki_letter_w_cropped.svg.png): serving 200 response
|
|
35
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Nuvola_apps_kaboodle.svg/16px-Nuvola_apps_kaboodle.svg.png): serving 200 response
|
|
36
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Obamas_at_church_on_Inauguration_Day_2013.jpg/220px-Obamas_at_church_on_Inauguration_Day_2013.jpg): serving 200 response
|
|
37
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f1/BarackObamaportrait.jpg/220px-BarackObamaportrait.jpg): serving 200 response
|
|
38
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/ElectoralCollege2008.svg/290px-ElectoralCollege2008.svg.png): serving 200 response
|
|
39
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Obamamiltondavis1.jpg/220px-Obamamiltondavis1.jpg): serving 200 response
|
|
40
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Barry_Soetoro_school_record.jpg/220px-Barry_Soetoro_school_record.jpg): serving 200 response
|
|
41
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/e9/Official_portrait_of_Barack_Obama.jpg/220px-Official_portrait_of_Barack_Obama.jpg): serving 200 response
|
|
42
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/ElectoralCollege2012.svg/290px-ElectoralCollege2012.svg.png): serving 200 response
|
|
43
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/US_President_Barack_Obama_taking_his_Oath_of_Office_-_2009Jan20.jpg/220px-US_President_Barack_Obama_taking_his_Oath_of_Office_-_2009Jan20.jpg): serving 200 response
|
|
44
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/84/Percentage_of_Individuals_in_the_United_States_Without_Health_Insurance%2C_1963-2015.png/220px-Percentage_of_Individuals_in_the_United_States_Without_Health_Insurance%2C_1963-2015.png): serving 200 response
|
|
45
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/P06409PS-0571_%283594694537%29.jpg/220px-P06409PS-0571_%283594694537%29.jpg): serving 200 response
|
|
46
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Obama_Macri_October_2017.jpg/220px-Obama_Macri_October_2017.jpg): serving 200 response
|
|
47
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/15/P20220405AS-1082_%2852067439422%29.jpg/220px-P20220405AS-1082_%2852067439422%29.jpg): serving 200 response
|
|
48
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/P050609PS-0531_%283508804772%29.jpg/220px-P050609PS-0531_%283508804772%29.jpg): serving 200 response
|
|
49
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/6/63/Obama-venice-la.jpg/220px-Obama-venice-la.jpg): serving 200 response
|
|
50
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/9/96/Symbol_category_class.svg/16px-Symbol_category_class.svg.png): serving 200 response
|
|
51
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seal_of_the_President_of_the_United_States.svg/100px-Seal_of_the_President_of_the_United_States.svg.png): serving 200 response
|
|
52
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/5/55/President_Barack_Obama%2C_2012_portrait_crop.jpg/100px-President_Barack_Obama%2C_2012_portrait_crop.jpg): serving 200 response
|
|
53
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Blue_iPod_Nano.jpg/12px-Blue_iPod_Nano.jpg): serving 200 response
|
|
54
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Obama_and_Biden_await_updates_on_bin_Laden.jpg/220px-Obama_and_Biden_await_updates_on_bin_Laden.jpg): serving 200 response
|
|
55
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f6/Handshake_between_the_President_and_Cuban_President_Ra%C3%BAl_Castro.jpg/220px-Handshake_between_the_President_and_Cuban_President_Ra%C3%BAl_Castro.jpg): serving 200 response
|
|
56
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Barack_Obama_welcomes_Shimon_Peres_in_the_Oval_Office.jpg/220px-Barack_Obama_welcomes_Shimon_Peres_in_the_Oval_Office.jpg): serving 200 response
|
|
57
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/PPACA_Premium_Chart.jpg/300px-PPACA_Premium_Chart.jpg): serving 200 response
|
|
58
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Barack_Obama_talks_with_Benjamin_Netanyahu_%288637772147%29.jpg/220px-Barack_Obama_talks_with_Benjamin_Netanyahu_%288637772147%29.jpg): serving 200 response
|
|
59
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Vladimir_Putin_and_Barack_Obama_%282015-09-29%29_01.jpg/220px-Vladimir_Putin_and_Barack_Obama_%282015-09-29%29_01.jpg): serving 200 response
|
|
60
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/c/c0/Gallup_Poll-Approval_Rating-Barack_Obama.svg/275px-Gallup_Poll-Approval_Rating-Barack_Obama.svg.png): serving 200 response
|
|
61
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/8/87/IPhone_5.svg/13px-IPhone_5.svg.png): serving 200 response
|
|
62
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/6/69/P_vip.svg/28px-P_vip.svg.png): serving 200 response
|
|
63
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.svg/32px-Flag_of_the_United_States.svg.png): serving 200 response
|
|
64
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Speaker_Icon.svg/15px-Speaker_Icon.svg.png): serving 200 response
|
|
65
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Flag_of_Hawaii.svg/32px-Flag_of_Hawaii.svg.png): serving 200 response
|
|
66
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/10px-OOjs_UI_icon_edit-ltr-progressive.svg.png): serving 200 response
|
|
67
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/0/01/A_coloured_voting_box.svg/28px-A_coloured_voting_box.svg.png): serving 200 response
|
|
68
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Seal_of_Chicago%2C_Illinois.svg/28px-Seal_of_Chicago%2C_Illinois.svg.png): serving 200 response
|
|
69
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/d/db/Symbol_list_class.svg/16px-Symbol_list_class.svg.png): serving 200 response
|
|
70
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Illinois.svg/32px-Flag_of_Illinois.svg.png): serving 200 response
|
|
71
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/f0/Seal_of_the_United_States_Senate.svg/80px-Seal_of_the_United_States_Senate.svg.png): serving 200 response
|
|
72
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Balance%2C_by_David.svg/30px-Balance%2C_by_David.svg.png): serving 200 response
|
|
73
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/9/9f/Job_Growth_by_U.S._President_-_v1.png/352px-Job_Growth_by_U.S._President_-_v1.png): serving 200 response
|
|
74
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Barack_Obama_visiting_victims_of_2012_Aurora_shooting.jpg/220px-Barack_Obama_visiting_victims_of_2012_Aurora_shooting.jpg): serving 200 response
|
|
75
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/25/US_Employment_Statistics.svg/332px-US_Employment_Statistics.svg.png): serving 200 response
|
|
76
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Barack_Obama_addresses_joint_session_of_Congress_2009-02-24.jpg/220px-Barack_Obama_addresses_joint_session_of_Congress_2009-02-24.jpg): serving 200 response
|
|
77
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/U.S._Total_Deficits_vs._National_Debt_Increases_2001-2010.png/220px-U.S._Total_Deficits_vs._National_Debt_Increases_2001-2010.png): serving 200 response
|
|
78
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Michelle_Obama_2013_official_portrait.jpg/140px-Michelle_Obama_2013_official_portrait.jpg): serving 200 response
|
|
79
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/14px-Commons-logo.svg.png): serving 200 response
|
|
80
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/en/thumb/0/06/Wiktionary-logo-v2.svg/19px-Wiktionary-logo-v2.svg.png): serving 200 response
|
|
81
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/2/24/Wikinews-logo.svg/21px-Wikinews-logo.svg.png): serving 200 response
|
|
82
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/16px-Wikiquote-logo.svg.png): serving 200 response
|
|
83
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/18px-Wikisource-logo.svg.png): serving 200 response
|
|
84
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/21px-Wikidata-logo.svg.png): serving 200 response
|
|
85
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/a/aa/Lock-red-alt-2.svg): serving 200 response
|
|
86
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/d/d6/Lock-gray-alt-2.svg): serving 200 response
|
|
87
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/4/4d/Icon_pdf_file.png): serving 200 response
|
|
88
|
+
2023/11/03 08:53:04 ServeHTTP(https://upload.wikimedia.org/wikipedia/commons/6/65/Lock-green.svg): serving 200 response
|
|
89
|
+
2023/11/03 08:53:05 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.gadget.ReferenceTooltips%2Cswitcher&skin=vector-2022&version=141l3): serving 200 response
|
|
90
|
+
2023/11/03 08:53:05 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.visualEditor.core.utils.parsing%7Cext.visualEditor.desktopArticleTarget.init%7Cext.visualEditor.progressBarWidget%2CsupportCheck%2CtargetLoader%2CtempWikitextEditorWidget%2Ctrack%2Cve&skin=vector-2022&version=1q4ht): serving 200 response
|
|
91
|
+
2023/11/03 08:53:05 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.centralNotice.choiceData%2Cdisplay%2CgeoIP%2CimpressionDiet%2CkvStore%2ClegacySupport%2CstartUp%7Cext.centralauth.ForeignApi%2Ccentralautologin%7Cext.checkUser.clientHints%7Cext.cite.ux-enhancements%7Cext.cx.eventlogging.campaigns%7Cext.cx.model%7Cext.cx.uls.quick.actions%7Cext.echo.centralauth%7Cext.eventLogging%2CnavigationTiming%2Cpopups%2CwikimediaEvents%7Cext.growthExperiments.SuggestedEditSession%7Cext.phonos.init%7Cext.scribunto.logs%7Cext.tmh.OgvJsSupport%2Cplayer%7Cext.uls.common%2Ccompactlinks%2Cinterface%2Cpreferences%2Cwebfonts%7Cext.urlShortener.toolbar%7Cjquery%2Coojs%2Csite%7Cjquery.client%2CmakeCollapsible%2CtextSelection%7Cjquery.uls.data%7Cmediawiki.ForeignApi%2CString%2CTitle%2CUri%2Capi%2Cbase%2Ccldr%2Ccookie%2Cexperiments%2CjqueryMsg%2Clanguage%2Crouter%2Cstorage%2Ctoc%2Cuser%2Cutil%2CvisibleTimeout%7Cmediawiki.ForeignApi.core%7Cmediawiki.editfont.styles%7Cmediawiki.libs.pluralruleparser%7Cmediawiki.page.media%2Cready%7Cmediawiki.page.watch.ajax%7Cmmv.bootstrap%2Chead%7Cmmv.bootstrap.autostart%7Cmw.cx.SiteMapper%7Coojs-ui.styles.icons-interactions%7Cskins.vector.clientPreferences%2Cjs%7Cskins.vector.icons.js%7Cwikibase.client.vector-2022&skin=vector-2022&version=wxewo): serving 200 response
|
|
92
|
+
2023/11/03 08:53:07 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=ext.math.popup%7Cext.popups.images%2Cmain&skin=vector-2022&version=vgds4): serving 200 response
|
|
93
|
+
2023/11/03 08:53:07 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=mw.config.values.wbCurrentSiteDetails%2CwbRepo%7Coojs-ui.styles.icons-editing-core&skin=vector-2022&version=1kp4p): serving 200 response
|
|
94
|
+
2023/11/03 08:53:07 ServeHTTP(https://en.wikipedia.org/w/load.php?lang=en&modules=mediawiki.ui.button&skin=vector-2022&version=1hgtt): serving 200 response
|
|
95
|
+
2023/11/03 08:53:07 ServeHTTP(https://login.wikimedia.org/wiki/Special:CentralAutoLogin/checkLoggedIn?type=script&wikiid=enwiki): serving 200 response
|
|
96
|
+
2023/11/03 08:53:07 ServeHTTP(https://en.wikipedia.org/static/favicon/wikipedia.ico): serving 200 response
|