Skip to content

Commit 6483488

Browse files
committed
Website V1.1
- Includes: * Move xfu-download-box to separate file - layout: * Update all layouts to use container-fluid * Use bootstrap (10, 2) columns as default layout - Home: * Add scroll to downloads button * Add MIUI downloads to the description * Fix logo margin issue on small screen devices - Data Generator: * Update vendor and firmware to use templates - PixFuture: * Add two ads units and add badge to the footer * Update Ads.txt - Pages: * Regenerate Firmware and Vendor pages Signed-off-by: yshalsager <[email protected]>
1 parent 2f44058 commit 6483488

File tree

344 files changed

+14956
-6978
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

344 files changed

+14956
-6978
lines changed

_includes/ads_box.html

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
2+
<!-- xfu-download-box -->
3+
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3257146945160733"
4+
data-ad-slot="1549303129" data-ad-format="auto" data-full-width-responsive="true"></ins>
5+
<script>
6+
(adsbygoogle = window.adsbygoogle || []).push({});
7+
</script>

_includes/choose.html

+65-60
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
<div class="modal-dialog" role="document" style="margin-top: 5%">
66
<div class="modal-content">
77
<div class="modal-header">
8-
<h5 class="modal-title" id="NoDeviceErrorModalLabel" data-ref="NoDeviceError">No Device Selected</h5>
8+
<h5 class="modal-title" id="NoDeviceErrorModalLabel" data-ref="NoDeviceError">No Device Selected
9+
</h5>
910
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
1011
<span aria-hidden="true">&times;</span>
1112
</button>
@@ -19,72 +20,76 @@ <h5 class="modal-title" id="NoDeviceErrorModalLabel" data-ref="NoDeviceError">No
1920
</div>
2021
</div>
2122
</div>
22-
<div class="container">
23-
<div class="card-group">
24-
<div class="card" id="download">
25-
<div class="card-body">
26-
<span class="icon solid major fa-download accent2" id="dl-icon"></span>
27-
<h3 data-ref="DownloadLatestFirmware">Download latest Firmware, ROM, or Vendor</h3>
28-
<p data-ref="DownloadInstruction">Select the download type first, then select your device from the drop down menu.
29-
You can search devices by name and codename.
30-
</p>
31-
<br />
32-
{%include ads.html%}
33-
<br />
34-
<form id="DownloadForm" name="DownloadForm">
35-
<div class="row gtr-uniform gtr-50" style="display: inline-block">
36-
<div class="col-12" style="margin-bottom: 5px">
37-
<select name="device" id="device" class="device">
38-
<option></option>
39-
</select>
23+
<div class="row justify-content-center">
24+
<div class="col-auto">
25+
<div class="card-group">
26+
<div class="card" id="download">
27+
<div class="card-body">
28+
<span class="icon solid major fa-download accent2" id="dl-icon"></span>
29+
<h3 data-ref="DownloadLatestFirmware">Download latest Firmware, ROM, or Vendor</h3>
30+
<p data-ref="DownloadInstruction">Select the download type first, then select your device from
31+
the drop
32+
down menu.
33+
You can search devices by name and codename.
34+
</p>
35+
<br />
36+
{%include ads.html%}
37+
<br />
38+
<form id="DownloadForm" name="DownloadForm">
39+
<div class="row gtr-uniform gtr-50" style="display: inline-block">
40+
<div class="col-12" style="margin-bottom: 5px">
41+
<select name="device" id="device" class="device">
42+
<option></option>
43+
</select>
44+
</div>
45+
<div class="col-12">
46+
<input type="radio" id="firmware" value="firmware" name="request"
47+
onclick="deviceMenu()" checked>
48+
<label for="firmware" data-ref="firmware">Firmware</label>
49+
<input type="radio" id="vendor" value="vendor" name="request"
50+
onclick="deviceMenu()">
51+
<label for="vendor" data-ref="vendor">Vendor</label>
52+
<input type="radio" id="miui" value="miui" name="request" onclick="deviceMenu()">
53+
<label for="miui" data-ref="rom">ROM</label>
54+
</div>
55+
<div class="col-12">
56+
<input type="radio" id="latest" value="latest" name="type" checked>
57+
<label for="latest" data-ref="latest">Latest</label>
58+
<input type="radio" id="archive" value="archive" name="type">
59+
<label for="archive" data-ref="archive">Archive</label>
60+
</div>
61+
<div class="col-12">
62+
<ul class="actions" style="display: inline-block">
63+
<li> <button type="submit" class="btn btn-primary"
64+
onclick="return choicesParser()" data-ref="download">Download</button>
65+
</li>
66+
</ul>
67+
</div>
4068
</div>
41-
<div class="col-12">
42-
<input type="radio" id="firmware" value="firmware" name="request" onclick="deviceMenu()"
43-
checked>
44-
<label for="firmware" data-ref="firmware">Firmware</label>
45-
<input type="radio" id="vendor" value="vendor" name="request" onclick="deviceMenu()">
46-
<label for="vendor" data-ref="vendor">Vendor</label>
47-
<input type="radio" id="miui" value="miui" name="request" onclick="deviceMenu()">
48-
<label for="miui" data-ref="rom">ROM</label>
49-
</div>
50-
<div class="col-12">
51-
<input type="radio" id="latest" value="latest" name="type" checked>
52-
<label for="latest" data-ref="latest">Latest</label>
53-
<input type="radio" id="archive" value="archive" name="type">
54-
<label for="archive" data-ref="archive">Archive</label>
55-
</div>
56-
<div class="col-12">
57-
<ul class="actions" style="display: inline-block">
58-
<li> <button type="submit" class="btn btn-primary"
59-
onclick="return choicesParser()" data-ref="download">Download</button>
60-
</li>
61-
</ul>
62-
</div>
63-
</div>
64-
</form>
69+
</form>
70+
</div>
6571
</div>
6672
</div>
67-
</div>
68-
</div>
69-
<div class="container">
70-
<div class="card-group">
71-
<div class="card">
72-
<div class="card-body">
73-
{% assign blog = site.posts.first %}
74-
<h5 class="card-title text-left" data-ref="LatestPost">Latest Blog Post</h5>
75-
<div style=" display: flex; flex-direction: column; align-items: center;
73+
<div class="card-group">
74+
<div class="card">
75+
<div class="card-body">
76+
{% assign blog = site.posts.first %}
77+
<h5 class="card-title text-left" data-ref="LatestPost">Latest Blog Post</h5>
78+
<div style=" display: flex; flex-direction: column; align-items: center;
7679
justify-content: center; height: 85%; width: 100%;">
77-
<p class="card-text"><a href={{ blog.url }}><span>{{ blog.title }}</span></a></p>
78-
<a href="/blog/" class="btn btn-secondary" data-ref="VisitBlog">Visit Blog</a>
80+
<p class="card-text"><a href={{ blog.url }}><span>{{ blog.title }}</span></a></p>
81+
<a href="/blog/" class="btn btn-secondary" data-ref="VisitBlog">Visit Blog</a>
82+
</div>
7983
</div>
8084
</div>
81-
</div>
82-
<div class="card">
83-
<div class="card-body">
84-
<h5 class="card-title text-left" data-ref="LatestUploads">Latest Uploads</h5>
85-
<ul class="list-unstyled text-left" id="releases"></ul>
85+
<div class="card">
86+
<div class="card-body">
87+
<h5 class="card-title text-left" data-ref="LatestUploads">Latest Uploads</h5>
88+
<ul class="list-unstyled text-left" id="releases"></ul>
89+
</div>
8690
</div>
8791
</div>
8892
</div>
93+
{%include pix_ad_160x600_1.html%}
8994
</div>
90-
</section>
95+
</section>

_includes/footer.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<ul class="copyright">
3535
<li data-ref="copyright">&copy; Xiaomi Firmware Updater. All rights reserved.</li>
3636
<li data-ref="template">Template: <a href="https://html5up.net">HTML5 UP</a></li>
37-
<li><span data-ref="siteVersion">Site version</span>: v.1.0.0</li>
37+
<li><span data-ref="siteVersion">Site version</span>: v.1.1.0</li>
38+
<li>PixFuture exclusive partner.</li>
3839
</ul>
3940
</footer>

_includes/pix_ad_160x600_1.html

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<div class="col-2 d-none d-xl-block">
2+
<div id="pf-24329x160x600x4150x_ADSLOT1" clickTrack="%%CLICK_URL_ESC%%"></div>
3+
<script type="text/javascript" slotId="24329x160x600x4150x_ADSLOT1" async
4+
src="https://served-by.pixfuture.com/www/delivery/ads.js"></script>
5+
</div>

_includes/pix_ad_320x50_1.html

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<div class="mx-auto d-xl-none mb-5 center" id="pf-24332x320x50x4150x_ADSLOT1" clickTrack="%%CLICK_URL_ESC%%"><br/></div>
2+
<script type="text/javascript" slotId="24332x320x50x4150x_ADSLOT1" async
3+
src="https://served-by.pixfuture.com/www/delivery/ads.js"></script>

_layouts/download.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,15 @@
4949
</header>
5050

5151
<!-- Main -->
52-
<section id="main" class="container">
52+
<section id="main">
5353
<header>
5454
<h2>{{page.title}}</h2>
55+
{% if page.date %}<p style="font-size: 16px; margin-top: 0.2em;"><em style="color: #b3b3b3">Published on
56+
{{ page.date | date: '%B %d, %Y' }}</em></p>{% endif %}
57+
{% if page.description %}<p>{{page.description}}.</p>{% endif %}
5558
</header>
5659
<div class="dropdown-divider"></div>
57-
<div class="box">
60+
<div class="container-fluid">
5861
{{content}}
5962
</div>
6063
</section>

_layouts/index.html

+9-4
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@
4343
<img src="/images/xfu.png">
4444
<h2 data-ref="XiaomiFirmwareUpdater">Xiaomi Firmware Updater</h2>
4545
<p data-ref="description">The easiest way to get flashable firmware zip files for Xiaomi devices!</p>
46-
<h5 data-ref="scroll"><i class="fas fa-angle-down"></i> Scroll down for firmware updates</h5>
46+
<button type="button" onclick="scrollToDownload()" class="btn btn-light btn-raised btn-lg" data-toggle="tooltip"
47+
data-placement="bottom" title="Pick your device and download" data-container="body"><i
48+
class="fas fa-angle-down"></i> Scroll to downloads</button>
4749
</section>
4850

4951
<!-- Main -->
@@ -54,11 +56,14 @@ <h5 data-ref="scroll"><i class="fas fa-angle-down"></i> Scroll down for firmware
5456
<h2 data-ref="follow">Follow the updates</h2>
5557
<p data-ref="join">Join Telegram channels to get notified when a new update is released.</p>
5658
<div class="btn-group" role="group" aria-label="Telegram">
57-
<a href="https://t.me/XiaomiFirmwareUpdater" class="btn btn-secondary" role="button" data-ref="tg_XiaomiFirmwareUpdater">Xiaomi
59+
<a href="https://t.me/XiaomiFirmwareUpdater" class="btn btn-secondary" role="button"
60+
data-ref="tg_XiaomiFirmwareUpdater">Xiaomi
5861
Firmware Updater <i class="icon brands fa-telegram fa-lg"></i></a>
59-
<a href="https://t.me/MIUIUpdatesTracker" class="btn btn-secondary" role="button" data-ref="tg_MIUIUpdatesTracker">MIUI Updates
62+
<a href="https://t.me/MIUIUpdatesTracker" class="btn btn-secondary" role="button"
63+
data-ref="tg_MIUIUpdatesTracker">MIUI Updates
6064
Tracker <i class="icon brands fa-telegram-plane fa-lg"></i></a>
61-
<a href="https://t.me/XiaomiGlobalDeals" class="btn btn-secondary" role="button" data-ref="tg_XiaomiGlobalDeals">Xiaomi Global
65+
<a href="https://t.me/XiaomiGlobalDeals" class="btn btn-secondary" role="button"
66+
data-ref="tg_XiaomiGlobalDeals">Xiaomi Global
6267
Deals <i class="icon brands fa-telegram fa-lg"></i></a>
6368
</div>
6469
</section>

_layouts/single.html

+11-5
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,23 @@
4040
</header>
4141

4242
<!-- Main -->
43-
<section id="main" class="container">
43+
<section id="main">
4444
<header>
4545
<h2>{{page.title}}</h2>
46-
{% if page.date %}<p style="font-size: 16px; margin-top: 0.2em;"><em style="color: #b3b3b3">Published on {{ page.date | date: '%B %d, %Y' }}</em></p>{% endif %}
46+
{% if page.date %}<p style="font-size: 16px; margin-top: 0.2em;"><em style="color: #b3b3b3">Published on
47+
{{ page.date | date: '%B %d, %Y' }}</em></p>{% endif %}
4748
{% if page.description %}<p>{{page.description}}.</p>{% endif %}
4849
</header>
4950
<div class="dropdown-divider"></div>
50-
<div class="box">
51+
<div class="container-fluid">
5152
{%include ads.html%}
5253
<br>
53-
{{content}}
54+
<div class="row justify-content-center">
55+
<div class="col-10">
56+
{{content}}
57+
</div>
58+
{%include pix_ad_160x600_1.html%}
59+
</div>
5460
</div>
5561
</section>
5662

@@ -63,4 +69,4 @@ <h2>{{page.title}}</h2>
6369
{%include scripts.html%}
6470
</body>
6571

66-
</html>
72+
</html>

ads.txt

+136
Original file line numberDiff line numberDiff line change
@@ -1 +1,137 @@
11
google.com, pub-3257146945160733, DIRECT, f08c47fec0942fa0
2+
#pixfuture START updated July-16-2020
3+
pixfuture.com, 4150, DIRECT
4+
contextweb.com, 548938, DIRECT, 89ff185a4c4e857c
5+
adtech.com, 9834, DIRECT
6+
aolcloud.net, 9834, DIRECT
7+
advertising.com, 24140, DIRECT
8+
aolcloud.net, 24140, DIRECT
9+
coxmt.com, 2000067907202, RESELLER
10+
pubmatic.com, 156078, RESELLER, 5d62403b186f2ace
11+
pubmatic.com, 156377, RESELLER, 5d62403b186f2ace
12+
pubmatic.com, 155967, RESELLER, 5d62403b186f2ace
13+
openx.com, 537143344, RESELLER, 6a698e2ec38604c6
14+
indexexchange.com, 175407, RESELLER, 50b1c356f2c5c8fc
15+
openx.com, 537125356, RESELLER, 6a698e2ec38604c6
16+
indexexchange.com, 183965, RESELLER, 50b1c356f2c5c8fc
17+
pubmatic.com, 156458, RESELLER, 5d62403b186f2ace
18+
pubmatic.com, 156325, RESELLER, 5d62403b186f2ace
19+
pubmatic.com, 156084, RESELLER, 5d62403b186f2ace
20+
coxmt.com, 2000067995202, RESELLER
21+
rubiconproject.com, 18222, RESELLER, 0bfd66d529a55807
22+
google.com, pub-1575911585432548, DIRECT, f08c47fec0942fa0
23+
spotxchange.com, 226725, DIRECT, 7842df1d2fe2db34
24+
spotx.tv, 226725, DIRECT, 7842df1d2fe2db34
25+
openx.com, 540406323, DIRECT, 6a698e2ec38604c6
26+
appnexus.com, 9982, DIRECT, f5ab79cb980f11d1
27+
contextweb.com, 561987, DIRECT, 89ff185a4c4e857c
28+
lockerdome.com, 11716509856893696, DIRECT
29+
gumgum.com, 13753, DIRECT, ffdef49475d318a9
30+
appnexus.com, 1001, RESELLER, f5ab79cb980f11d1
31+
appnexus.com, 1942, RESELLER, f5ab79cb980f11d1
32+
appnexus.com, 2758, RESELLER, f5ab79cb980f11d1
33+
appnexus.com, 3135, RESELLER, f5ab79cb980f11d1
34+
bidtellect.com, 1407, RESELLER, 1c34aa2d85d45e93
35+
contextweb.com, 558355, RESELLER, 89ff185a4c4e857c
36+
criteo.com, 109412, DIRECT, 9fac4a4a87c2a44f
37+
openx.com, 537120563, RESELLER, 6a698e2ec38604c6
38+
openx.com, 537149485, RESELLER, 6a698e2ec38604c6
39+
pubmatic.com, 50758, RESELLER, 5d62403b186f2ace
40+
spotx.tv, 147949, RESELLER, 7842df1d2fe2db34
41+
spotxchange.com, 147949, RESELLER, 7842df1d2fe2db34
42+
google.com, pub-9557089510405422, RESELLER, f08c47fec0942fa0
43+
google.com, pub-3848273848634341, RESELLER, f08c47fec0942fa0
44+
rhythmone.com, 78519861, RESELLER, a670c89d4a324e47
45+
outbrain.com, 01a755b08c8c22b15d46a8b753ab6955d4, RESELLER
46+
outbrain.com, 01a755b08c8c22b15d46a8b753ab6955d4, DIRECT
47+
appnexus.com, 7597,RESELLER, f5ab79cb980f11d1
48+
lkqd.com, 470, RESELLER, 59c49fa9598a0117
49+
lkqd.net, 470, RESELLER, 59c49fa9598a0117
50+
33across.com, 0013300001r0t9mAAA, RESELLER
51+
appnexus.com, 10239, RESELLER, f5ab79cb980f11d1
52+
rubiconproject.com, 16414, RESELLER, 0bfd66d529a55807
53+
pubmatic.com, 156423, RESELLER, 5d62403b186f2ace
54+
openx.com, 539392223, RESELLER, 6a698e2ec38604c6
55+
rhythmone.com, 2439829435, RESELLER, a670c89d4a324e47
56+
emxdgt.com, 326, RESELLER, 1e1d41537f7cad7f
57+
pubmatic.com, 158127, DIRECT, 5d62403b186f2ace
58+
sharethrough.com, 62beb9db, DIRECT, d53b998a7bd4ecd2
59+
spotxchange.com, 212457, RESELLER, 7842df1d2fe2db34
60+
spotx.tv, 212457, RESELLER, 7842df1d2fe2db34
61+
pubmatic.com, 156557, RESELLER, 5d62403b186f2ace
62+
rubiconproject.com, 18694, RESELLER, 0bfd66d529a55807
63+
openx.com, 540274407, RESELLER, 6a698e2ec38604c6
64+
indexexchange.com, 186046, RESELLER, 50b1c356f2c5c8fc
65+
conversantmedia.com, 42037, DIRECT, 03113cd04947736d
66+
appnexus.com, 4052, RESELLER, f5ab79cb980f11d1
67+
contextweb.com, 561998, RESELLER, 89ff185a4c4e857c
68+
pubmatic.com, 158100, RESELLER, 5d62403b186f2ace
69+
openx.com, 540031703, RESELLER, 6a698e2ec38604c6
70+
aps.amazon.com, 76101559-a029-4be1-a789-2346123df063, DIRECT
71+
pubmatic.com, 157150, RESELLER, 5d62403b186f2ace
72+
openx.com, 540191398, RESELLER, 6a698e2ec38604c6
73+
rubiconproject.com, 18020, RESELLER, 0bfd66d529a55807
74+
appnexus.com, 1908, RESELLER, f5ab79cb980f11d1
75+
adtech.com, 12068, RESELLER, e1a5b5b6e3255540
76+
districtm.io, 100962, RESELLER, 3fd707be9c4527c3
77+
rhythmone.com, 1654642120, RESELLER, a670c89d4a324e47
78+
mgid.com, 130961, DIRECT, d4c29acad76ce94f
79+
synacor.com, 82188, DIRECT, e108f11b2cdf7d5b
80+
33across.com, 0014000001aXjnGAAS, RESELLER, bbea06d9c4d2853c
81+
adtech.com, 12094, RESELLER
82+
gumgum.com, 13318, RESELLER, ffdef49475d318a9
83+
appnexus.com, 9316, RESELLER, f5ab79cb980f11d1
84+
districtm.io, 101769, RESELLER, 3fd707be9c4527c3
85+
google.com, pub-9685734445476814, RESELLER, f08c47fec0942fa0
86+
pubmatic.com, 156344, RESELLER, 5d62403b186f2ace
87+
appnexus.com, 7944, RESELLER, f5ab79cb980f11d1
88+
districtm.io, 100885, RESELLER
89+
google.com, pub-5278973888786334, RESELLER, f08c47fec0942fa0
90+
google.com, pub-7620071422727774, RESELLER, f08c47fec0942fa0
91+
google.com, pub-9148265802523938, RESELLER, f08c47fec0942fa0
92+
rhythmone.com, 2497923403, RESELLER, a670c89d4a324e47
93+
rubiconproject.com, 13344, RESELLER, 0bfd66d529a55807
94+
aralego.com, par-488A3E6BD8D997D0ED8B3BD34D8BA4B, RESELLER
95+
ucfunnel.com, par-488A3E6BD8D997D0ED8B3BD34D8BA4B, RESELLER
96+
sonobi.com, 0b24fdfc82, DIRECT, d1a215d9eb5aee9e
97+
rhythmone.com, 1059622079, RESELLER, a670c89d4a324e47
98+
contextweb.com, 560606, RESELLER, 89ff185a4c4e857c
99+
my6sense.com, 10379, DIRECT
100+
districtm.io, 101966, DIRECT, 3fd707be9c4527c3
101+
rhythmone.com, 2298741357, DIRECT, a670c89d4a324e47
102+
adtelligent.com, 500592, DIRECT
103+
appnexus.com, 3153, RESELLER, f5ab79cb980f11d1
104+
onetag.com, 59a18369e249bfb, DIRECT
105+
adtech.com, 12069, RESELLER
106+
33across.com, 0010b00002VYZoUAAX, DIRECT, bbea06d9c4d2853c
107+
rubiconproject.com, 21642, RESELLER, 0bfd66d529a55807
108+
rubiconproject.com, 21434, RESELLER, 0bfd66d529a55807
109+
pubmatic.com, 158136, RESELLER, 5d62403b186f2ace
110+
pubmatic.com, 158569, RESELLER, 5d62403b186f2ace
111+
openx.com, 540995201, RESELLER, 6a698e2ec38604c6
112+
aol.com, 47594, RESELLER, e1a5b5b6e3255540
113+
yahoo.com, 55188, RESELLER, e1a5b5b6e3255540
114+
adtech.com, 9993, RESELLER
115+
advangelists.com, 8d3bba7425e7c98c50f52ca1b52d3735, RESELLER
116+
sonobi.com, a416546bb7, RESELLER, d1a215d9eb5aee9e
117+
indexexchange.com, 190966, RESELLER, 50b1c356f2c5c8fc
118+
indexexchange.com, 191625, DIRECT, 50b1c356f2c5c8fc
119+
smartadserver.com, 3660, DIRECT
120+
contextweb.com, 560288, RESELLER, 89ff185a4c4e857c
121+
pubmatic.com, 156439, RESELLER, 5d62403b186f2ace
122+
pubmatic.com, 154037, RESELLER, 5d62403b186f2ace
123+
rubiconproject.com, 16114, RESELLER, 0bfd66d529a55807
124+
openx.com, 537149888, RESELLER, 6a698e2ec38604c6
125+
appnexus.com, 3703, RESELLER, f5ab79cb980f11d1
126+
districtm.io, 101760, RESELLER, 3fd707be9c4527c3
127+
loopme.com, s-2411, RESELLER, 6c8d5f95897a5a3b
128+
loopme.com, 5679, RESELLER, 6c8d5f95897a5a3b
129+
xad.com, 958, RESELLER, 81cbf0a75a5e0e9a
130+
rhythmone.com, 2564526802, RESELLER, a670c89d4a324e47
131+
smaato.com, 1100044045, RESELLER, 07bcf65f187117b4
132+
pubnative.net, 1006576, RESELLER, d641df8625486a7b
133+
adyoulike.com, b4bf4fdd9b0b915f746f6747ff432bde, RESELLER, 4ad745ead2958bf7
134+
telaria.com, 0t5pq-x619c, DIRECT, 1a4e959a1b50034a
135+
tremorhub.com, 0t5pq-x619c, DIRECT, 1a4e959a1b50034a
136+
synacor.com, 82378, DIRECT, e108f11b2cdf7d5b
137+
#pixfuture END updated July-16-2020

0 commit comments

Comments
 (0)