device_detector 1.0.3 → 1.0.7

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.
Files changed (94) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +15 -0
  3. data/README.md +8 -7
  4. data/lib/device_detector/bot.rb +2 -2
  5. data/lib/device_detector/browser.rb +364 -0
  6. data/lib/device_detector/client.rb +11 -2
  7. data/lib/device_detector/device.rb +1247 -22
  8. data/lib/device_detector/memory_cache.rb +5 -5
  9. data/lib/device_detector/metadata_extractor.rb +7 -8
  10. data/lib/device_detector/model_extractor.rb +3 -3
  11. data/lib/device_detector/name_extractor.rb +2 -2
  12. data/lib/device_detector/os.rb +150 -116
  13. data/lib/device_detector/parser.rb +23 -10
  14. data/lib/device_detector/version.rb +1 -1
  15. data/lib/device_detector/version_extractor.rb +29 -2
  16. data/lib/device_detector.rb +73 -40
  17. data/regexes/bots.yml +868 -62
  18. data/regexes/client/browser_engine.yml +11 -2
  19. data/regexes/client/browsers.yml +1132 -112
  20. data/regexes/client/feed_readers.yml +5 -11
  21. data/regexes/client/libraries.yml +86 -2
  22. data/regexes/client/mediaplayers.yml +39 -3
  23. data/regexes/client/mobile_apps.yml +940 -66
  24. data/regexes/client/pim.yml +66 -3
  25. data/regexes/device/cameras.yml +6 -6
  26. data/regexes/device/car_browsers.yml +23 -3
  27. data/regexes/device/consoles.yml +15 -3
  28. data/regexes/device/mobiles.yml +18351 -3566
  29. data/regexes/device/notebooks.yml +114 -0
  30. data/regexes/device/portable_media_player.yml +36 -9
  31. data/regexes/device/shell_tv.yml +117 -0
  32. data/regexes/device/televisions.yml +440 -35
  33. data/regexes/oss.yml +635 -284
  34. data/regexes/vendorfragments.yml +5 -1
  35. metadata +21 -118
  36. data/.gitignore +0 -14
  37. data/.travis.yml +0 -14
  38. data/Gemfile +0 -8
  39. data/Rakefile +0 -96
  40. data/device_detector.gemspec +0 -26
  41. data/spec/device_detector/bot_fixtures_spec.rb +0 -30
  42. data/spec/device_detector/client_fixtures_spec.rb +0 -31
  43. data/spec/device_detector/concrete_user_agent_spec.rb +0 -135
  44. data/spec/device_detector/detector_fixtures_spec.rb +0 -100
  45. data/spec/device_detector/device_fixtures_spec.rb +0 -36
  46. data/spec/device_detector/device_spec.rb +0 -151
  47. data/spec/device_detector/memory_cache_spec.rb +0 -148
  48. data/spec/device_detector/model_extractor_spec.rb +0 -63
  49. data/spec/device_detector/os_fixtures_spec.rb +0 -26
  50. data/spec/device_detector/version_extractor_spec.rb +0 -79
  51. data/spec/device_detector_spec.rb +0 -189
  52. data/spec/fixtures/client/browser.yml +0 -2206
  53. data/spec/fixtures/client/feed_reader.yml +0 -199
  54. data/spec/fixtures/client/library.yml +0 -175
  55. data/spec/fixtures/client/mediaplayer.yml +0 -163
  56. data/spec/fixtures/client/mobile_app.yml +0 -193
  57. data/spec/fixtures/client/pim.yml +0 -115
  58. data/spec/fixtures/detector/bots.yml +0 -3260
  59. data/spec/fixtures/detector/camera.yml +0 -121
  60. data/spec/fixtures/detector/car_browser.yml +0 -21
  61. data/spec/fixtures/detector/console.yml +0 -281
  62. data/spec/fixtures/detector/desktop.yml +0 -5361
  63. data/spec/fixtures/detector/feature_phone.yml +0 -891
  64. data/spec/fixtures/detector/feed_reader.yml +0 -551
  65. data/spec/fixtures/detector/mediaplayer.yml +0 -210
  66. data/spec/fixtures/detector/mobile_apps.yml +0 -456
  67. data/spec/fixtures/detector/phablet.yml +0 -3785
  68. data/spec/fixtures/detector/portable_media_player.yml +0 -178
  69. data/spec/fixtures/detector/smart_display.yml +0 -61
  70. data/spec/fixtures/detector/smartphone-1.yml +0 -9953
  71. data/spec/fixtures/detector/smartphone-10.yml +0 -9924
  72. data/spec/fixtures/detector/smartphone-11.yml +0 -9889
  73. data/spec/fixtures/detector/smartphone-12.yml +0 -8655
  74. data/spec/fixtures/detector/smartphone-2.yml +0 -9967
  75. data/spec/fixtures/detector/smartphone-3.yml +0 -9887
  76. data/spec/fixtures/detector/smartphone-4.yml +0 -9911
  77. data/spec/fixtures/detector/smartphone-5.yml +0 -9933
  78. data/spec/fixtures/detector/smartphone-6.yml +0 -9923
  79. data/spec/fixtures/detector/smartphone-7.yml +0 -9892
  80. data/spec/fixtures/detector/smartphone-8.yml +0 -9896
  81. data/spec/fixtures/detector/smartphone-9.yml +0 -9928
  82. data/spec/fixtures/detector/smartphone.yml +0 -9984
  83. data/spec/fixtures/detector/tablet-1.yml +0 -10023
  84. data/spec/fixtures/detector/tablet-2.yml +0 -9968
  85. data/spec/fixtures/detector/tablet-3.yml +0 -7787
  86. data/spec/fixtures/detector/tablet.yml +0 -9951
  87. data/spec/fixtures/detector/tv.yml +0 -3333
  88. data/spec/fixtures/detector/unknown.yml +0 -3283
  89. data/spec/fixtures/device/camera.yml +0 -19
  90. data/spec/fixtures/device/car_browser.yml +0 -7
  91. data/spec/fixtures/device/console.yml +0 -79
  92. data/spec/fixtures/parser/oss.yml +0 -1047
  93. data/spec/fixtures/parser/vendorfragments.yml +0 -162
  94. data/spec/spec_helper.rb +0 -9
@@ -1,3333 +0,0 @@
1
- ---
2
- -
3
- user_agent: Mozilla/5.0 (DTV) AppleWebKit/531.2+ (KHTML, like Gecko) Espial/6.0.4
4
- os: [ ]
5
- client:
6
- type: browser
7
- name: Espial TV Browser
8
- short_name: ES
9
- version: "6.0.4"
10
- engine: WebKit
11
- engine_version: "531.2"
12
- device:
13
- type: tv
14
- brand: ""
15
- model: ""
16
- os_family: Unknown
17
- browser_family: Unknown
18
- -
19
- user_agent: HbbTV/1.1.1 (;;;;) Mozilla/5.0 (compatible; ANTGalio/3.0.2.1.22.43.08; Linux2.6.18-7.1/7405d0-smp)
20
- os:
21
- name: GNU/Linux
22
- short_name: LIN
23
- version: ""
24
- platform: ""
25
- client:
26
- type: browser
27
- name: ANTGalio
28
- short_name: AG
29
- version: "3.0.2.1.22.43.08"
30
- engine: ""
31
- engine_version: ""
32
- device:
33
- type: tv
34
- brand: ""
35
- model: null
36
- os_family: GNU/Linux
37
- browser_family: Unknown
38
- -
39
- user_agent: Opera/9.80 (Linux sh4 ; U; HBBTV/1.0 (; LOH/1.00; -----;;;) CE-HTML/1.0 Config(L:de,CC:AT); en) Presto/2.5.21 Version/10.30
40
- os:
41
- name: GNU/Linux
42
- short_name: LIN
43
- version: ""
44
- platform: ""
45
- client:
46
- type: browser
47
- name: Opera
48
- short_name: OP
49
- version: "10.30"
50
- engine: Presto
51
- engine_version: "2.5.21"
52
- device:
53
- type: tv
54
- brand: ""
55
- model: null
56
- os_family: GNU/Linux
57
- browser_family: Opera
58
- -
59
- user_agent: Opera/10.60 (Linux sh4 ; U; HBBTV/1.0 (; LOH/2.01; -----;;;) CE-HTML/1.0 Config(Hotel,L:de,CC:DE); en) Presto/2.6.33 Version/10.60
60
- os:
61
- name: GNU/Linux
62
- short_name: LIN
63
- version: ""
64
- platform: ""
65
- client:
66
- type: browser
67
- name: Opera
68
- short_name: OP
69
- version: "10.60"
70
- engine: Presto
71
- engine_version: "2.6.33"
72
- device:
73
- type: tv
74
- brand: ""
75
- model: null
76
- os_family: GNU/Linux
77
- browser_family: Opera
78
- -
79
- user_agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2) Gecko/20100222 Firefox/3.6 Kylo/0.6.1.70394
80
- os:
81
- name: Windows
82
- short_name: WIN
83
- version: "XP"
84
- platform: ""
85
- client:
86
- type: browser
87
- name: Kylo
88
- short_name: KY
89
- version: "0.6.1.70394"
90
- engine: Gecko
91
- engine_version: ""
92
- device:
93
- type: tv
94
- brand: ""
95
- model: ""
96
- os_family: Windows
97
- browser_family: Unknown
98
- -
99
- user_agent: Mozilla/3.0 WebTV/1.2 (compatible; MSIE 2.0)
100
- os:
101
- name: WebTV
102
- short_name: WTV
103
- version: "1.2"
104
- platform: ""
105
- client:
106
- type: browser
107
- name: Internet Explorer
108
- short_name: IE
109
- version: "2.0"
110
- engine: Trident
111
- engine_version: ""
112
- device:
113
- type: tv
114
- brand: ""
115
- model: Web TV
116
- os_family: WebTV
117
- browser_family: Internet Explorer
118
- -
119
- user_agent: Mozilla/5.0 (Linux; Android 7.1.1; BB2 PRO Build/NHG47L; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/52.0.2743.100 Safari/537.36
120
- os:
121
- name: Android
122
- short_name: AND
123
- version: "7.1.1"
124
- platform: ""
125
- client:
126
- type: browser
127
- name: Chrome Webview
128
- short_name: CV
129
- version: "52.0.2743.100"
130
- engine: Blink
131
- engine_version: ""
132
- device:
133
- type: tv
134
- brand: 0M
135
- model: BB2 Pro
136
- os_family: Android
137
- browser_family: Chrome
138
- -
139
- user_agent: Mozilla/5.0 (Linux; Android 5.1.1; KII PRO Build/LMY47V) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/39.0.0.0 Safari/537.36
140
- os:
141
- name: Android
142
- short_name: AND
143
- version: "5.1.1"
144
- platform: ""
145
- client:
146
- type: browser
147
- name: Chrome Webview
148
- short_name: CV
149
- version: "39.0.0.0"
150
- engine: Blink
151
- engine_version: ""
152
- device:
153
- type: tv
154
- brand: 0M
155
- model: KII Pro
156
- os_family: Android
157
- browser_family: Chrome
158
- -
159
- user_agent: Mozilla/5.0 (Linux; Android 9; KM9PRO) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.143 Mobile Safari/537.36
160
- os:
161
- name: Android
162
- short_name: AND
163
- version: "9"
164
- platform: ""
165
- client:
166
- type: browser
167
- name: Chrome Mobile
168
- short_name: CM
169
- version: "75.0.3770.143"
170
- engine: Blink
171
- engine_version: ""
172
- device:
173
- type: tv
174
- brand: 0M
175
- model: KM9 Pro
176
- os_family: Android
177
- browser_family: Chrome
178
- -
179
- user_agent: Opera/9.80 (Linux mips; Opera TV Store/6162; HbbTV/1.2.1 (; Altech UEC; PVR9600; ; ; )) Presto/2.12.407 Version/12.51 Model/AltechMultimedia-TestingDevice
180
- os:
181
- name: GNU/Linux
182
- short_name: LIN
183
- version: ""
184
- platform: ""
185
- client:
186
- type: browser
187
- name: Opera
188
- short_name: OP
189
- version: "12.51"
190
- engine: Presto
191
- engine_version: "2.12.407"
192
- device:
193
- type: tv
194
- brand: A1
195
- model: PVR9600
196
- os_family: GNU/Linux
197
- browser_family: Opera
198
- -
199
- user_agent: Mozilla/4.0 (compatible; MSIE 5.23; Macintosh; PPC) Escape 5.1.8
200
- os:
201
- name: Mac
202
- short_name: MAC
203
- version: ""
204
- platform: ""
205
- client:
206
- type: browser
207
- name: Espial TV Browser
208
- short_name: ES
209
- version: "5.1.8"
210
- engine: ""
211
- engine_version: ""
212
- device:
213
- type: tv
214
- brand: AP
215
- model: ""
216
- os_family: Mac
217
- browser_family: Unknown
218
- -
219
- user_agent: iTunes-AppleTV/4.1
220
- os: [ ]
221
- client:
222
- type: mediaplayer
223
- name: iTunes
224
- version: ""
225
- device:
226
- type: tv
227
- brand: AP
228
- model: Apple TV
229
- os_family: Unknown
230
- browser_family: Unknown
231
- -
232
- user_agent: AppleCoreMedia/1.0.0.12B466 (Apple TV; U; CPU OS 8_1_3 like Mac OS X; en_us)
233
- os:
234
- name: iOS
235
- short_name: IOS
236
- version: "8.1.3"
237
- platform: ""
238
- client: null
239
- device:
240
- type: tv
241
- brand: AP
242
- model: Apple TV
243
- os_family: iOS
244
- browser_family: Unknown
245
- -
246
- user_agent: XBMC/PRE-11.0 Git:20110623-62171b3 (iOS; 11.0.0 AppleTV2,1; http://www.xbmc.org)
247
- os:
248
- name: Apple TV
249
- short_name: ATV
250
- version: ""
251
- platform: ""
252
- client:
253
- type: mediaplayer
254
- name: XBMC
255
- version: ""
256
- device:
257
- type: tv
258
- brand: AP
259
- model: Apple TV 2
260
- os_family: Apple TV
261
- browser_family: Unknown
262
- -
263
- user_agent: 'OPR/22.0.1481.0 OMI/4.2.12.29, KreaTV/0.0.0.0 (ARRIS, IPC1100, wired)CM[00.01]'
264
- os: [ ]
265
- client:
266
- type: browser
267
- name: Opera Devices
268
- short_name: OH
269
- version: "4.2.12.29"
270
- engine: Blink
271
- engine_version: ""
272
- device:
273
- type: tv
274
- brand: AS
275
- model: IPC1100
276
- os_family: Unknown
277
- browser_family: Opera
278
- -
279
- user_agent: OPR/19.0.1325.0 OMI/4.1.4.54, KreaTV/15.99.2.1 (ARRIS, IPC1100P2, wired)
280
- os: [ ]
281
- client:
282
- type: browser
283
- name: Opera Devices
284
- short_name: OH
285
- version: "4.1.4.54"
286
- engine: Blink
287
- engine_version: ""
288
- device:
289
- type: tv
290
- brand: AS
291
- model: IPC1100P2
292
- os_family: Unknown
293
- browser_family: Opera
294
- -
295
- user_agent: Opera/9.80 (Linux mips) Presto/2.12.407 Version/12.50 , KreaTV/12.36.2.2 (ARRIS, VMS1100, wired)
296
- os:
297
- name: GNU/Linux
298
- short_name: LIN
299
- version: ""
300
- platform: ""
301
- client:
302
- type: browser
303
- name: Opera
304
- short_name: OP
305
- version: "12.50"
306
- engine: Presto
307
- engine_version: "2.12.407"
308
- device:
309
- type: tv
310
- brand: AS
311
- model: VMS1100
312
- os_family: GNU/Linux
313
- browser_family: Opera
314
- -
315
- user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (+PVR+RTSP;Airties;Air7210;16999168;;); xx) Presto/2.10.287 Version/12.00
316
- os:
317
- name: GNU/Linux
318
- short_name: LIN
319
- version: ""
320
- platform: ""
321
- client:
322
- type: browser
323
- name: Opera
324
- short_name: OP
325
- version: "12.00"
326
- engine: Presto
327
- engine_version: "2.10.287"
328
- device:
329
- type: tv
330
- brand: AT
331
- model: Air7210
332
- os_family: GNU/Linux
333
- browser_family: Opera
334
- -
335
- user_agent: Opera/9.80 (Linux i686; U; HbbTV/1.1.1 (+PVR+DL; BANGOLUFSEN; A3; ; ; ) CE-HTML/1.0 NETTV/1.0; en) Presto/2.10.287 Version/12.00 A3/1.0.3.30552 (BANGOLUFSEN, A3, wired)
336
- os:
337
- name: GNU/Linux
338
- short_name: LIN
339
- version: ""
340
- platform: x86
341
- client:
342
- type: browser
343
- name: Opera
344
- short_name: OP
345
- version: "12.00"
346
- engine: Presto
347
- engine_version: "2.10.287"
348
- device:
349
- type: tv
350
- brand: BO
351
- model: BeoVision
352
- os_family: GNU/Linux
353
- browser_family: Opera
354
- -
355
- user_agent: Opera/9.80 (Linux i686; U; HbbTV/1.1.1 (; BANGOLUFSEN; A3; ; ; ) CE-HTML/1.0 NETTV/1.0; en) Presto/2.10.287 Version/12.00 A3/1.0.2.28884 (BANGOLUFSEN, A3, wired)
356
- os:
357
- name: GNU/Linux
358
- short_name: LIN
359
- version: ""
360
- platform: x86
361
- client:
362
- type: browser
363
- name: Opera
364
- short_name: OP
365
- version: "12.00"
366
- engine: Presto
367
- engine_version: "2.10.287"
368
- device:
369
- type: tv
370
- brand: BO
371
- model: BeoVision
372
- os_family: GNU/Linux
373
- browser_family: Opera
374
- -
375
- user_agent: Opera/9.80 (Linux mips; Opera TV Store/5477) Presto/2.12.362 Version/12.10 Model/Changhong-MST6328
376
- os:
377
- name: GNU/Linux
378
- short_name: LIN
379
- version: ""
380
- platform: ""
381
- client:
382
- type: browser
383
- name: Opera
384
- short_name: OP
385
- version: "12.10"
386
- engine: Presto
387
- engine_version: "2.12.362"
388
- device:
389
- type: tv
390
- brand: C2
391
- model: MST6328
392
- os_family: GNU/Linux
393
- browser_family: Opera
394
- -
395
- user_agent: Mozilla/5.0 (Linux i686; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.114 Safari/537.36 SRAF/3.0 HbbTV/1.1.1 (CHANGHONG; TV55; sw-v1.0;) CE-HTML/1.0 NETRANGEMMH
396
- os:
397
- name: GNU/Linux
398
- short_name: LIN
399
- version: ""
400
- platform: x64
401
- client:
402
- type: browser
403
- name: Chrome
404
- short_name: CH
405
- version: "30.0.1599.114"
406
- engine: Blink
407
- engine_version: ""
408
- device:
409
- type: tv
410
- brand: C2
411
- model: TV55
412
- os_family: GNU/Linux
413
- browser_family: Chrome
414
- -
415
- user_agent: Opera/9.80 (Linux sh4; U; ; en; CreNova Build) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1 HbbTV/1.1.1 (;CreNova;CNV001;1.0;1.0; FXM-U2FsdGVkX1/VHpIx4++T5dr9nrGwg2lrTv3h0bv5wA819tf9ZWJf5kbW8psLCFgl-END; en) Presto/2.9.167 Ve
416
- os:
417
- name: GNU/Linux
418
- short_name: LIN
419
- version: ""
420
- platform: ""
421
- client:
422
- type: browser
423
- name: Opera
424
- short_name: OP
425
- version: "4.0"
426
- engine: Elektra
427
- engine_version: ""
428
- device:
429
- type: tv
430
- brand: CR
431
- model: CNV001
432
- os_family: GNU/Linux
433
- browser_family: Opera
434
- -
435
- user_agent: Opera/9.80 (Linux sh4; U; CNV001; en;) HbbTV/1.1.1 (;CreNova;CNV001;1.0;1.0; FXM-U2FsdGVkX1/Oiw1OD4kjnYIMtRrxMWUbzbPMsylGXvFEN7YI7l5UInvIDEkFxQa5-END; en) Presto/2.9.167 Version/11.50
436
- os:
437
- name: GNU/Linux
438
- short_name: LIN
439
- version: ""
440
- platform: ""
441
- client:
442
- type: browser
443
- name: Opera
444
- short_name: OP
445
- version: "11.50"
446
- engine: Presto
447
- engine_version: "2.9.167"
448
- device:
449
- type: tv
450
- brand: CR
451
- model: CNV001
452
- os_family: GNU/Linux
453
- browser_family: Opera
454
- -
455
- user_agent: Mozilla/5.0 (Linux mips; U;HbbTV/1.1.1 (+RTSP;DMM;Dreambox;0.1a;1.0;) CE-HTML/1.0; en) AppleWebKit/535.19 no/Volksbox QtWebkit/2.2
456
- os:
457
- name: GNU/Linux
458
- short_name: LIN
459
- version: ""
460
- platform: ""
461
- client: null
462
- device:
463
- type: tv
464
- brand: DM
465
- model: Dreambox
466
- os_family: GNU/Linux
467
- browser_family: Unknown
468
- -
469
- user_agent: Opera/9.80 (Linux mips; U; xx) Presto/2.10.287 Version/12.00 DuneHD/1.0 (connect; 140223_0132_b6) CE-HTML/1.0 NETRANGEMMH
470
- os:
471
- name: GNU/Linux
472
- short_name: LIN
473
- version: ""
474
- platform: ""
475
- client:
476
- type: browser
477
- name: Opera
478
- short_name: OP
479
- version: "12.00"
480
- engine: Presto
481
- engine_version: "2.10.287"
482
- device:
483
- type: tv
484
- brand: DU
485
- model: connect
486
- os_family: GNU/Linux
487
- browser_family: Opera
488
- -
489
- user_agent: Opera/9.80 (Linux mips; U; xx) Presto/2.10.287 Version/12.00 DuneHD/1.0 (polskytv__tv102; 130527_1328_b5) CE-HTML/1.0 NETRANGEMMH
490
- os:
491
- name: GNU/Linux
492
- short_name: LIN
493
- version: ""
494
- platform: ""
495
- client:
496
- type: browser
497
- name: Opera
498
- short_name: OP
499
- version: "12.00"
500
- engine: Presto
501
- engine_version: "2.10.287"
502
- device:
503
- type: tv
504
- brand: DU
505
- model: tv102
506
- os_family: GNU/Linux
507
- browser_family: Opera
508
- -
509
- user_agent: Opera/9.80 (Linux mips; U; xx) Presto/2.10.287 Version/12.00 DuneHD/1.0 (tv102; 130515_2104_b6) CE-HTML/1.0 NETRANGEMMH
510
- os:
511
- name: GNU/Linux
512
- short_name: LIN
513
- version: ""
514
- platform: ""
515
- client:
516
- type: browser
517
- name: Opera
518
- short_name: OP
519
- version: "12.00"
520
- engine: Presto
521
- engine_version: "2.10.287"
522
- device:
523
- type: tv
524
- brand: DU
525
- model: tv102
526
- os_family: GNU/Linux
527
- browser_family: Opera
528
- -
529
- user_agent: Opera/9.80 (Linux mips; U; xx) Presto/2.10.287 Version/12.00 DuneHD/1.0 (tv303d; 130515_2104_b6) CE-HTML/1.0 NETRANGEMMH
530
- os:
531
- name: GNU/Linux
532
- short_name: LIN
533
- version: ""
534
- platform: ""
535
- client:
536
- type: browser
537
- name: Opera
538
- short_name: OP
539
- version: "12.00"
540
- engine: Presto
541
- engine_version: "2.10.287"
542
- device:
543
- type: tv
544
- brand: DU
545
- model: tv303d
546
- os_family: GNU/Linux
547
- browser_family: Opera
548
- -
549
- user_agent: Mozilla/5.0 (Linux; U; Android 4.2.2; cs-cz; EVOLVEO Smart TV box Q4 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30 Maxthon/4.1.4.2000
550
- os:
551
- name: Android
552
- short_name: AND
553
- version: "4.2.2"
554
- platform: ""
555
- client:
556
- type: browser
557
- name: Maxthon
558
- short_name: MX
559
- version: "4.1.4.2000"
560
- engine: WebKit
561
- engine_version: "534.30"
562
- device:
563
- type: tv
564
- brand: EO
565
- model: Smart TV box Q4
566
- os_family: Android
567
- browser_family: Unknown
568
- -
569
- user_agent: Mozilla/5.0 (CrKey armv7l 1.4.15250) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.0 Safari/537.36
570
- os: [ ]
571
- client:
572
- type: browser
573
- name: Chrome
574
- short_name: CH
575
- version: "31.0.1650.0"
576
- engine: Blink
577
- engine_version: ""
578
- device:
579
- type: tv
580
- brand: GO
581
- model: Chromecast
582
- os_family: Unknown
583
- browser_family: Chrome
584
- -
585
- user_agent: Mozilla/5.0 (Linux; Android 5.1.1; Build/LMY47V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.75 Safari/537.36 CrKey/1.14.32904
586
- os:
587
- name: Android
588
- short_name: AND
589
- version: "5.1.1"
590
- platform: ""
591
- client:
592
- type: browser
593
- name: Chrome
594
- short_name: CH
595
- version: "41.0.2272.75"
596
- engine: Blink
597
- engine_version: ""
598
- device:
599
- type: tv
600
- brand: GO
601
- model: Chromecast
602
- os_family: Android
603
- browser_family: Chrome
604
- -
605
- user_agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Large Screen Safari/534.24 GoogleTV/092754
606
- os:
607
- name: Google TV
608
- short_name: GTV
609
- version: "092754"
610
- platform: x86
611
- client:
612
- type: browser
613
- name: Chrome
614
- short_name: CH
615
- version: "11.0.696.77"
616
- engine: WebKit
617
- engine_version: "534.24"
618
- device:
619
- type: tv
620
- brand: GO
621
- model: GoogleTV
622
- os_family: Google TV
623
- browser_family: Chrome
624
- -
625
- user_agent: Opera/9.80 (Linux armv7l; HbbTV/1.2.1 (; Hisense; SmartTV_2015; V00.01.00a.G0816; HE65M7000UWTSG; )) Presto/2.12.407 Version/12.51 year/2016
626
- os:
627
- name: GNU/Linux
628
- short_name: LIN
629
- version: ""
630
- platform: ARM
631
- client:
632
- type: browser
633
- name: Opera
634
- short_name: OP
635
- version: "12.51"
636
- engine: Presto
637
- engine_version: "2.12.407"
638
- device:
639
- type: tv
640
- brand: HI
641
- model: HE65M7000UWTS
642
- os_family: GNU/Linux
643
- browser_family: Opera
644
- -
645
- user_agent: Opera/9.80 (Linux armv7l; HbbTV/1.2.1 (; Hisense; SmartTV; V00.01.00a.E0923; LHD32K370WTEU; )) Presto/2.12.407 Version/12.51
646
- os:
647
- name: GNU/Linux
648
- short_name: LIN
649
- version: ""
650
- platform: ARM
651
- client:
652
- type: browser
653
- name: Opera
654
- short_name: OP
655
- version: "12.51"
656
- engine: Presto
657
- engine_version: "2.12.407"
658
- device:
659
- type: tv
660
- brand: HI
661
- model: LHD32K370WTEU
662
- os_family: GNU/Linux
663
- browser_family: Opera
664
- -
665
- user_agent: Opera/9.80 (Linux armv7l; HbbTV/1.2.1 (; Hisense; SmartTV_2015; V00.01.00a.G0806; LTDN58K700XWTSEU3D_1; )) Presto/2.12.407 Version/12.51 year/2016
666
- os:
667
- name: GNU/Linux
668
- short_name: LIN
669
- version: ""
670
- platform: ARM
671
- client:
672
- type: browser
673
- name: Opera
674
- short_name: OP
675
- version: "12.51"
676
- engine: Presto
677
- engine_version: "2.12.407"
678
- device:
679
- type: tv
680
- brand: HI
681
- model: LTDN58K700XWTSEU3D
682
- os_family: GNU/Linux
683
- browser_family: Opera
684
- -
685
- user_agent: Opera/9.80 (Linux 7405b0-smp; U; HbbTV/1.1.1 (; Humax; CXHD-5100C; 1.00.23; 1.0; ); ce-html/1.0; en) Presto/2.9.167 Version/11.50
686
- os:
687
- name: GNU/Linux
688
- short_name: LIN
689
- version: ""
690
- platform: ""
691
- client:
692
- type: browser
693
- name: Opera
694
- short_name: OP
695
- version: "11.50"
696
- engine: Presto
697
- engine_version: "2.9.167"
698
- device:
699
- type: tv
700
- brand: HX
701
- model: CXHD-5100C
702
- os_family: GNU/Linux
703
- browser_family: Opera
704
- -
705
- user_agent: HbbTV/1.1.1 (+PVR;Humax;HD FOX+;1.00.12;1.0)CE-HTML/1.0 ANTGalio/3.1.1.23.04.09
706
- os: [ ]
707
- client:
708
- type: browser
709
- name: ANTGalio
710
- short_name: AG
711
- version: "3.1.1.23.04.09"
712
- engine: ""
713
- engine_version: ""
714
- device:
715
- type: tv
716
- brand: HX
717
- model: HD FOX+
718
- os_family: Unknown
719
- browser_family: Unknown
720
- -
721
- user_agent: Opera/9.80 (Linux 7325b0; U; HbbTV/1.1.1 (; Humax; HD NANO; 1.00.16; 1.0; ); ce-html/1.0; en) Presto/2.9.167 Version/11.50
722
- os:
723
- name: GNU/Linux
724
- short_name: LIN
725
- version: ""
726
- platform: ""
727
- client:
728
- type: browser
729
- name: Opera
730
- short_name: OP
731
- version: "11.50"
732
- engine: Presto
733
- engine_version: "2.9.167"
734
- device:
735
- type: tv
736
- brand: HX
737
- model: HD NANO
738
- os_family: GNU/Linux
739
- browser_family: Opera
740
- -
741
- user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Humax; hdr1000s; 1.0.0; 1.0.0; ); ce-html/1.0; xx) Presto/2.10.250 Version/11.60
742
- os:
743
- name: GNU/Linux
744
- short_name: LIN
745
- version: ""
746
- platform: ""
747
- client:
748
- type: browser
749
- name: Opera
750
- short_name: OP
751
- version: "11.60"
752
- engine: Presto
753
- engine_version: "2.10.250"
754
- device:
755
- type: tv
756
- brand: HX
757
- model: hdr1000s
758
- os_family: GNU/Linux
759
- browser_family: Opera
760
- -
761
- user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Humax; HM-9504HD; 0.01.06; 1.0; scrlgnnew; ); ce-html/1.0; xx) Presto/2.10.250 Version/11.60
762
- os:
763
- name: GNU/Linux
764
- short_name: LIN
765
- version: ""
766
- platform: ""
767
- client:
768
- type: browser
769
- name: Opera
770
- short_name: OP
771
- version: "11.60"
772
- engine: Presto
773
- engine_version: "2.10.250"
774
- device:
775
- type: tv
776
- brand: HX
777
- model: HM-9504HD
778
- os_family: GNU/Linux
779
- browser_family: Opera
780
- -
781
- user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Humax; hms1000s; 1.0.0; 1.0.0; ); ce-html/1.0; en) Presto/2.10.250 Version/11.60
782
- os:
783
- name: GNU/Linux
784
- short_name: LIN
785
- version: ""
786
- platform: ""
787
- client:
788
- type: browser
789
- name: Opera
790
- short_name: OP
791
- version: "11.60"
792
- engine: Presto
793
- engine_version: "2.10.250"
794
- device:
795
- type: tv
796
- brand: HX
797
- model: HMS-1000S
798
- os_family: GNU/Linux
799
- browser_family: Opera
800
- -
801
- user_agent: Opera/9.80 (Linux mips; Opera TV Store/5896; HbbTV/1.2.1 (PVR; freesat/1.0; hms1000sph2; 1.0.0; 1.0.0; UX-PRISM--OP-NONE); ce-html/1.0) Presto/2.12.407 Version/12.50 Model/Humax-TestingDevice
802
- os:
803
- name: GNU/Linux
804
- short_name: LIN
805
- version: ""
806
- platform: ""
807
- client:
808
- type: browser
809
- name: Opera
810
- short_name: OP
811
- version: "12.50"
812
- engine: Presto
813
- engine_version: "2.12.407"
814
- device:
815
- type: tv
816
- brand: HX
817
- model: HMS-1000S
818
- os_family: GNU/Linux
819
- browser_family: Opera
820
- -
821
- user_agent: HbbTV/1.1.1 (+PVR;Humax;iCord Cable;1.01.09;1.0)CE-HTML/1.0 ANTGalio/3.1.1.23.04.09
822
- os: [ ]
823
- client:
824
- type: browser
825
- name: ANTGalio
826
- short_name: AG
827
- version: "3.1.1.23.04.09"
828
- engine: ""
829
- engine_version: ""
830
- device:
831
- type: tv
832
- brand: HX
833
- model: iCord Cable
834
- os_family: Unknown
835
- browser_family: Unknown
836
- -
837
- user_agent: HbbTV/1.1.1 (+PVR;Humax;iCord HD+;1.01.17;1.0)CE-HTML/1.0 ANTGalio/3.1.1.23.04
838
- os: [ ]
839
- client:
840
- type: browser
841
- name: ANTGalio
842
- short_name: AG
843
- version: "3.1.1.23.04"
844
- engine: ""
845
- engine_version: ""
846
- device:
847
- type: tv
848
- brand: HX
849
- model: iCord HD+
850
- os_family: Unknown
851
- browser_family: Unknown
852
- -
853
- user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Humax; iCord HD+; 1.0.0; 1.0.0; ); ce-html/1.0; en) Presto/2.10.250 Version/11.60
854
- os:
855
- name: GNU/Linux
856
- short_name: LIN
857
- version: ""
858
- platform: ""
859
- client:
860
- type: browser
861
- name: Opera
862
- short_name: OP
863
- version: "11.60"
864
- engine: Presto
865
- engine_version: "2.10.250"
866
- device:
867
- type: tv
868
- brand: HX
869
- model: iCord HD+
870
- os_family: GNU/Linux
871
- browser_family: Opera
872
- -
873
- user_agent: Opera/9.80 (Linux 7335b0-smp; U; HbbTV/1.1.1 (; Humax; iCord MINI; 0.90.02; 1.0; ); ce-html/1.0; en) Presto/2.10.250 Version/11.60
874
- os:
875
- name: GNU/Linux
876
- short_name: LIN
877
- version: ""
878
- platform: ""
879
- client:
880
- type: browser
881
- name: Opera
882
- short_name: OP
883
- version: "11.60"
884
- engine: Presto
885
- engine_version: "2.10.250"
886
- device:
887
- type: tv
888
- brand: HX
889
- model: iCord MINI
890
- os_family: GNU/Linux
891
- browser_family: Opera
892
- -
893
- user_agent: Opera/9.80 (Linux 7325b0; U; HbbTV/1.1.1 (; Humax; IRHD-5100S; 1.01.26; 1.0; ); ce-html/1.0; en) Presto/2.9.167 Version/11.50
894
- os:
895
- name: GNU/Linux
896
- short_name: LIN
897
- version: ""
898
- platform: ""
899
- client:
900
- type: browser
901
- name: Opera
902
- short_name: OP
903
- version: "11.50"
904
- engine: Presto
905
- engine_version: "2.9.167"
906
- device:
907
- type: tv
908
- brand: HX
909
- model: IRHD-5100S
910
- os_family: GNU/Linux
911
- browser_family: Opera
912
- -
913
- user_agent: Opera/9.80 (Linux armv6l; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;IKEA LF1V358; en) Presto/2.10.250 Version/11.60
914
- os:
915
- name: GNU/Linux
916
- short_name: LIN
917
- version: ""
918
- platform: ARM
919
- client:
920
- type: browser
921
- name: Opera
922
- short_name: OP
923
- version: "11.60"
924
- engine: Presto
925
- engine_version: "2.10.250"
926
- device:
927
- type: tv
928
- brand: IA
929
- model: LF1V358
930
- os_family: GNU/Linux
931
- browser_family: Opera
932
- -
933
- user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (; INTEK; Vantage Full HD Model;;;) hdplusSmartTV/1.0 (NETRANGEMMH;) Bee/3.2 CE-HTML/1.0; FXM-U2FsdGVkX19WaYSyGq70V2qt2C4bR92ULIOEtQrDKma1eRx3WQlWfuTO6eCHMYQm-END; en) Presto/2.10.250 Version/11.60
934
- os:
935
- name: GNU/Linux
936
- short_name: LIN
937
- version: ""
938
- platform: ""
939
- client:
940
- type: browser
941
- name: Opera
942
- short_name: OP
943
- version: "11.60"
944
- engine: Presto
945
- engine_version: "2.10.250"
946
- device:
947
- type: tv
948
- brand: IT
949
- model: Vantage
950
- os_family: GNU/Linux
951
- browser_family: Opera
952
- -
953
- user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (; INTEK; VT-100 HD+;;;) hdplusSmartTV/1.0 (NETRANGEMMH;) Bee/3.2 CE-HTML/1.0; en) Presto/2.10.250 Version/11.60
954
- os:
955
- name: GNU/Linux
956
- short_name: LIN
957
- version: ""
958
- platform: ""
959
- client:
960
- type: browser
961
- name: Opera
962
- short_name: OP
963
- version: "11.60"
964
- engine: Presto
965
- engine_version: "2.10.250"
966
- device:
967
- type: tv
968
- brand: IT
969
- model: VT-100
970
- os_family: GNU/Linux
971
- browser_family: Opera
972
- -
973
- user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (; INTEK; VT-100 HD+;;;) hdplusSmartTV/1.0 (NETRANGEMMH;) Bee/3.2 CE-HTML/1.0; FXM-U2FsdGVkX1+9IFast5+XgFhStntZ2aPC75KXhmr7DTyTjVYcbAaLpfmxnMmKiXRe-END; en) Presto/2.10.250 Version/11.60
974
- os:
975
- name: GNU/Linux
976
- short_name: LIN
977
- version: ""
978
- platform: ""
979
- client:
980
- type: browser
981
- name: Opera
982
- short_name: OP
983
- version: "11.60"
984
- engine: Presto
985
- engine_version: "2.10.250"
986
- device:
987
- type: tv
988
- brand: IT
989
- model: VT-100
990
- os_family: GNU/Linux
991
- browser_family: Opera
992
- -
993
- user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; inverto; IDL-6640N Volksbox Essential; 1.0; 1.0;) hdplusinteraktiv/1.0 (NETRANGEMMH;) CE-HTML/1.0'
994
- os: [ ]
995
- client: null
996
- device:
997
- type: tv
998
- brand: IV
999
- model: IDL-6640N Volksbox Essential
1000
- os_family: Unknown
1001
- browser_family: Unknown
1002
- -
1003
- user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; inverto; IDL-6651N Volksbox Web Edition; 1.0; 1.0;) hdplusinteraktiv/1.0 (NETRANGEMMH;) CE-HTML/1.0'
1004
- os: [ ]
1005
- client: null
1006
- device:
1007
- type: tv
1008
- brand: IV
1009
- model: IDL-6651N Volksbox Web Edition
1010
- os_family: Unknown
1011
- browser_family: Unknown
1012
- -
1013
- user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; inverto; IDL-6750N Volksbox II; 1.0; 1.0;) hdplusinteraktiv/1.0 (NETRANGEMMH;) CE-HTML/1.0'
1014
- os: [ ]
1015
- client: null
1016
- device:
1017
- type: tv
1018
- brand: IV
1019
- model: IDL-6750N Volksbox II
1020
- os_family: Unknown
1021
- browser_family: Unknown
1022
- -
1023
- user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/538.6 HbbTV/1.1.1 (+DL+PVR; inverto; QUANTUM - IDL9000; 1.0; 1.0;) CE-HTML/1.0 hdplusinteraktiv/1.0 (NETRANGEMMH;)'
1024
- os: [ ]
1025
- client: null
1026
- device:
1027
- type: tv
1028
- brand: IV
1029
- model: 'QUANTUM - IDL9000'
1030
- os_family: Unknown
1031
- browser_family: Unknown
1032
- -
1033
- user_agent: Mozilla/5.0 (Linux; Android 4.2.2; AFTB Build/JDQ39) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.173 Mobile Safari/537.22 cordova-amazon-fireos/3.4.0 AmazonWebAppPlatform/3.4.0;2.0
1034
- os:
1035
- name: Android
1036
- short_name: AND
1037
- version: "4.2.2"
1038
- platform: ""
1039
- client:
1040
- type: browser
1041
- name: Chrome Mobile
1042
- short_name: CM
1043
- version: "25.0.1364.173"
1044
- engine: WebKit
1045
- engine_version: "537.22"
1046
- device:
1047
- type: tv
1048
- brand: KN
1049
- model: Fire TV
1050
- os_family: Android
1051
- browser_family: Chrome
1052
- -
1053
- user_agent: Mozilla/5.0 (Linux; Android 4.2.2; AFTM Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/34.0.0.0 Mobile Safari/537.36 cordova-amazon-fireos/3.4.0 AmazonWebAppPlatform/3.4.0;2.0
1054
- os:
1055
- name: Android
1056
- short_name: AND
1057
- version: "4.2.2"
1058
- platform: ""
1059
- client:
1060
- type: browser
1061
- name: Chrome Webview
1062
- short_name: CV
1063
- version: "34.0.0.0"
1064
- engine: Blink
1065
- engine_version: ""
1066
- device:
1067
- type: tv
1068
- brand: KN
1069
- model: Fire TV stick
1070
- os_family: Android
1071
- browser_family: Chrome
1072
- -
1073
- user_agent: Mozilla/5.0 (Linux; Android 5.1.1; AFTT Build/LVY48F; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/49.0.2623.10
1074
- os:
1075
- name: Android
1076
- short_name: AND
1077
- version: "5.1.1"
1078
- platform: ""
1079
- client:
1080
- type: browser
1081
- name: Chrome Webview
1082
- short_name: CV
1083
- version: "49.0.2623.10"
1084
- engine: Blink
1085
- engine_version: ""
1086
- device:
1087
- type: tv
1088
- brand: KN
1089
- model: Fire TV stick
1090
- os_family: Android
1091
- browser_family: Chrome
1092
- -
1093
- user_agent: Mozilla/5.0 (Linux; Android 5.1.1; AFTS Build/LVY48F; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/55.0.28
1094
- os:
1095
- name: Android
1096
- short_name: AND
1097
- version: "5.1.1"
1098
- platform: ""
1099
- client:
1100
- type: browser
1101
- name: Chrome Webview
1102
- short_name: CV
1103
- version: "55.0.28"
1104
- engine: Blink
1105
- engine_version: ""
1106
- device:
1107
- type: tv
1108
- brand: KN
1109
- model: Fire TV stick
1110
- os_family: Android
1111
- browser_family: Chrome
1112
- -
1113
- user_agent: Mozilla/5.0 (Web0S; Linux/SmartTV) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36 HbbTV/1.2.1 (+DRM; LGE; 49UH664V-ZC; WEBOS3.0 05.30.02; W3_M16;)
1114
- os:
1115
- name: webOS
1116
- short_name: WOS
1117
- version: ""
1118
- platform: ""
1119
- client:
1120
- type: browser
1121
- name: Chrome
1122
- short_name: CH
1123
- version: "38.0.2125.122"
1124
- engine: Blink
1125
- engine_version: ""
1126
- device:
1127
- type: tv
1128
- brand: LG
1129
- model: 49UH664V
1130
- os_family: Other Mobile
1131
- browser_family: Chrome
1132
- -
1133
- user_agent: Mozilla/5.0 (Web0S; Linux/SmartTV) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36 HbbTV/1.2.1 (+DRM; LGE; 55UJ6307-ZA; WEBOS3.5 04.70.45; W3_K3LP;)
1134
- os:
1135
- name: webOS
1136
- short_name: WOS
1137
- version: ""
1138
- platform: ""
1139
- client:
1140
- type: browser
1141
- name: Chrome
1142
- short_name: CH
1143
- version: "38.0.2125.122"
1144
- engine: Blink
1145
- engine_version: ""
1146
- device:
1147
- type: tv
1148
- brand: LG
1149
- model: 55UJ6307
1150
- os_family: Other Mobile
1151
- browser_family: Chrome
1152
- -
1153
- user_agent: Mozilla/5.0 (DirectFB; U; Linux 7630; en) AppleWebKit/531.2+ (KHTML, like Gecko) Safari/531.2+ HbbTV/1.1.1 ( ;LGE ;GLOBAL_PLAT3 ;BR.8.97.067.B ;1.0.0.1 ;)
1154
- os:
1155
- name: GNU/Linux
1156
- short_name: LIN
1157
- version: ""
1158
- platform: ""
1159
- client:
1160
- type: browser
1161
- name: Safari
1162
- short_name: SF
1163
- version: ""
1164
- engine: WebKit
1165
- engine_version: "531.2"
1166
- device:
1167
- type: tv
1168
- brand: LG
1169
- model: GLOBAL PLAT3
1170
- os_family: GNU/Linux
1171
- browser_family: Safari
1172
- -
1173
- user_agent: Mozilla/5.0 (Linux; NetCast; U) AppleWwbKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.33 Safari/537.31 SmartTV/5.0
1174
- os:
1175
- name: GNU/Linux
1176
- short_name: LIN
1177
- version: ""
1178
- platform: ""
1179
- client:
1180
- type: browser
1181
- name: Chrome
1182
- short_name: CH
1183
- version: "26.0.1410.33"
1184
- engine: WebKit
1185
- engine_version: ""
1186
- device:
1187
- type: tv
1188
- brand: LG
1189
- model: NetCast
1190
- os_family: GNU/Linux
1191
- browser_family: Chrome
1192
- -
1193
- user_agent: Mozilla/5.0 (DirectFB; U; Linux mips; en) AppleWebKit/531.2+ (KHTML, like Gecko) Safari/531.2+ LG Browser/4.0.10(+SCREEN+TUNER; LGE; 42LE5500-SA; 04.02.02; 0x00000001;); LG NetCast.TV-2010
1194
- os:
1195
- name: GNU/Linux
1196
- short_name: LIN
1197
- version: ""
1198
- platform: ""
1199
- client:
1200
- type: browser
1201
- name: LG Browser
1202
- short_name: LG
1203
- version: "4.0.10"
1204
- engine: WebKit
1205
- engine_version: "531.2"
1206
- device:
1207
- type: tv
1208
- brand: LG
1209
- model: NetCast
1210
- os_family: GNU/Linux
1211
- browser_family: Unknown
1212
- -
1213
- user_agent: Mozilla/5.0 (DirectFB; Linux armv7l) AppleWebKit/534.26+ (KHTML, like Gecko) Version/5.0 Safari/534.26+ LG Browser/5.00.00(+mouse+3D+SCREEN+TUNER; LGE; 47LM9600-NA; 06.00.00; 0x00000001;); LG NetCast.TV-2012 0
1214
- os:
1215
- name: GNU/Linux
1216
- short_name: LIN
1217
- version: ""
1218
- platform: ARM
1219
- client:
1220
- type: browser
1221
- name: LG Browser
1222
- short_name: LG
1223
- version: "5.00.00"
1224
- engine: WebKit
1225
- engine_version: "534.26"
1226
- device:
1227
- type: tv
1228
- brand: LG
1229
- model: NetCast
1230
- os_family: GNU/Linux
1231
- browser_family: Unknown
1232
- -
1233
- user_agent: Mozilla/5.0 (DirectFB; Linux armv7l) AppleWebKit/534.26+ (KHTML, like Gecko) Version/5.0 Safari/534.26+ HbbTV/1.1.1 ( ;LGE ;NetCast 3.0 ;1.0 ;1.0M ;)
1234
- os:
1235
- name: GNU/Linux
1236
- short_name: LIN
1237
- version: ""
1238
- platform: ARM
1239
- client:
1240
- type: browser
1241
- name: Safari
1242
- short_name: SF
1243
- version: "5.0"
1244
- engine: WebKit
1245
- engine_version: "534.26"
1246
- device:
1247
- type: tv
1248
- brand: LG
1249
- model: NetCast 3.0
1250
- os_family: GNU/Linux
1251
- browser_family: Safari
1252
- -
1253
- user_agent: Mozilla/5.0 (Unknown; Linux armv7l) AppleWebKit/537.1+ (KHTML, like Gecko) Safari/537.1+ HbbTV/1.1.1 ( ;LGE ;NetCast 4.0 ;03.10.81 ;1.0M ;)
1254
- os:
1255
- name: GNU/Linux
1256
- short_name: LIN
1257
- version: ""
1258
- platform: ARM
1259
- client:
1260
- type: browser
1261
- name: Safari
1262
- short_name: SF
1263
- version: ""
1264
- engine: WebKit
1265
- engine_version: "537.1"
1266
- device:
1267
- type: tv
1268
- brand: LG
1269
- model: NetCast 4.0
1270
- os_family: GNU/Linux
1271
- browser_family: Safari
1272
- -
1273
- user_agent: Mozilla/5.0 (Web0S; Linux/SmartTV) AppleWebKit/537.36 (KHTML, like Gecko) QtWebEngine/5.2.1 Chrome/38.0.2125.122 Safari/537.36 HbbTV/1.2.1 (+DRM; LGE; OLED55B6J-Z; WEBOS3.0 04.30.65; W3_K2L;)
1274
- os:
1275
- name: webOS
1276
- short_name: WOS
1277
- version: ""
1278
- platform: ""
1279
- client:
1280
- type: browser
1281
- name: QtWebEngine
1282
- short_name: QW
1283
- version: "5.2.1"
1284
- engine: WebKit
1285
- engine_version: "537.36"
1286
- device:
1287
- type: tv
1288
- brand: LG
1289
- model: OLED55B6J
1290
- os_family: Other Mobile
1291
- browser_family: Chrome
1292
- -
1293
- user_agent: Mozilla/5.0 (Web0S; Linux/SmartTV) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.122 Safari/537.36 HbbTV/1.2.1 (+DRM; LGE; OLED65C7V-Z; WEBOS3.5 04.70.30; W3_M16P;)
1294
- os:
1295
- name: webOS
1296
- short_name: WOS
1297
- version: ""
1298
- platform: ""
1299
- client:
1300
- type: browser
1301
- name: Chrome
1302
- short_name: CH
1303
- version: "38.0.2125.122"
1304
- engine: Blink
1305
- engine_version: ""
1306
- device:
1307
- type: tv
1308
- brand: LG
1309
- model: OLED65C7V
1310
- os_family: Other Mobile
1311
- browser_family: Chrome
1312
- -
1313
- user_agent: LOEWE/TV HbbTV/1.1.1 (+PVR; Loewe; SL121; LOH;;) CE-HTML/1.0 SL121/16.16.0
1314
- os: [ ]
1315
- client: null
1316
- device:
1317
- type: tv
1318
- brand: LO
1319
- model: SL121
1320
- os_family: Unknown
1321
- browser_family: Unknown
1322
- -
1323
- user_agent: LOEWE/TV HbbTV/1.1.1 CE-HTML/1.0 SL121/16.16.0
1324
- os: [ ]
1325
- client: null
1326
- device:
1327
- type: tv
1328
- brand: LO
1329
- model: SL121
1330
- os_family: Unknown
1331
- browser_family: Unknown
1332
- -
1333
- user_agent: LOEWE/TV HBBTV/1.0 CE-HTML/1.0 SL150/14.16.0
1334
- os: [ ]
1335
- client: null
1336
- device:
1337
- type: tv
1338
- brand: LO
1339
- model: SL150
1340
- os_family: Unknown
1341
- browser_family: Unknown
1342
- -
1343
- user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (+PVR; Loewe; SL150; LOH/3.10;;) CE-HTML/1.0 Config(L:slv,CC:DEU); en) Presto/2.10.250 Version/11.60
1344
- os:
1345
- name: GNU/Linux
1346
- short_name: LIN
1347
- version: ""
1348
- platform: ""
1349
- client:
1350
- type: browser
1351
- name: Opera
1352
- short_name: OP
1353
- version: "11.60"
1354
- engine: Presto
1355
- engine_version: "2.10.250"
1356
- device:
1357
- type: tv
1358
- brand: LO
1359
- model: SL150
1360
- os_family: GNU/Linux
1361
- browser_family: Opera
1362
- -
1363
- user_agent: LOEWE/TV HbbTV/1.2.1 (+PVR; Loewe; SL220; LOH/4.00;;) CE-HTML/1.0 SL220/
1364
- os: [ ]
1365
- client: null
1366
- device:
1367
- type: tv
1368
- brand: LO
1369
- model: SL220
1370
- os_family: Unknown
1371
- browser_family: Unknown
1372
- -
1373
- user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.2.1 (+PVR; Loewe; SL220; LOH/4.00;;) CE-HTML/1.0 Config(L:deu,CC:CHE) NETRANGEMMH; en) Presto/2.10.250 Version/11.60
1374
- os:
1375
- name: GNU/Linux
1376
- short_name: LIN
1377
- version: ""
1378
- platform: ""
1379
- client:
1380
- type: browser
1381
- name: Opera
1382
- short_name: OP
1383
- version: "11.60"
1384
- engine: Presto
1385
- engine_version: "2.10.250"
1386
- device:
1387
- type: tv
1388
- brand: LO
1389
- model: SL220
1390
- os_family: GNU/Linux
1391
- browser_family: Opera
1392
- -
1393
- user_agent: Mozilla/5.0 (DirectFB; U; Linux armv6l; c) AppleWebKit/531.2+ (KHTML, like Gecko) Safari/531.2+ HbbTV/1.1.1 (;Metz;MMS;;;)
1394
- os:
1395
- name: GNU/Linux
1396
- short_name: LIN
1397
- version: ""
1398
- platform: ARM
1399
- client:
1400
- type: browser
1401
- name: Safari
1402
- short_name: SF
1403
- version: ""
1404
- engine: WebKit
1405
- engine_version: "531.2"
1406
- device:
1407
- type: tv
1408
- brand: ME
1409
- model: ""
1410
- os_family: GNU/Linux
1411
- browser_family: Safari
1412
- -
1413
- user_agent: HbbTV/1.1.1 (;MTK;MT5396;;;) ANTGalio/3.2.0.C341.06
1414
- os:
1415
- name: MTK / Nucleus
1416
- short_name: MTK
1417
- version: ""
1418
- platform: ""
1419
- client:
1420
- type: browser
1421
- name: ANTGalio
1422
- short_name: AG
1423
- version: "3.2.0"
1424
- engine: ""
1425
- engine_version: ""
1426
- device:
1427
- type: tv
1428
- brand: MK
1429
- model: MT5396
1430
- os_family: Real-time OS
1431
- browser_family: Unknown
1432
- -
1433
- user_agent: HbbTV/1.2.1 (;MTK;MT5396;;;) ANTGalio/3.3.0.26.02.devel
1434
- os:
1435
- name: MTK / Nucleus
1436
- short_name: MTK
1437
- version: ""
1438
- platform: ""
1439
- client:
1440
- type: browser
1441
- name: ANTGalio
1442
- short_name: AG
1443
- version: "3.3.0.26.02"
1444
- engine: ""
1445
- engine_version: ""
1446
- device:
1447
- type: tv
1448
- brand: MK
1449
- model: MT5396
1450
- os_family: Real-time OS
1451
- browser_family: Unknown
1452
- -
1453
- user_agent: Mozilla/5.0 (Linux; U; Android 3.2; en-us; GTV100 Build/MASTER) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13
1454
- os:
1455
- name: Android
1456
- short_name: AND
1457
- version: "3.2"
1458
- platform: ""
1459
- client:
1460
- type: browser
1461
- name: Android Browser
1462
- short_name: AN
1463
- version: ""
1464
- engine: WebKit
1465
- engine_version: "534.13"
1466
- device:
1467
- type: tv
1468
- brand: NA
1469
- model: NeoTV Prime
1470
- os_family: Android
1471
- browser_family: Android Browser
1472
- -
1473
- user_agent: Opera/9.80 (Linux i686; U; fr) Presto/2.10.287 Version/12.00 ; SC/IHD92 STB
1474
- os:
1475
- name: GNU/Linux
1476
- short_name: LIN
1477
- version: ""
1478
- platform: x86
1479
- client:
1480
- type: browser
1481
- name: Opera
1482
- short_name: OP
1483
- version: "12.00"
1484
- engine: Presto
1485
- engine_version: "2.10.287"
1486
- device:
1487
- type: tv
1488
- brand: OR
1489
- model: Livebox Play
1490
- os_family: GNU/Linux
1491
- browser_family: Opera
1492
- -
1493
- user_agent: Opera/9.80 (Linux mn10300; U; HbbTV/1.1.1 (+PVR; Panasonic; DIGA M9031; 3.030; ; ); en) Presto/2.9.167 Version/11.50
1494
- os:
1495
- name: GNU/Linux
1496
- short_name: LIN
1497
- version: ""
1498
- platform: ""
1499
- client:
1500
- type: browser
1501
- name: Opera
1502
- short_name: OP
1503
- version: "11.50"
1504
- engine: Presto
1505
- engine_version: "2.9.167"
1506
- device:
1507
- type: tv
1508
- brand: PA
1509
- model: ""
1510
- os_family: GNU/Linux
1511
- browser_family: Opera
1512
- -
1513
- user_agent: Hybridcast/1.0 (;008045;PANATV1308;2;2;)
1514
- os: [ ]
1515
- client: null
1516
- device:
1517
- type: tv
1518
- brand: PA
1519
- model: Smart TV
1520
- os_family: Unknown
1521
- browser_family: Unknown
1522
- -
1523
- user_agent: Mozilla/5.0 (FreeBSD; U; Viera; fr-FR) AppleWebKit/535.1 (KHTML, like Gecko) Viera/1.5.2 Chrome/14.0.835.202 Safari/535.1
1524
- os:
1525
- name: FreeBSD
1526
- short_name: BSD
1527
- version: ""
1528
- platform: ""
1529
- client:
1530
- type: browser
1531
- name: Chrome
1532
- short_name: CH
1533
- version: "14.0.835.202"
1534
- engine: WebKit
1535
- engine_version: "535.1"
1536
- device:
1537
- type: tv
1538
- brand: PA
1539
- model: Smart TV
1540
- os_family: Unix
1541
- browser_family: Chrome
1542
- -
1543
- user_agent: Mozilla/5.0 (X11; FreeBSD; U; Viera; de-DE) AppleWebKit/537.11 (KHTML, like Gecko) Viera/3.10.0 Chrome/23.0.1271.97 Safari/537.11
1544
- os:
1545
- name: FreeBSD
1546
- short_name: BSD
1547
- version: ""
1548
- platform: ""
1549
- client:
1550
- type: browser
1551
- name: Chrome
1552
- short_name: CH
1553
- version: "23.0.1271.97"
1554
- engine: WebKit
1555
- engine_version: "537.11"
1556
- device:
1557
- type: tv
1558
- brand: PA
1559
- model: Smart TV
1560
- os_family: Unix
1561
- browser_family: Chrome
1562
- -
1563
- user_agent: HbbTV/1.1.1 (;Panasonic;VIERA 2011;1.805;0071-7702 2000-0000;)
1564
- os: [ ]
1565
- client: null
1566
- device:
1567
- type: tv
1568
- brand: PA
1569
- model: VIERA 2011
1570
- os_family: Unknown
1571
- browser_family: Unknown
1572
- -
1573
- user_agent: HbbTV/1.1.1 (;Panasonic;VIERA 2012;1.210;0071-3403 2000-0000;)
1574
- os: [ ]
1575
- client: null
1576
- device:
1577
- type: tv
1578
- brand: PA
1579
- model: VIERA 2012
1580
- os_family: Unknown
1581
- browser_family: Unknown
1582
- -
1583
- user_agent: HbbTV/1.2.1 (;Panasonic;VIERA 2013;3.838;1101-0003 0004-0000;)
1584
- os: [ ]
1585
- client: null
1586
- device:
1587
- type: tv
1588
- brand: PA
1589
- model: VIERA 2013
1590
- os_family: Unknown
1591
- browser_family: Unknown
1592
- -
1593
- user_agent: Opera/9.80 (Linux armv6l; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;PEAQ LF1V350; en) Presto/2.8.115 Version/11.10
1594
- os:
1595
- name: GNU/Linux
1596
- short_name: LIN
1597
- version: ""
1598
- platform: ARM
1599
- client:
1600
- type: browser
1601
- name: Opera
1602
- short_name: OP
1603
- version: "11.10"
1604
- engine: Presto
1605
- engine_version: "2.8.115"
1606
- device:
1607
- type: tv
1608
- brand: PE
1609
- model: LF1V350
1610
- os_family: GNU/Linux
1611
- browser_family: Opera
1612
- -
1613
- user_agent: 'Opera/9.80 (Linux armv7l; HbbTV/1.2.1 (; Philips; 28HFL5009D12; ; PHILIPSTV; CE-HTML/1.0 NETTV/4.4.1 SmartTvA/3.0.0 Firmware/004.001.163.001 (PhilipsTV, 3.1.1,)en) ) Presto/2.12.407 Version/12.50'
1614
- os:
1615
- name: GNU/Linux
1616
- short_name: LIN
1617
- version: ""
1618
- platform: ARM
1619
- client:
1620
- type: browser
1621
- name: Opera
1622
- short_name: OP
1623
- version: "12.50"
1624
- engine: Presto
1625
- engine_version: "2.12.407"
1626
- device:
1627
- type: tv
1628
- brand: PH
1629
- model: 28HFL5009D12
1630
- os_family: GNU/Linux
1631
- browser_family: Opera
1632
- -
1633
- user_agent: 'Opera/9.80 (Linux armv7l; HbbTV/1.2.1 (; Philips; 55PUS780912; ; PHILIPSTV; CE-HTML/1.0 NETTV/4.4.1 SmartTvA/3.0.0 Firmware/014.002.026.129 (PhilipsTV, 3.1.1,)en) ) Presto/2.12.407 Version/12.50'
1634
- os:
1635
- name: GNU/Linux
1636
- short_name: LIN
1637
- version: ""
1638
- platform: ARM
1639
- client:
1640
- type: browser
1641
- name: Opera
1642
- short_name: OP
1643
- version: "12.50"
1644
- engine: Presto
1645
- engine_version: "2.12.407"
1646
- device:
1647
- type: tv
1648
- brand: PH
1649
- model: 55PUS780912
1650
- os_family: GNU/Linux
1651
- browser_family: Opera
1652
- -
1653
- user_agent: Mozilla/5.0 (Linux; Android 4.2.2; AND1E TV Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.80 Safari/537.36
1654
- os:
1655
- name: Android
1656
- short_name: AND
1657
- version: "4.2.2"
1658
- platform: ""
1659
- client:
1660
- type: browser
1661
- name: Chrome
1662
- short_name: CH
1663
- version: "29.0.1547.80"
1664
- engine: Blink
1665
- engine_version: ""
1666
- device:
1667
- type: tv
1668
- brand: PH
1669
- model: Android TV
1670
- os_family: Android
1671
- browser_family: Chrome
1672
- -
1673
- user_agent: Mozilla/5.0 (Linux; Android 4.2.2; AND1E Build/JDQ39) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.117 Mobile Safari/537.36
1674
- os:
1675
- name: Android
1676
- short_name: AND
1677
- version: "4.2.2"
1678
- platform: ""
1679
- client:
1680
- type: browser
1681
- name: Chrome Mobile
1682
- short_name: CM
1683
- version: "37.0.2062.117"
1684
- engine: Blink
1685
- engine_version: ""
1686
- device:
1687
- type: tv
1688
- brand: PH
1689
- model: Android TV
1690
- os_family: Android
1691
- browser_family: Chrome
1692
- -
1693
- user_agent: WebKit/3.7.6, (CE-HTML/1.0 NETTV/3.3.0 NewB) PHILIPS-AVM-2013/2.19 (Philips, BDP5600, wired)
1694
- os: [ ]
1695
- client: null
1696
- device:
1697
- type: tv
1698
- brand: PH
1699
- model: Blu-ray Player (BDP5600)
1700
- os_family: Unknown
1701
- browser_family: Unknown
1702
- -
1703
- user_agent: HbbTV/1.2.1 (;Philips;MT5580;;;) ANTGalio/3.3.0.26.04
1704
- os: [ ]
1705
- client:
1706
- type: browser
1707
- name: ANTGalio
1708
- short_name: AG
1709
- version: "3.3.0.26.04"
1710
- engine: ""
1711
- engine_version: ""
1712
- device:
1713
- type: tv
1714
- brand: PH
1715
- model: MT5580
1716
- os_family: Unknown
1717
- browser_family: Unknown
1718
- -
1719
- user_agent: Opera/9.70 (Linux armv6l ; U; CE-HTML/1.0 NETTV/2.0.2; en) Presto/2.2.1
1720
- os:
1721
- name: GNU/Linux
1722
- short_name: LIN
1723
- version: ""
1724
- platform: ARM
1725
- client:
1726
- type: browser
1727
- name: Opera
1728
- short_name: OP
1729
- version: "9.70"
1730
- engine: Presto
1731
- engine_version: "2.2.1"
1732
- device:
1733
- type: tv
1734
- brand: PH
1735
- model: NetTV Series
1736
- os_family: GNU/Linux
1737
- browser_family: Opera
1738
- -
1739
- user_agent: Opera/9.80 (Linux armv6l ; U; CE-HTML/1.0 NETTV/3.0.1;; en) Presto/2.6.33 Version/10.60
1740
- os:
1741
- name: GNU/Linux
1742
- short_name: LIN
1743
- version: ""
1744
- platform: ARM
1745
- client:
1746
- type: browser
1747
- name: Opera
1748
- short_name: OP
1749
- version: "10.60"
1750
- engine: Presto
1751
- engine_version: "2.6.33"
1752
- device:
1753
- type: tv
1754
- brand: PH
1755
- model: NetTV Series
1756
- os_family: GNU/Linux
1757
- browser_family: Opera
1758
- -
1759
- user_agent: Opera/9.80 (Linux armv7l; U; CE-HTML/1.0 NETTV/3.3.0; PHILIPS-AVM-2012; en) Presto/2.9.167 Version/11.50
1760
- os:
1761
- name: GNU/Linux
1762
- short_name: LIN
1763
- version: ""
1764
- platform: ARM
1765
- client:
1766
- type: browser
1767
- name: Opera
1768
- short_name: OP
1769
- version: "11.50"
1770
- engine: Presto
1771
- engine_version: "2.9.167"
1772
- device:
1773
- type: tv
1774
- brand: PH
1775
- model: NetTV Series
1776
- os_family: GNU/Linux
1777
- browser_family: Opera
1778
- -
1779
- user_agent: Opera/9.80 (Linux i686; U; HbbTV/1.1.1 (; Philips; ; ; ; ) CE-HTML/1.0 NETTV/4.0.1; en) Presto/2.10.250 Version/11.60
1780
- os:
1781
- name: GNU/Linux
1782
- short_name: LIN
1783
- version: ""
1784
- platform: x86
1785
- client:
1786
- type: browser
1787
- name: Opera
1788
- short_name: OP
1789
- version: "11.60"
1790
- engine: Presto
1791
- engine_version: "2.10.250"
1792
- device:
1793
- type: tv
1794
- brand: PH
1795
- model: NetTV Series
1796
- os_family: GNU/Linux
1797
- browser_family: Opera
1798
- -
1799
- user_agent: Opera/9.80(Linux armv7l; U; CE-HTML/1.0 NETTV/3.0.1; PHILIPS-AVM-2012; xx) Presto/2.10.250 Version/11.6
1800
- os:
1801
- name: GNU/Linux
1802
- short_name: LIN
1803
- version: ""
1804
- platform: ARM
1805
- client:
1806
- type: browser
1807
- name: Opera
1808
- short_name: OP
1809
- version: "11.6"
1810
- engine: Presto
1811
- engine_version: "2.10.250"
1812
- device:
1813
- type: tv
1814
- brand: PH
1815
- model: NetTV Series
1816
- os_family: GNU/Linux
1817
- browser_family: Opera
1818
- -
1819
- user_agent: 'Opera/9.80 (Linux armv7l; HbbTV/1.2.1 (; Philips; ; ; PHILIPSTV; ) CE-HTML/1.0 NETTV/4.4.1 SmartTvA/3.0.0 Firmware/010.001.072.040 (PhilipsTV, 3.1.1,)en) Presto/2.12.407 Version/12.50'
1820
- os:
1821
- name: GNU/Linux
1822
- short_name: LIN
1823
- version: ""
1824
- platform: ARM
1825
- client:
1826
- type: browser
1827
- name: Opera
1828
- short_name: OP
1829
- version: "12.50"
1830
- engine: Presto
1831
- engine_version: "2.12.407"
1832
- device:
1833
- type: tv
1834
- brand: PH
1835
- model: NetTV Series
1836
- os_family: GNU/Linux
1837
- browser_family: Opera
1838
- -
1839
- user_agent: Mozilla/5.0 (Linux; U; Android 4.1.1; en-gb; POV_TV-HDMI-KB-01 Build/JRO03H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
1840
- os:
1841
- name: Android
1842
- short_name: AND
1843
- version: "4.1.1"
1844
- platform: ""
1845
- client:
1846
- type: browser
1847
- name: Android Browser
1848
- short_name: AN
1849
- version: ""
1850
- engine: WebKit
1851
- engine_version: "534.30"
1852
- device:
1853
- type: tv
1854
- brand: PV
1855
- model: HDMI Smart TV Dongle
1856
- os_family: Android
1857
- browser_family: Android Browser
1858
- -
1859
- user_agent: Mozilla/5.0 (Linux; U; Android 4.1.1; nl-nl; POV_TV-HDMI-200BT Build/JRO03H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
1860
- os:
1861
- name: Android
1862
- short_name: AND
1863
- version: "4.1.1"
1864
- platform: ""
1865
- client:
1866
- type: browser
1867
- name: Android Browser
1868
- short_name: AN
1869
- version: ""
1870
- engine: WebKit
1871
- engine_version: "534.30"
1872
- device:
1873
- type: tv
1874
- brand: PV
1875
- model: Mini PC HDMI Dongle
1876
- os_family: Android
1877
- browser_family: Android Browser
1878
- -
1879
- user_agent: Mozilla/5.0 Linux; Android 7.1.1; R-TV BOX MINI+ AppleWebKit/537.36 KHTML, like Gecko Chrome/74.0.3729.157 Safari/537.36
1880
- os:
1881
- name: Android
1882
- short_name: AND
1883
- version: "7.1.1"
1884
- platform: ""
1885
- client:
1886
- type: browser
1887
- name: Chrome
1888
- short_name: CH
1889
- version: "74.0.3729.157"
1890
- engine: Blink
1891
- engine_version: ""
1892
- device:
1893
- type: tv
1894
- brand: R2
1895
- model: Box MINI+
1896
- os_family: Android
1897
- browser_family: Chrome
1898
- -
1899
- user_agent: Mozilla/5.0 Linux; Android 7.1.2; R-TV BOXR10.03.d32 AppleWebKit/537.36 KHTML, like Gecko Chrome/73.0.3683.90 Safari/537.36
1900
- os:
1901
- name: Android
1902
- short_name: AND
1903
- version: "7.1.2"
1904
- platform: ""
1905
- client:
1906
- type: browser
1907
- name: Chrome
1908
- short_name: CH
1909
- version: "73.0.3683.90"
1910
- engine: Blink
1911
- engine_version: ""
1912
- device:
1913
- type: tv
1914
- brand: R2
1915
- model: Box R10
1916
- os_family: Android
1917
- browser_family: Chrome
1918
- -
1919
- user_agent: Mozilla/5.0 Linux; Android 7.1.1; R-TV BOX S10 AppleWebKit/537.36 KHTML, like Gecko Chrome/75.0.3770.101 Safari/537.36
1920
- os:
1921
- name: Android
1922
- short_name: AND
1923
- version: "7.1.1"
1924
- platform: ""
1925
- client:
1926
- type: browser
1927
- name: Chrome
1928
- short_name: CH
1929
- version: "75.0.3770.101"
1930
- engine: Blink
1931
- engine_version: ""
1932
- device:
1933
- type: tv
1934
- brand: R2
1935
- model: Box S10
1936
- os_family: Android
1937
- browser_family: Chrome
1938
- -
1939
- user_agent: Mozilla/5.0 (Linux; Android 7.1.2; R-TV BOX X10 Build/NHG47L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.109 Safari/537.36
1940
- os:
1941
- name: Android
1942
- short_name: AND
1943
- version: "7.1.2"
1944
- platform: ""
1945
- client:
1946
- type: browser
1947
- name: Chrome
1948
- short_name: CH
1949
- version: "65.0.3325.109"
1950
- engine: Blink
1951
- engine_version: ""
1952
- device:
1953
- type: tv
1954
- brand: R2
1955
- model: Box X10
1956
- os_family: Android
1957
- browser_family: Chrome
1958
- -
1959
- user_agent: Mozilla/5.0 Linux; Android 8.1.0; R-TV BOX X10 PRO Build/OPM1.171019.011 AppleWebKit/537.36 KHTML, like Gecko Chrome/65.0.3325.109 Safari/537.36
1960
- os:
1961
- name: Android
1962
- short_name: AND
1963
- version: "8.1.0"
1964
- platform: ""
1965
- client:
1966
- type: browser
1967
- name: Chrome
1968
- short_name: CH
1969
- version: "65.0.3325.109"
1970
- engine: Blink
1971
- engine_version: ""
1972
- device:
1973
- type: tv
1974
- brand: R2
1975
- model: Box X10 PRO
1976
- os_family: Android
1977
- browser_family: Chrome
1978
- -
1979
- user_agent: Mozilla/5.0 Linux; Android 7.1.2; R-TV BOX X99.02.00.d32 Build/NHG47K; wv AppleWebKit/537.36 KHTML, like Gecko Version/4.0 Chrome/74.0.3729.136 Safari/537.36
1980
- os:
1981
- name: Android
1982
- short_name: AND
1983
- version: "7.1.2"
1984
- platform: ""
1985
- client:
1986
- type: browser
1987
- name: Chrome Webview
1988
- short_name: CV
1989
- version: "74.0.3729.136"
1990
- engine: Blink
1991
- engine_version: ""
1992
- device:
1993
- type: tv
1994
- brand: R2
1995
- model: Box X99
1996
- os_family: Android
1997
- browser_family: Chrome
1998
- -
1999
- user_agent: Mozilla/5.0 (Linux; Android 7.1.2; SSQ-A0500) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.143 Safari/537.36
2000
- os:
2001
- name: Android
2002
- short_name: AND
2003
- version: "7.1.2"
2004
- platform: ""
2005
- client:
2006
- type: browser
2007
- name: Chrome
2008
- short_name: CH
2009
- version: "75.0.3770.143"
2010
- engine: Blink
2011
- engine_version: ""
2012
- device:
2013
- type: tv
2014
- brand: R3
2015
- model: Smart Stick 4K
2016
- os_family: Android
2017
- browser_family: Chrome
2018
- -
2019
- user_agent: Mozilla/5.0 (Linux; U; Android 4.1.1; tr-tr; MK808 Build/JRO03H) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
2020
- os:
2021
- name: Android
2022
- short_name: AND
2023
- version: "4.1.1"
2024
- platform: ""
2025
- client:
2026
- type: browser
2027
- name: Android Browser
2028
- short_name: AN
2029
- version: ""
2030
- engine: WebKit
2031
- engine_version: "534.30"
2032
- device:
2033
- type: tv
2034
- brand: RI
2035
- model: MK808
2036
- os_family: Android
2037
- browser_family: Android Browser
2038
- -
2039
- user_agent: Mozilla/5.0 (Linux; U; Android 4.2.2; fr-fr; mk808b Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
2040
- os:
2041
- name: Android
2042
- short_name: AND
2043
- version: "4.2.2"
2044
- platform: ""
2045
- client:
2046
- type: browser
2047
- name: Android Browser
2048
- short_name: AN
2049
- version: ""
2050
- engine: WebKit
2051
- engine_version: "534.30"
2052
- device:
2053
- type: tv
2054
- brand: RI
2055
- model: MK808b
2056
- os_family: Android
2057
- browser_family: Android Browser
2058
- -
2059
- user_agent: Roku/DVP-5.2 (025.02E03197A)
2060
- os: [ ]
2061
- client: null
2062
- device:
2063
- type: tv
2064
- brand: RK
2065
- model: Digital Video Player
2066
- os_family: Unknown
2067
- browser_family: Unknown
2068
- -
2069
- user_agent: Mozilla/5.0 (Linux; Android 7.1.2; TB-PO1 Build/NHG47L) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36
2070
- os:
2071
- name: Android
2072
- short_name: AND
2073
- version: "7.1.2"
2074
- platform: ""
2075
- client:
2076
- type: browser
2077
- name: Chrome
2078
- short_name: CH
2079
- version: "56.0.2924.87"
2080
- engine: Blink
2081
- engine_version: ""
2082
- device:
2083
- type: tv
2084
- brand: S9
2085
- model: TB-PO1
2086
- os_family: Android
2087
- browser_family: Chrome
2088
- -
2089
- user_agent: Mozilla/4.0 (compatible; Gecko/20041115) Maple 5.0.0 Navi
2090
- os: [ ]
2091
- client: null
2092
- device:
2093
- type: tv
2094
- brand: SA
2095
- model: ""
2096
- os_family: Unknown
2097
- browser_family: Unknown
2098
- -
2099
- user_agent: Mozilla/5.0 (Linux; U; Android 4.2.2; ru-ru; GT-B9150 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
2100
- os:
2101
- name: Android
2102
- short_name: AND
2103
- version: "4.2.2"
2104
- platform: ""
2105
- client:
2106
- type: browser
2107
- name: Android Browser
2108
- short_name: AN
2109
- version: ""
2110
- engine: WebKit
2111
- engine_version: "534.30"
2112
- device:
2113
- type: tv
2114
- brand: SA
2115
- model: Home Sync
2116
- os_family: Android
2117
- browser_family: Android Browser
2118
- -
2119
- user_agent: Mozilla/5.0 (SmartHub; SMART-TV; U; Linux/SmartTV; Maple2012)
2120
- os:
2121
- name: GNU/Linux
2122
- short_name: LIN
2123
- version: ""
2124
- platform: ""
2125
- client: null
2126
- device:
2127
- type: tv
2128
- brand: SA
2129
- model: Smart TV
2130
- os_family: GNU/Linux
2131
- browser_family: Unknown
2132
- -
2133
- user_agent: Mozilla/5.0 (SMART-TV; X11; Linux i686) AppleWebKit/535.20+ (KHTML, like Gecko) Version/5.0 Safari/535.20+
2134
- os:
2135
- name: GNU/Linux
2136
- short_name: LIN
2137
- version: ""
2138
- platform: x86
2139
- client:
2140
- type: browser
2141
- name: Safari
2142
- short_name: SF
2143
- version: "5.0"
2144
- engine: WebKit
2145
- engine_version: "535.20"
2146
- device:
2147
- type: tv
2148
- brand: SA
2149
- model: Smart TV
2150
- os_family: GNU/Linux
2151
- browser_family: Safari
2152
- -
2153
- user_agent: Mozilla/5.0 (SMART-TV; Linux; Tizen 2.3) AppleWebkit/538.1 (KHTML, like Gecko) SamsungBrowser/1.0 TV Safari/538.1
2154
- os:
2155
- name: Tizen
2156
- short_name: TIZ
2157
- version: "2.3"
2158
- platform: ""
2159
- client:
2160
- type: browser
2161
- name: Samsung Browser
2162
- short_name: SB
2163
- version: "1.0"
2164
- engine: WebKit
2165
- engine_version: "538.1"
2166
- device:
2167
- type: tv
2168
- brand: SA
2169
- model: Smart TV
2170
- os_family: Other Mobile
2171
- browser_family: Chrome
2172
- -
2173
- user_agent: HbbTV/1.1.1 (;;;;;) Maple_2011
2174
- os: [ ]
2175
- client: null
2176
- device:
2177
- type: tv
2178
- brand: SA
2179
- model: Smart TV 2011
2180
- os_family: Unknown
2181
- browser_family: Unknown
2182
- -
2183
- user_agent: HbbTV/1.1.1 (;Samsung;SmartTV2012;;;) WebKit
2184
- os: [ ]
2185
- client: null
2186
- device:
2187
- type: tv
2188
- brand: SA
2189
- model: Smart TV 2012
2190
- os_family: Unknown
2191
- browser_family: Unknown
2192
- -
2193
- user_agent: HbbTV/1.1.1 (;Samsung;SmartTV2013;BPH-F8509EUB-1003.2;;) WebKit
2194
- os: [ ]
2195
- client: null
2196
- device:
2197
- type: tv
2198
- brand: SA
2199
- model: Smart TV 2013
2200
- os_family: Unknown
2201
- browser_family: Unknown
2202
- -
2203
- user_agent: HbbTV/1.1.1 (;Samsung;SmartTV2014;T-MST14DEUC-1106.1;;) WebKit
2204
- os: [ ]
2205
- client: null
2206
- device:
2207
- type: tv
2208
- brand: SA
2209
- model: Smart TV 2014
2210
- os_family: Unknown
2211
- browser_family: Unknown
2212
- -
2213
- user_agent: HbbTV/1.2.1 (+DRM;Samsung;SmartTV2017;T-KTMDEUC-1151.1;;)+TVPLUS+SmartHubLink Chrome
2214
- os: [ ]
2215
- client:
2216
- type: browser
2217
- name: Chrome
2218
- short_name: CH
2219
- version: ""
2220
- engine: WebKit
2221
- engine_version: ""
2222
- device:
2223
- type: tv
2224
- brand: SA
2225
- model: Smart TV 2017
2226
- os_family: Unknown
2227
- browser_family: Chrome
2228
- -
2229
- user_agent: SmartTV/1.0.0 (SAMSUNG;OTV-SMT-E5015;0x01;BAC.2012.05.12)
2230
- os: [ ]
2231
- client: null
2232
- device:
2233
- type: tv
2234
- brand: SA
2235
- model: SMT-E5015
2236
- os_family: Unknown
2237
- browser_family: Unknown
2238
- -
2239
- user_agent: Mozilla/5.0 (Linux; olleh tv; U; xx; SMT-E5015) AppleWebKit/536.25 (KHTML, like Gecko) AltiBrowser/3.0.4 (olleh tv; Large Screen) Safari/536.25
2240
- os:
2241
- name: GNU/Linux
2242
- short_name: LIN
2243
- version: ""
2244
- platform: ""
2245
- client:
2246
- type: browser
2247
- name: Safari
2248
- short_name: SF
2249
- version: ""
2250
- engine: WebKit
2251
- engine_version: "536.25"
2252
- device:
2253
- type: tv
2254
- brand: SA
2255
- model: SMT-E5015
2256
- os_family: GNU/Linux
2257
- browser_family: Safari
2258
- -
2259
- user_agent: DLNADOC/1.50 SHARP-AQUOS-DMP/2.0W
2260
- os: [ ]
2261
- client: null
2262
- device:
2263
- type: tv
2264
- brand: SH
2265
- model: Aquos Net Plus
2266
- os_family: Unknown
2267
- browser_family: Unknown
2268
- -
2269
- user_agent: Mozilla/5.0 (DTV) AppleWebKit/531.2+ (KHTML, like Gecko) Espial/6.1.5 AQUOSBrowser/2.0 (US01DTV;V;0001;0001)
2270
- os: [ ]
2271
- client:
2272
- type: browser
2273
- name: Espial TV Browser
2274
- short_name: ES
2275
- version: "6.1.5"
2276
- engine: WebKit
2277
- engine_version: "531.2"
2278
- device:
2279
- type: tv
2280
- brand: SH
2281
- model: Aquos Net Plus
2282
- os_family: Unknown
2283
- browser_family: Unknown
2284
- -
2285
- user_agent: Opera/9.80 (Linux armv6l; U; en) Presto/2.8.115 Version/11.10 AQUOS-AS/1.0 LC-40LE835X
2286
- os:
2287
- name: GNU/Linux
2288
- short_name: LIN
2289
- version: ""
2290
- platform: ARM
2291
- client:
2292
- type: browser
2293
- name: Opera
2294
- short_name: OP
2295
- version: "11.10"
2296
- engine: Presto
2297
- engine_version: "2.8.115"
2298
- device:
2299
- type: tv
2300
- brand: SH
2301
- model: LC-40LE835X
2302
- os_family: GNU/Linux
2303
- browser_family: Opera
2304
- -
2305
- user_agent: Mozilla/5.0 (DTV) AppleWebKit/531.2+ (KHTML, like Gecko) Espial/6.0.5 AQUOSBrowser/1.0 (AS00DTV;V;0001;0001) AQUOS-AS/2.0 LC-46LX840H
2306
- os: [ ]
2307
- client:
2308
- type: browser
2309
- name: Espial TV Browser
2310
- short_name: ES
2311
- version: "6.0.5"
2312
- engine: WebKit
2313
- engine_version: "531.2"
2314
- device:
2315
- type: tv
2316
- brand: SH
2317
- model: LC-46LX840H
2318
- os_family: Unknown
2319
- browser_family: Unknown
2320
- -
2321
- user_agent: Mozilla/5.0 (DTV) AppleWebKit/531.2+ (KHTML, like Gecko) Espial/6.1.6 AQUOSBrowser/1.0 (AS00DTV;V;0001;0001)AQUOS-AS/2.0 LC-60LX850H
2322
- os: [ ]
2323
- client:
2324
- type: browser
2325
- name: Espial TV Browser
2326
- short_name: ES
2327
- version: "6.1.6"
2328
- engine: WebKit
2329
- engine_version: "531.2"
2330
- device:
2331
- type: tv
2332
- brand: SH
2333
- model: LC-60LX850H
2334
- os_family: Unknown
2335
- browser_family: Unknown
2336
- -
2337
- user_agent: Mozilla/5.0 (DTV) AppleWebKit/531.2+ (KHTML, like Gecko) Espial/6.1.12 AQUOSBrowser/1.0 (AS00DTV;V;0001;0001)AQUOS-AS/2.0 LC-60UQ10E
2338
- os: [ ]
2339
- client:
2340
- type: browser
2341
- name: Espial TV Browser
2342
- short_name: ES
2343
- version: "6.1.12"
2344
- engine: WebKit
2345
- engine_version: "531.2"
2346
- device:
2347
- type: tv
2348
- brand: SH
2349
- model: LC-60UQ10E
2350
- os_family: Unknown
2351
- browser_family: Unknown
2352
- -
2353
- user_agent: Opera/9.80 (Linux mips; U; NETRANGEMMH; Sharp; HbbTV/1.1.1; CE-HTML/1.0; LE542E; FT; LC:deu; CC:che;; en) Presto/2.9.167 Version/11.50
2354
- os:
2355
- name: GNU/Linux
2356
- short_name: LIN
2357
- version: ""
2358
- platform: ""
2359
- client:
2360
- type: browser
2361
- name: Opera
2362
- short_name: OP
2363
- version: "11.50"
2364
- engine: Presto
2365
- engine_version: "2.9.167"
2366
- device:
2367
- type: tv
2368
- brand: SH
2369
- model: LE542E
2370
- os_family: GNU/Linux
2371
- browser_family: Opera
2372
- -
2373
- user_agent: Opera/9.80 (Linux sh4; HbbTV/1.2.1 (;Sharp;LE652;v0.1.43.5;;) CE-HTML/1.0 Config(L:deu,CC:DEU) NETRANGEMMH) Presto/2.12.362 Version/12.10
2374
- os:
2375
- name: GNU/Linux
2376
- short_name: LIN
2377
- version: ""
2378
- platform: ""
2379
- client:
2380
- type: browser
2381
- name: Opera
2382
- short_name: OP
2383
- version: "12.10"
2384
- engine: Presto
2385
- engine_version: "2.12.362"
2386
- device:
2387
- type: tv
2388
- brand: SH
2389
- model: LE652
2390
- os_family: GNU/Linux
2391
- browser_family: Opera
2392
- -
2393
- user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 ( ; Sharp; LE737; 690.1; 1.32;); en) Presto/2.9.167 Version/11.50
2394
- os:
2395
- name: GNU/Linux
2396
- short_name: LIN
2397
- version: ""
2398
- platform: ""
2399
- client:
2400
- type: browser
2401
- name: Opera
2402
- short_name: OP
2403
- version: "11.50"
2404
- engine: Presto
2405
- engine_version: "2.9.167"
2406
- device:
2407
- type: tv
2408
- brand: SH
2409
- model: LE737
2410
- os_family: GNU/Linux
2411
- browser_family: Opera
2412
- -
2413
- user_agent: Opera/9.80 (Linux sh4; HbbTV/1.2.1 (;Sharp;LE750;v0.100;;) CE-HTML/1.0 Config(L:eng,CC:DEU) NETRANGEMMH) Presto/2.12.362 Version/12.10
2414
- os:
2415
- name: GNU/Linux
2416
- short_name: LIN
2417
- version: ""
2418
- platform: ""
2419
- client:
2420
- type: browser
2421
- name: Opera
2422
- short_name: OP
2423
- version: "12.10"
2424
- engine: Presto
2425
- engine_version: "2.12.362"
2426
- device:
2427
- type: tv
2428
- brand: SH
2429
- model: LE750
2430
- os_family: GNU/Linux
2431
- browser_family: Opera
2432
- -
2433
- user_agent: Opera/9.80 (Linux sh4; HbbTV/1.2.1 (;Sharp;LE752;v0.1.18.1;;) CE-HTML/1.0 Config(L:eng,CC:DEU) NETRANGEMMH) Presto/2.12.362 Version/12.10
2434
- os:
2435
- name: GNU/Linux
2436
- short_name: LIN
2437
- version: ""
2438
- platform: ""
2439
- client:
2440
- type: browser
2441
- name: Opera
2442
- short_name: OP
2443
- version: "12.10"
2444
- engine: Presto
2445
- engine_version: "2.12.362"
2446
- device:
2447
- type: tv
2448
- brand: SH
2449
- model: LE752
2450
- os_family: GNU/Linux
2451
- browser_family: Opera
2452
- -
2453
- user_agent: Opera/9.80 (Linux mips; U; ; xx) Presto/2.10.287 Version/12.00 HbbTV/1.1.1 (; CUS:SHARP; MB95; 2.1.9.o; 1.0;) CE-HTML/1.0 NETRANGEMMH iplayerV3
2454
- os:
2455
- name: GNU/Linux
2456
- short_name: LIN
2457
- version: ""
2458
- platform: ""
2459
- client:
2460
- type: browser
2461
- name: Opera
2462
- short_name: OP
2463
- version: "12.00"
2464
- engine: Presto
2465
- engine_version: "2.10.287"
2466
- device:
2467
- type: tv
2468
- brand: SH
2469
- model: MB95
2470
- os_family: GNU/Linux
2471
- browser_family: Opera
2472
- -
2473
- user_agent: Opera/9.80 (Linux mips; ) Presto/2.12.407 Version/12.51 MB90/3.3.8.e (SHARP, Si2156LG32, wired) HbbTV/1.1.1 (; CUS:SHARP; MB90; 3.3.8.e; 1.0;) CE-HTML/1.0 NETRANGEMMH iplayerV3
2474
- os:
2475
- name: GNU/Linux
2476
- short_name: LIN
2477
- version: ""
2478
- platform: ""
2479
- client:
2480
- type: browser
2481
- name: Opera
2482
- short_name: OP
2483
- version: "12.51"
2484
- engine: Presto
2485
- engine_version: "2.12.407"
2486
- device:
2487
- type: tv
2488
- brand: SH
2489
- model: Si2156LG32
2490
- os_family: GNU/Linux
2491
- browser_family: Opera
2492
- -
2493
- user_agent: Mozilla/5.0 (Linux; U; Android 4.0.4; zh-cn; Skyworth 8K55 E680 Build/IMM76L) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30
2494
- os:
2495
- name: Android
2496
- short_name: AND
2497
- version: "4.0.4"
2498
- platform: ""
2499
- client:
2500
- type: browser
2501
- name: Android Browser
2502
- short_name: AN
2503
- version: ""
2504
- engine: WebKit
2505
- engine_version: "534.30"
2506
- device:
2507
- type: tv
2508
- brand: SK
2509
- model: 8K55 E680
2510
- os_family: Android
2511
- browser_family: Android Browser
2512
- -
2513
- user_agent: HbbTV/1.1.1 (+PVR;Sky_worth;HC7620;2.07.12;1.0;)CE-HTML/1.0 Skykid/5.1.6.2.04
2514
- os: [ ]
2515
- client: null
2516
- device:
2517
- type: tv
2518
- brand: SK
2519
- model: HC7620
2520
- os_family: Unknown
2521
- browser_family: Unknown
2522
- -
2523
- user_agent: Opera/9.80 (Linux armv6l; Opera TV Store/5606) Presto/2.12.362 Version/12.11 Model/Sony-BDP9G_AXD SonyCEBrowser/1.0 (BDP9G_AXD; BDP2014/M20.R.0164; TWN)
2524
- os:
2525
- name: GNU/Linux
2526
- short_name: LIN
2527
- version: ""
2528
- platform: ARM
2529
- client:
2530
- type: browser
2531
- name: Opera
2532
- short_name: OP
2533
- version: "12.11"
2534
- engine: Presto
2535
- engine_version: "2.12.362"
2536
- device:
2537
- type: tv
2538
- brand: SO
2539
- model: BDP9G AXD
2540
- os_family: GNU/Linux
2541
- browser_family: Opera
2542
- -
2543
- user_agent: Opera/9.80 (Linux armv6l; Opera TV Store/5599; (SonyBDP/BDV13)) Presto/2.12.362 Version/12.11
2544
- os:
2545
- name: GNU/Linux
2546
- short_name: LIN
2547
- version: ""
2548
- platform: ARM
2549
- client:
2550
- type: browser
2551
- name: Opera
2552
- short_name: OP
2553
- version: "12.11"
2554
- engine: Presto
2555
- engine_version: "2.12.362"
2556
- device:
2557
- type: tv
2558
- brand: SO
2559
- model: Blu-ray Player
2560
- os_family: GNU/Linux
2561
- browser_family: Opera
2562
- -
2563
- user_agent: Opera/9.80 (Linux armv7l; Opera TV Store/6219) Presto/2.12.407 Version/12.50 Model/Sony-KD-55X8500B SonyCEBrowser/1.0 (KD-55X8500B; CTV2014/PKG2.263GAA; AUS)
2564
- os:
2565
- name: GNU/Linux
2566
- short_name: LIN
2567
- version: ""
2568
- platform: ARM
2569
- client:
2570
- type: browser
2571
- name: Opera
2572
- short_name: OP
2573
- version: "12.50"
2574
- engine: Presto
2575
- engine_version: "2.12.407"
2576
- device:
2577
- type: tv
2578
- brand: SO
2579
- model: KD-55X8500B
2580
- os_family: GNU/Linux
2581
- browser_family: Opera
2582
- -
2583
- user_agent: Mozilla/5.0 (Linux armv7l) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36 OPR/22.0.1481.0 OMI/4.2.12.48.ALSAN3.122 HbbTV/1.2.1 (; Sony; KD-55XD8577; v3.925; 2015;) sony.hbbtv.tv.2015HE
2584
- os:
2585
- name: GNU/Linux
2586
- short_name: LIN
2587
- version: ""
2588
- platform: ARM
2589
- client:
2590
- type: browser
2591
- name: Opera Devices
2592
- short_name: OH
2593
- version: "4.2.12.48"
2594
- engine: Blink
2595
- engine_version: ""
2596
- device:
2597
- type: tv
2598
- brand: SO
2599
- model: KD-55XD8577
2600
- os_family: GNU/Linux
2601
- browser_family: Opera
2602
- -
2603
- user_agent: Mozilla/5.0 (Linux armv7l) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36 OPR/29.0.1803.0 OMI/4.5.23.37.ALSAN5.131 HbbTV/1.2.1 (; Sony; KD-65ZD9; v1.602671100; 2016;) sony.hbbtv.tv.2016HE
2604
- os:
2605
- name: GNU/Linux
2606
- short_name: LIN
2607
- version: ""
2608
- platform: ARM
2609
- client:
2610
- type: browser
2611
- name: Opera Devices
2612
- short_name: OH
2613
- version: "4.5.23.37"
2614
- engine: Blink
2615
- engine_version: ""
2616
- device:
2617
- type: tv
2618
- brand: SO
2619
- model: KD-65ZD9
2620
- os_family: GNU/Linux
2621
- browser_family: Opera
2622
- -
2623
- user_agent: Opera/9.80 (Linux mips; Opera TV Store/4510; U; en) Presto/2.10.250 Version/11.60 Model/Sony-KDL-32EX550 SonyCEBrowser/1.0 (KDL-32EX550; CTV/PKG2.120GAA; IND)
2624
- os:
2625
- name: GNU/Linux
2626
- short_name: LIN
2627
- version: ""
2628
- platform: ""
2629
- client:
2630
- type: browser
2631
- name: Opera
2632
- short_name: OP
2633
- version: "11.60"
2634
- engine: Presto
2635
- engine_version: "2.10.250"
2636
- device:
2637
- type: tv
2638
- brand: SO
2639
- model: KDL-32EX550
2640
- os_family: GNU/Linux
2641
- browser_family: Opera
2642
- -
2643
- user_agent: Mozilla/5.0 (Linux armv7l) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36 OPR/22.0.1481.0 OMI/4.2.12.48.ALSAN3.122 HbbTV/1.2.1 (; Sony; KDL-65W859C; v3.925; 2015;) sony.hbbtv.tv.2015HE
2644
- os:
2645
- name: GNU/Linux
2646
- short_name: LIN
2647
- version: ""
2648
- platform: ARM
2649
- client:
2650
- type: browser
2651
- name: Opera Devices
2652
- short_name: OH
2653
- version: "4.2.12.48"
2654
- engine: Blink
2655
- engine_version: ""
2656
- device:
2657
- type: tv
2658
- brand: SO
2659
- model: KDL-65W859
2660
- os_family: GNU/Linux
2661
- browser_family: Opera
2662
- -
2663
- user_agent: 'Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Sony; KDL32CX525; PKG4.008EUA; 2011;);; en) Presto/2.7.61 Version/11.00'
2664
- os:
2665
- name: GNU/Linux
2666
- short_name: LIN
2667
- version: ""
2668
- platform: ""
2669
- client:
2670
- type: browser
2671
- name: Opera
2672
- short_name: OP
2673
- version: "11.00"
2674
- engine: Presto
2675
- engine_version: "2.7.61"
2676
- device:
2677
- type: tv
2678
- brand: SO
2679
- model: KDL32CX525
2680
- os_family: GNU/Linux
2681
- browser_family: Opera
2682
- -
2683
- user_agent: 'Opera/9.80 (Linux armv7l; U; HbbTV/1.1.1 (; Sony; KDL40HX758; PKG1.212EUA; 2013;);; en) Presto/2.10.287 Version/12.00'
2684
- os:
2685
- name: GNU/Linux
2686
- short_name: LIN
2687
- version: ""
2688
- platform: ARM
2689
- client:
2690
- type: browser
2691
- name: Opera
2692
- short_name: OP
2693
- version: "12.00"
2694
- engine: Presto
2695
- engine_version: "2.10.287"
2696
- device:
2697
- type: tv
2698
- brand: SO
2699
- model: KDL40HX758
2700
- os_family: GNU/Linux
2701
- browser_family: Opera
2702
- -
2703
- user_agent: 'Opera/9.80 (Linux armv7l; HbbTV/1.1.1 (; Sony; KDL42W805A; PKG3.105EUA; 2013;); ) Presto/2.12.362 Version/12.11'
2704
- os:
2705
- name: GNU/Linux
2706
- short_name: LIN
2707
- version: ""
2708
- platform: ARM
2709
- client:
2710
- type: browser
2711
- name: Opera
2712
- short_name: OP
2713
- version: "12.11"
2714
- engine: Presto
2715
- engine_version: "2.12.362"
2716
- device:
2717
- type: tv
2718
- brand: SO
2719
- model: KDL42W805
2720
- os_family: GNU/Linux
2721
- browser_family: Opera
2722
- -
2723
- user_agent: Opera/9.80 (Linux armv7l; InettvBrowser/2.2 (00014A;SonyDTV115;0002;0100) KDL42W805A; CC/GBR) Presto/2.12.362 Version/12.11
2724
- os:
2725
- name: GNU/Linux
2726
- short_name: LIN
2727
- version: ""
2728
- platform: ARM
2729
- client:
2730
- type: browser
2731
- name: Opera
2732
- short_name: OP
2733
- version: "12.11"
2734
- engine: Presto
2735
- engine_version: "2.12.362"
2736
- device:
2737
- type: tv
2738
- brand: SO
2739
- model: KDL42W805A
2740
- os_family: GNU/Linux
2741
- browser_family: Opera
2742
- -
2743
- user_agent: 'Opera/9.80 (Linux armv7l; U; HbbTV/1.1.1 (; Sony; KDL46EX650; PKG0.002EUA; 2013;);; en) Presto/2.10.287 Version/12.00'
2744
- os:
2745
- name: GNU/Linux
2746
- short_name: LIN
2747
- version: ""
2748
- platform: ARM
2749
- client:
2750
- type: browser
2751
- name: Opera
2752
- short_name: OP
2753
- version: "12.00"
2754
- engine: Presto
2755
- engine_version: "2.10.287"
2756
- device:
2757
- type: tv
2758
- brand: SO
2759
- model: KDL46EX650
2760
- os_family: GNU/Linux
2761
- browser_family: Opera
2762
- -
2763
- user_agent: 'Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Sony; KDL55NX725; PKG4.012EUA; 2011;);; en) Presto/2.7.61 Version/11.00'
2764
- os:
2765
- name: GNU/Linux
2766
- short_name: LIN
2767
- version: ""
2768
- platform: ""
2769
- client:
2770
- type: browser
2771
- name: Opera
2772
- short_name: OP
2773
- version: "11.00"
2774
- engine: Presto
2775
- engine_version: "2.7.61"
2776
- device:
2777
- type: tv
2778
- brand: SO
2779
- model: KDL55NX725
2780
- os_family: GNU/Linux
2781
- browser_family: Opera
2782
- -
2783
- user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; smart; CX10; 1.0; 1.0;) CE-HTML/1.0'
2784
- os: [ ]
2785
- client: null
2786
- device:
2787
- type: tv
2788
- brand: SR
2789
- model: CX10
2790
- os_family: Unknown
2791
- browser_family: Unknown
2792
- -
2793
- user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; smart; VX10; 1.0; 1.0;) CE-HTML/1.0'
2794
- os: [ ]
2795
- client: null
2796
- device:
2797
- type: tv
2798
- brand: SR
2799
- model: VX10
2800
- os_family: Unknown
2801
- browser_family: Unknown
2802
- -
2803
- user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; smart; ZAPPIX HD+; 1.0; 1.0;) CE-HTML/1.0'
2804
- os: [ ]
2805
- client: null
2806
- device:
2807
- type: tv
2808
- brand: SR
2809
- model: ZAPPIX HD+
2810
- os_family: Unknown
2811
- browser_family: Unknown
2812
- -
2813
- user_agent: Mozilla/5.0 (Linux; U; Android 2.3.4; fr-fr; STOREX LinkBox Build/20120103) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
2814
- os:
2815
- name: Android
2816
- short_name: AND
2817
- version: "2.3.4"
2818
- platform: ""
2819
- client:
2820
- type: browser
2821
- name: Android Browser
2822
- short_name: AN
2823
- version: ""
2824
- engine: WebKit
2825
- engine_version: "533.1"
2826
- device:
2827
- type: tv
2828
- brand: ST
2829
- model: LinkBox
2830
- os_family: Android
2831
- browser_family: Android Browser
2832
- -
2833
- user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; selevision; Selevision EMC1000i; 1.0; 1.0;) CE-HTML/1.0'
2834
- os: [ ]
2835
- client: null
2836
- device:
2837
- type: tv
2838
- brand: SV
2839
- model: EMC1000i
2840
- os_family: Unknown
2841
- browser_family: Unknown
2842
- -
2843
- user_agent: 'Mozilla/5.0 (;;;) AppleWebKit/534.6 HbbTV/1.1.1 (+DL+PVR; selevision; Selevision EMC1000i; 1.0; 1.0;) hdplusinteraktiv/1.0 (NETRANGEMMH;) CE-HTML/1.0'
2844
- os: [ ]
2845
- client: null
2846
- device:
2847
- type: tv
2848
- brand: SV
2849
- model: EMC1000i
2850
- os_family: Unknown
2851
- browser_family: Unknown
2852
- -
2853
- user_agent: Opera/9.80 (Linux mips; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;TCL LF1V042; en) Presto/2.10.287 Version/12.00
2854
- os:
2855
- name: GNU/Linux
2856
- short_name: LIN
2857
- version: ""
2858
- platform: ""
2859
- client:
2860
- type: browser
2861
- name: Opera
2862
- short_name: OP
2863
- version: "12.00"
2864
- engine: Presto
2865
- engine_version: "2.10.287"
2866
- device:
2867
- type: tv
2868
- brand: TC
2869
- model: LF1V042
2870
- os_family: GNU/Linux
2871
- browser_family: Opera
2872
- -
2873
- user_agent: Opera/9.80 (Linux armv6l; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;TCL LF1V349; en) Presto/2.8.115 Version/11.10
2874
- os:
2875
- name: GNU/Linux
2876
- short_name: LIN
2877
- version: ""
2878
- platform: ARM
2879
- client:
2880
- type: browser
2881
- name: Opera
2882
- short_name: OP
2883
- version: "11.10"
2884
- engine: Presto
2885
- engine_version: "2.8.115"
2886
- device:
2887
- type: tv
2888
- brand: TC
2889
- model: LF1V349
2890
- os_family: GNU/Linux
2891
- browser_family: Opera
2892
- -
2893
- user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Vestel; MB95; 1.0; 1.0; ); en) Presto/2.10.287 Version/12.00 HbbTV/1.1.1 (; CUS:TELEFUNKEN; MB95; 2.1.4; 1.0;) CE-HTML/1.0 NETRANGEMMH iplayerV3
2894
- os:
2895
- name: GNU/Linux
2896
- short_name: LIN
2897
- version: ""
2898
- platform: ""
2899
- client:
2900
- type: browser
2901
- name: Opera
2902
- short_name: OP
2903
- version: "12.00"
2904
- engine: Presto
2905
- engine_version: "2.10.287"
2906
- device:
2907
- type: tv
2908
- brand: TL
2909
- model: MB95
2910
- os_family: GNU/Linux
2911
- browser_family: Opera
2912
- -
2913
- user_agent: Opera/9.80 (Linux armv6l; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;THOMSON LF1V017; en) Presto/2.10.250 Version/11.60
2914
- os:
2915
- name: GNU/Linux
2916
- short_name: LIN
2917
- version: ""
2918
- platform: ARM
2919
- client:
2920
- type: browser
2921
- name: Opera
2922
- short_name: OP
2923
- version: "11.60"
2924
- engine: Presto
2925
- engine_version: "2.10.250"
2926
- device:
2927
- type: tv
2928
- brand: TN
2929
- model: LF1V017
2930
- os_family: GNU/Linux
2931
- browser_family: Opera
2932
- -
2933
- user_agent: Opera/9.80 (Linux armv6l; U; NETRANGEMMH;HbbTV/1.1.1;CE-HTML/1.0;THOM LF1V375; en) Presto/2.10.250 Version/11.60
2934
- os:
2935
- name: GNU/Linux
2936
- short_name: LIN
2937
- version: ""
2938
- platform: ARM
2939
- client:
2940
- type: browser
2941
- name: Opera
2942
- short_name: OP
2943
- version: "11.60"
2944
- engine: Presto
2945
- engine_version: "2.10.250"
2946
- device:
2947
- type: tv
2948
- brand: TN
2949
- model: LF1V375
2950
- os_family: GNU/Linux
2951
- browser_family: Opera
2952
- -
2953
- user_agent: Mozilla/5.0 (DTV; TSBNetTV/T32013713.0203.7DD; TVwithVideoPlayer; like Gecko) NetFront/4.1 DTVNetBrowser/2.2 (000039;T32013713;0203;7DD) InettvBrowser/2.2 (000039;T32013713;0203;7DD)
2954
- os: [ ]
2955
- client:
2956
- type: browser
2957
- name: NetFront
2958
- short_name: NF
2959
- version: "4.1"
2960
- engine: NetFront
2961
- engine_version: "4.1"
2962
- device:
2963
- type: tv
2964
- brand: TS
2965
- model: ""
2966
- os_family: Unknown
2967
- browser_family: NetFront
2968
- -
2969
- user_agent: Opera/9.80 (Linux armv7l ; U; HbbTV/1.1.1 (; TOSHIBA; 55WL863; 19.5.61.15; 3; ) ; ToshibaTP/1.3.0 (+VIDEO_X_MS_ASF+VIDEO_MP4+AUDIO_MPEG+AUDIO_MP4+DRM+3D) ; de) Presto/2.6.33 Version/10.60
2970
- os:
2971
- name: GNU/Linux
2972
- short_name: LIN
2973
- version: ""
2974
- platform: ARM
2975
- client:
2976
- type: browser
2977
- name: Opera
2978
- short_name: OP
2979
- version: "10.60"
2980
- engine: Presto
2981
- engine_version: "2.6.33"
2982
- device:
2983
- type: tv
2984
- brand: TS
2985
- model: 55WL863
2986
- os_family: GNU/Linux
2987
- browser_family: Opera
2988
- -
2989
- user_agent: Opera/9.80 (Linux armv7l ; U; HbbTV/1.1.1 (; TOSHIBA; 55ZL1; 19.7.61.14; 3; ) ; ToshibaTP/1.3.0 (+VIDEO_MP4+AUDIO_MPEG+AUDIO_MP4) ; de) Presto/2.6.33 Version/10.60
2990
- os:
2991
- name: GNU/Linux
2992
- short_name: LIN
2993
- version: ""
2994
- platform: ARM
2995
- client:
2996
- type: browser
2997
- name: Opera
2998
- short_name: OP
2999
- version: "10.60"
3000
- engine: Presto
3001
- engine_version: "2.6.33"
3002
- device:
3003
- type: tv
3004
- brand: TS
3005
- model: 55ZL1
3006
- os_family: GNU/Linux
3007
- browser_family: Opera
3008
- -
3009
- user_agent: HbbTV/1.1.1 (+DL;TechnoTrend Goerler;S-855;3.1.8.24.04.20.devel;;) CE-HTML/1.0 hdplusinteraktiv/1.0 (NETRANGEMMH;)
3010
- os: [ ]
3011
- client: null
3012
- device:
3013
- type: tv
3014
- brand: TT
3015
- model: S-855
3016
- os_family: Unknown
3017
- browser_family: Unknown
3018
- -
3019
- user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (;;;;;); CE-HTML; TechniSat DigiCorder ISIO C; de) Presto/2.9.167 Version/11.50
3020
- os:
3021
- name: GNU/Linux
3022
- short_name: LIN
3023
- version: ""
3024
- platform: ""
3025
- client:
3026
- type: browser
3027
- name: Opera
3028
- short_name: OP
3029
- version: "11.50"
3030
- engine: Presto
3031
- engine_version: "2.9.167"
3032
- device:
3033
- type: tv
3034
- brand: TX
3035
- model: DigiCorder ISIO C
3036
- os_family: GNU/Linux
3037
- browser_family: Opera
3038
- -
3039
- user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (;;;;;); CE-HTML; TechniSat DigiCorder ISIO S; de) Presto/2.9.167 Version/11.50
3040
- os:
3041
- name: GNU/Linux
3042
- short_name: LIN
3043
- version: ""
3044
- platform: ""
3045
- client:
3046
- type: browser
3047
- name: Opera
3048
- short_name: OP
3049
- version: "11.50"
3050
- engine: Presto
3051
- engine_version: "2.9.167"
3052
- device:
3053
- type: tv
3054
- brand: TX
3055
- model: DigiCorder ISIO S
3056
- os_family: GNU/Linux
3057
- browser_family: Opera
3058
- -
3059
- user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (;;;;;); CE-HTML; TechniSat Digit ISIO C; de) Presto/2.9.167 Version/11.50
3060
- os:
3061
- name: GNU/Linux
3062
- short_name: LIN
3063
- version: ""
3064
- platform: ""
3065
- client:
3066
- type: browser
3067
- name: Opera
3068
- short_name: OP
3069
- version: "11.50"
3070
- engine: Presto
3071
- engine_version: "2.9.167"
3072
- device:
3073
- type: tv
3074
- brand: TX
3075
- model: Digit ISIO C
3076
- os_family: GNU/Linux
3077
- browser_family: Opera
3078
- -
3079
- user_agent: Opera/9.80 (Linux sh4; U; HbbTV/1.1.1 (;;;;;); CE-HTML; TechniSat Digit ISIO S; de) Presto/2.9.167 Version/11.50
3080
- os:
3081
- name: GNU/Linux
3082
- short_name: LIN
3083
- version: ""
3084
- platform: ""
3085
- client:
3086
- type: browser
3087
- name: Opera
3088
- short_name: OP
3089
- version: "11.50"
3090
- engine: Presto
3091
- engine_version: "2.9.167"
3092
- device:
3093
- type: tv
3094
- brand: TX
3095
- model: Digit ISIO S
3096
- os_family: GNU/Linux
3097
- browser_family: Opera
3098
- -
3099
- user_agent: Opera/9.80 (Linux i686; U; HbbTV/1.1.1 (;;;;;); CE-HTML; TechniSat MultyVision ISIO; de) Presto/2.9.167 Version/11.50
3100
- os:
3101
- name: GNU/Linux
3102
- short_name: LIN
3103
- version: ""
3104
- platform: x86
3105
- client:
3106
- type: browser
3107
- name: Opera
3108
- short_name: OP
3109
- version: "11.50"
3110
- engine: Presto
3111
- engine_version: "2.9.167"
3112
- device:
3113
- type: tv
3114
- brand: TX
3115
- model: MultyVision ISIO
3116
- os_family: GNU/Linux
3117
- browser_family: Opera
3118
- -
3119
- user_agent: HbbTV/1.1.1 (; Vestel; MB70; 1.0; 1.0;) NetFront/4.1
3120
- os: [ ]
3121
- client:
3122
- type: browser
3123
- name: NetFront
3124
- short_name: NF
3125
- version: "4.1"
3126
- engine: NetFront
3127
- engine_version: "4.1"
3128
- device:
3129
- type: tv
3130
- brand: VT
3131
- model: MB70
3132
- os_family: Unknown
3133
- browser_family: NetFront
3134
- -
3135
- user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Vestel; MB95; 1.0; 1.0; ); en) Presto/2.10.287 Version/12.00
3136
- os:
3137
- name: GNU/Linux
3138
- short_name: LIN
3139
- version: ""
3140
- platform: ""
3141
- client:
3142
- type: browser
3143
- name: Opera
3144
- short_name: OP
3145
- version: "12.00"
3146
- engine: Presto
3147
- engine_version: "2.10.287"
3148
- device:
3149
- type: tv
3150
- brand: VT
3151
- model: MB95
3152
- os_family: GNU/Linux
3153
- browser_family: Opera
3154
- -
3155
- user_agent: Opera/9.80 (Linux armv7l; U; HbbTV/1.1.1 (;tv2n;videoweb;1.0.0;1.0;); en) Presto/2.8.115 Version/11.10
3156
- os:
3157
- name: GNU/Linux
3158
- short_name: LIN
3159
- version: ""
3160
- platform: ARM
3161
- client:
3162
- type: browser
3163
- name: Opera
3164
- short_name: OP
3165
- version: "11.10"
3166
- engine: Presto
3167
- engine_version: "2.8.115"
3168
- device:
3169
- type: tv
3170
- brand: VW
3171
- model: tv2n
3172
- os_family: GNU/Linux
3173
- browser_family: Opera
3174
- -
3175
- user_agent: Opera/9.80 (Linux mips; U; HbbTV/1.1.1 (; Opera Software; videowebtv; ; ; ); en) Presto/2.10.287 Version/12.00
3176
- os:
3177
- name: GNU/Linux
3178
- short_name: LIN
3179
- version: ""
3180
- platform: ""
3181
- client:
3182
- type: browser
3183
- name: Opera
3184
- short_name: OP
3185
- version: "12.00"
3186
- engine: Presto
3187
- engine_version: "2.10.287"
3188
- device:
3189
- type: tv
3190
- brand: VW
3191
- model: VideoWeb TV
3192
- os_family: GNU/Linux
3193
- browser_family: Opera
3194
- -
3195
- user_agent: Mozilla/5.0 (Linux; GoogleTV 3.2; VAP430 Build/MASTER) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
3196
- os:
3197
- name: Google TV
3198
- short_name: GTV
3199
- version: "3.2"
3200
- platform: ""
3201
- client:
3202
- type: browser
3203
- name: Chrome
3204
- short_name: CH
3205
- version: "11.0.696.77"
3206
- engine: WebKit
3207
- engine_version: "534.24"
3208
- device:
3209
- type: tv
3210
- brand: VZ
3211
- model: VAP430
3212
- os_family: Google TV
3213
- browser_family: Chrome
3214
- -
3215
- user_agent: Mozilla/5.0 Linux; Android 6.0.1; NEXBOX-A1 Build/NEXBOX-A1; wv AppleWebKit/537.36 KHTML, like Gecko Version/4.0 Chrome/44.0.2403.119 Safari/537.36
3216
- os:
3217
- name: Android
3218
- short_name: AND
3219
- version: "6.0.1"
3220
- platform: ""
3221
- client:
3222
- type: browser
3223
- name: Chrome Webview
3224
- short_name: CV
3225
- version: "44.0.2403.119"
3226
- engine: Blink
3227
- engine_version: ""
3228
- device:
3229
- type: tv
3230
- brand: XB
3231
- model: A1
3232
- os_family: Android
3233
- browser_family: Chrome
3234
- -
3235
- user_agent: Mozilla/5.0 Linux; Android 6.0.1; NEXBOX-A5 Build/NEXBOX-A5-RTL8723BS; wv AppleWebKit/537.36 KHTML, like Gecko Version/4.0 Chrome/44.0.2403.119 Safari/537.36
3236
- os:
3237
- name: Android
3238
- short_name: AND
3239
- version: "6.0.1"
3240
- platform: ""
3241
- client:
3242
- type: browser
3243
- name: Chrome Webview
3244
- short_name: CV
3245
- version: "44.0.2403.119"
3246
- engine: Blink
3247
- engine_version: ""
3248
- device:
3249
- type: tv
3250
- brand: XB
3251
- model: A5
3252
- os_family: Android
3253
- browser_family: Chrome
3254
- -
3255
- user_agent: Mozilla/5.0 Linux; Android 5.1.1; NEXBOX-A95X AppleWebKit/537.36 KHTML, like Gecko Chrome/74.0.3729.157 Safari/537.36
3256
- os:
3257
- name: Android
3258
- short_name: AND
3259
- version: "5.1.1"
3260
- platform: ""
3261
- client:
3262
- type: browser
3263
- name: Chrome
3264
- short_name: CH
3265
- version: "74.0.3729.157"
3266
- engine: Blink
3267
- engine_version: ""
3268
- device:
3269
- type: tv
3270
- brand: XB
3271
- model: A95X
3272
- os_family: Android
3273
- browser_family: Chrome
3274
- -
3275
- user_agent: Mozilla/5.0 Linux; Android 7.1.2; NEXBOX-A95X Build/NEXBOX-A95X; wv AppleWebKit/537.36 KHTML, like Gecko Version/4.0 Chrome/72.0.3626.105 Safari/537.36 YandexSearch/8.11/apad YandexSearchBrowser/8.11
3276
- os:
3277
- name: Android
3278
- short_name: AND
3279
- version: "7.1.2"
3280
- platform: ""
3281
- client:
3282
- type: browser
3283
- name: Chrome Webview
3284
- short_name: CV
3285
- version: "72.0.3626.105"
3286
- engine: Blink
3287
- engine_version: ""
3288
- device:
3289
- type: tv
3290
- brand: XB
3291
- model: A95X
3292
- os_family: Android
3293
- browser_family: Chrome
3294
- -
3295
- user_agent: Mozilla/5.0 Linux; Android 4.4.2; MXQ-NEXBOX Build/MXQ.NEXBOX.SSV6051P AppleWebKit/537.36 KHTML, like Gecko Chrome/67.0.3396.87 Safari/537.36
3296
- os:
3297
- name: Android
3298
- short_name: AND
3299
- version: "4.4.2"
3300
- platform: ""
3301
- client:
3302
- type: browser
3303
- name: Chrome
3304
- short_name: CH
3305
- version: "67.0.3396.87"
3306
- engine: Blink
3307
- engine_version: ""
3308
- device:
3309
- type: tv
3310
- brand: XB
3311
- model: MXQ
3312
- os_family: Android
3313
- browser_family: Chrome
3314
- -
3315
- user_agent: Mozilla/5.0 Linux; Android 5.1.1; MXQ-Pro-NEXBOX Build/MXQ-Pro-NEXBOX AppleWebKit/537.36 KHTML, like Gecko Version/4.0 Chrome/39.0.0.0 Safari/537.36
3316
- os:
3317
- name: Android
3318
- short_name: AND
3319
- version: "5.1.1"
3320
- platform: ""
3321
- client:
3322
- type: browser
3323
- name: Chrome Webview
3324
- short_name: CV
3325
- version: "39.0.0.0"
3326
- engine: Blink
3327
- engine_version: ""
3328
- device:
3329
- type: tv
3330
- brand: XB
3331
- model: MXQ Pro
3332
- os_family: Android
3333
- browser_family: Chrome