Introduccion

Con esta practica se aplicara todo lo que se ha aprendido durante el semestre, en este caso separar los datos de una archico de Excel

library(dplyr)
## Warning: package 'dplyr' was built under R version 4.1.3
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(igraph)
## Warning: package 'igraph' was built under R version 4.1.3
## 
## Attaching package: 'igraph'
## The following objects are masked from 'package:dplyr':
## 
##     as_data_frame, groups, union
## The following objects are masked from 'package:stats':
## 
##     decompose, spectrum
## The following object is masked from 'package:base':
## 
##     union
library(tidyselect)
## Warning: package 'tidyselect' was built under R version 4.1.3
#Importacion de Datasaets necesarios para el analisis 
laptops_test <- read.csv("C:/Users/josse/OneDrive/Documentos/R/laptops_train.csv",header = TRUE,sep=",")
laptops_test
##     Manufacturer                                    Model.Name
## 1          Apple                                   MacBook Pro
## 2          Apple                                   Macbook Air
## 3             HP                                        250 G6
## 4          Apple                                   MacBook Pro
## 5          Apple                                   MacBook Pro
## 6           Acer                                      Aspire 3
## 7          Apple                                   MacBook Pro
## 8          Apple                                   Macbook Air
## 9           Asus                               ZenBook UX430UN
## 10          Acer                                       Swift 3
## 11            HP                                        250 G6
## 12            HP                                        250 G6
## 13         Apple                                   MacBook Pro
## 14          Dell                                 Inspiron 3567
## 15         Apple                                   MacBook 12"
## 16         Apple                                   MacBook Pro
## 17          Dell                                 Inspiron 3567
## 18         Apple                                   MacBook Pro
## 19        Lenovo                             IdeaPad 320-15IKB
## 20          Dell                                        XPS 13
## 21          Asus                               Vivobook E200HA
## 22        Lenovo                            Legion Y520-15IKBN
## 23            HP                                        255 G6
## 24          Dell                                 Inspiron 5379
## 25            HP       15-BS101nv (i7-8550U/8GB/256GB/FHD/W10)
## 26          Dell                                 Inspiron 3567
## 27         Apple                                   MacBook Air
## 28          Dell                                 Inspiron 5570
## 29          Dell                                 Latitude 5590
## 30            HP                                   ProBook 470
## 31         Chuwi                                 LapBook 15.6"
## 32          Asus          E402WA-GA010T (E2-6110/2GB/32GB/W10)
## 33            HP          17-ak001nv (A6-9220/4GB/500GB/Radeon
## 34          Dell                                        XPS 13
## 35         Apple                                   MacBook Air
## 36        Lenovo                            IdeaPad 120S-14IAP
## 37          Acer                                      Aspire 3
## 38          Dell                                 Inspiron 5770
## 39            HP                                        250 G6
## 40            HP                                   ProBook 450
## 41          Asus     X540UA-DM186 (i3-6006U/4GB/1TB/FHD/Linux)
## 42          Dell                                 Inspiron 7577
## 43          Asus        X542UQ-GO005 (i5-7200U/8GB/1TB/GeForce
## 44          Acer                               Aspire A515-51G
## 45          Dell                                 Inspiron 7773
## 46         Apple                                   MacBook Pro
## 47        Lenovo                             IdeaPad 320-15ISK
## 48          Asus                                     Rog Strix
## 49          Dell                                 Inspiron 3567
## 50          Asus          X751NV-TY001T (N4200/4GB/1TB/GeForce
## 51        Lenovo                                     Yoga Book
## 52          Acer                               Aspire A515-51G
## 53            HP                                        255 G6
## 54            HP                                   ProBook 430
## 55          Acer                                      Aspire 3
## 56          Dell                                 Inspiron 3576
## 57            HP       15-bs002nv (i3-6006U/4GB/128GB/FHD/W10)
## 58          Asus                                  VivoBook Max
## 59           MSI                                    GS73VR 7RG
## 60          Asus  X541UA-DM1897 (i3-6006U/4GB/256GB/FHD/Linux)
## 61          Dell                                 Inspiron 5770
## 62          Dell                                   Vostro 5471
## 63        Lenovo                            IdeaPad 520S-14IKB
## 64          Asus   UX410UA-GV350T (i5-8250U/8GB/256GB/FHD/W10)
## 65            HP                                        250 G6
## 66          Asus                                   ZenBook Pro
## 67            HP                                        250 G6
## 68            HP                             Stream 14-AX040wm
## 69        Lenovo         V310-15ISK (i5-7200U/4GB/1TB/FHD/W10)
## 70          Asus     FX753VE-GC093 (i7-7700HQ/12GB/1TB/GeForce
## 71     Microsoft                                Surface Laptop
## 72          Dell                                 Inspiron 5370
## 73          Dell                                 Inspiron 5570
## 74           MSI                                    GL72M 7RDX
## 75          Acer                                 Aspire E5-475
## 76          Asus     FX503VD-E4022T (i7-7700HQ/8GB/1TB/GeForce
## 77        Lenovo                            IdeaPad 320-15IKBN
## 78          Dell                                 Inspiron 5570
## 79          Acer                          Aspire A515-51G-32MX
## 80            HP                                   ProBook 470
## 81          Dell                                 Latitude 5590
## 82         Apple                                   MacBook 12"
## 83            HP                                   ProBook 440
## 84        Lenovo                             IdeaPad 320-15AST
## 85          Acer                                      Aspire 3
## 86          Dell                                 Inspiron 7577
## 87            HP                           Pavilion 15-CK000nv
## 88            HP                                        250 G6
## 89          Asus            FX503VM-E4007T (i7-7700HQ/16GB/1TB
## 90          Dell                                        XPS 13
## 91          Asus       FX550IK-DM018T (FX-9830P/8GB/1TB/Radeon
## 92          Acer                                      Aspire 5
## 93            HP                                   Probook 430
## 94          Dell                                 Inspiron 7577
## 95          Asus                               Zenbook UX430UA
## 96          Acer                                        Spin 5
## 97          Dell                                 Inspiron 3567
## 98          Dell                                 Inspiron 3567
## 99          Asus    X541UV-DM1439T (i3-7100U/6GB/256GB/GeForce
## 100           HP                               Omen 15-ce007nv
## 101           HP         15-bs017nv (i7-7500U/8GB/256GB/Radeon
## 102           HP         15-bw000nv (E2-9000e/4GB/500GB/Radeon
## 103         Dell                                 Inspiron 3576
## 104           HP                                Envy 13-ad009n
## 105    Microsoft                                Surface Laptop
## 106           HP                           Pavilion 14-BK001nv
## 107       Lenovo                             Ideapad 310-15ISK
## 108         Asus    UX430UQ-GV209R (i7-7500U/8GB/256GB/GeForce
## 109          MSI                                    GP62M 7REX
## 110       Lenovo                                 Thinkpad T470
## 111         Asus                                  VivoBook S15
## 112         Dell                                        XPS 13
## 113       Lenovo                                 ThinkPad Yoga
## 114           HP                                   Probook 440
## 115         Dell                                        XPS 13
## 116           HP                                  Spectre x360
## 117           HP                                   Probook 440
## 118         Dell                                 Inspiron 7570
## 119         Asus       X705UV-BX074T (i3-6006U/4GB/1TB/GeForce
## 120         Asus                                  VivoBook S15
## 121         Acer                                        Spin 3
## 122          MSI                                    GS63VR 7RG
## 123       Lenovo                            IdeaPad 320-15IKBN
## 124           HP                                   Probook 470
## 125         Acer                                      Aspire 3
## 126           HP                                        250 G6
## 127           HP                                   Probook 440
## 128         Asus           E402WA-GA007T (E2-6110/4GB/64GB/W10
## 129         Dell                                 Inspiron 5770
## 130           HP                                   ProBook 470
## 131         Dell                                 Inspiron 5567
## 132         Dell                                 Inspiron 3567
## 133         Acer                                       Swift 3
## 134         Acer                          Aspire A515-51G-37JS
## 135           HP             15-BS078nr (i7-7500U/8GB/1TB/W10)
## 136           HP                                   Probook 440
## 137       Lenovo                  V110-15IAP (N3350/4GB/1TB/No
## 138         Asus             FX753VD-GC086T (i5-7300HQ/8GB/1TB
## 139       Lenovo                            IdeaPad 320-15IKBN
## 140           HP                               Envy 13-AD007nv
## 141         Acer                                      Aspire 5
## 142       Lenovo                                 ThinkPad E480
## 143       Lenovo                            Legion Y520-15IKBN
## 144      Toshiba                                 Satellite Pro
## 145           HP                                        255 G6
## 146         Asus                               ZenBook UX430UA
## 147           HP                               EliteBook Folio
## 148         Asus                X541NA (N3350/4GB/1TB/FHD/W10)
## 149          MSI                                   GE72MVR 7RG
## 150         Acer                                Aspire A315-51
## 151         Dell                                 Inspiron 5577
## 152         Dell                                 Inspiron 7567
## 153       Lenovo           V110-15IKB (i5-7200U/4GB/128GB/W10)
## 154          MSI                                    GE73VR 7RE
## 155           HP                                 EliteBook 840
## 156           HP         15-BS103nv (i5-8250U/6GB/256GB/Radeon
## 157       Lenovo                                Yoga 520-14IKB
## 158         Asus                                  ZenBook Flip
## 159         Dell                                 Inspiron 5579
## 160      Toshiba                                 Satellite Pro
## 161         Asus         X555BP-XX180T (A9-9420/4GB/1TB/Radeon
## 162         Acer                               Aspire A517-51G
## 163         Dell                                 Inspiron 3576
## 164       Lenovo                            Legion Y520-15IKBN
## 165         Acer                                Aspire A315-31
## 166          MSI                                    GE63VR 7RE
## 167         Acer                                      Aspire 3
## 168         Dell                                 Inspiron 5577
## 169         Acer                               Aspire A517-51G
## 170           HP                                   ProBook 430
## 171       Huawei                                    MateBook X
## 172           HP           17-bs001nv (i5-7200U/6GB/2TB/Radeon
## 173       Lenovo                             IdeaPad 320-15AST
## 174      Toshiba                                 Satellite Pro
## 175           HP                                   ProBook 470
## 176         Dell                                 Inspiron 3567
## 177         Acer                                Aspire A315-51
## 178          MSI                               GT80S 6QF-074US
## 179       Lenovo                  V310-15IKB (i5-7200U/8GB/1TB
## 180           HP                                  Spectre x360
## 181         Dell                                 Inspiron 5570
## 182         Dell                                        XPS 13
## 183       Lenovo                                Yoga 920-13IKB
## 184      Toshiba                                 Satellite Pro
## 185       Xiaomi                                   Mi Notebook
## 186         Dell                                 Inspiron 7773
## 187         Dell                                        XPS 15
## 188       Lenovo                            Legion Y520-15IKBN
## 189         Acer                                       Swift 7
## 190         Dell                                 Inspiron 5770
## 191       Lenovo                                 Thinkpad Yoga
## 192         Vero                 K147 (N3350/4GB/32GB/FHD/W10)
## 193       Xiaomi                                   Mi Notebook
## 194       Lenovo                            IdeaPad 320-17IKBR
## 195         Dell                                 Inspiron 5379
## 196           HP                                   ProBook 470
## 197        Razer                                     Blade Pro
## 198           HP                                   ProBook 430
## 199           HP                                  Omen 17-W295
## 200           HP                                   Probook 470
## 201         Dell                                 Inspiron 7577
## 202       Lenovo           V110-15ISK (i5-6200U/4GB/128GB/W10)
## 203         Acer                                Aspire E5-576G
## 204       Lenovo                             Legion Y720-15IKB
## 205         Dell                                Precision 7520
## 206       Lenovo                            Legion Y520-15IKBN
## 207         Dell                                 Inspiron 3567
## 208         Dell                                        XPS 13
## 209         Dell                                        XPS 13
## 210       Lenovo                            IdeaPad 320-15IKBN
## 211         Acer                                      Aspire 7
## 212         Asus                            ROG GL703VD-GC028T
## 213           HP         15-bs018nq (i3-6006U/4GB/500GB/FHD/No
## 214       Lenovo                            IdeaPad 320-15IKBN
## 215       Huawei                                    MateBook X
## 216         Dell                                 Inspiron 5370
## 217       Lenovo                             IdeaPad 320-17IKB
## 218           HP                                   Probook 440
## 219         Dell                                 Latitude 5490
## 220         Dell                                 Inspiron 5379
## 221         Dell                                 Inspiron 3576
## 222       Lenovo                                Yoga 520-14IKB
## 223      Toshiba                             Portege Z30-C-16L
## 224           HP                                   ProBook 450
## 225         Dell                                  Alienware 17
## 226         Acer                                Aspire E5-576G
## 227         Dell                                 Inspiron 5567
## 228         Asus                       Vivobook X541UV-DM1217T
## 229         Asus             K756UX-T4340T (i5-7200U/8GB/500GB
## 230           HP                                     ZBook 15u
## 231         Asus                           Pro P2540UA-XO0198T
## 232           HP           15-rb013nv (E2-9000e/4GB/500GB/W10)
## 233       Lenovo                             Legion Y720-15IKB
## 234         Dell                                   Vostro 5468
## 235         Acer                                     Aspire R7
## 236         Dell                                 Inspiron 5567
## 237         Acer                                Aspire A315-51
## 238         Asus              X555QG-DM242T (A10-9620P/4GB/1TB
## 239         Asus                             ROG G703VI-E5062T
## 240         Acer                                Nitro AN515-51
## 241       Lenovo                             IdeaPad 320-15ISK
## 242         Asus                                  VivoBook Pro
## 243         Asus             F756UX-T4201D (i7-7500U/8GB/128GB
## 244         Dell                                 Inspiron 5577
## 245       Lenovo                                Yoga 910-13IKB
## 246         Dell                                 Inspiron 5570
## 247           HP             15-bs015dx (i5-7200U/8GB/1TB/W10)
## 248         Asus                            Rog G701VIK-BA060T
## 249           HP                                   ProBook 430
## 250        Apple                                   MacBook Pro
## 251         Dell                                 Inspiron 5579
## 252         Asus                            ROG G752VSK-GC493T
## 253         Asus         X505BP-BR019T (A9-9420/4GB/1TB/Radeon
## 254       Lenovo                                Yoga 920-13IKB
## 255         Acer                                      Aspire 5
## 256         Dell                                   Vostro 5370
## 257           HP            15-BW094nd (A6-9220/8GB/128GB/W10)
## 258           HP                                Envy 17-U275cl
## 259          MSI                                   GT73EVR 7RE
## 260       Lenovo                                Yoga 720-15IKB
## 261         Dell                                 Inspiron 5770
## 262       Lenovo                             IdeaPad 320-15ISK
## 263           HP                                   ProBook 450
## 264         Dell                                   Vostro 3568
## 265         Dell                                 Inspiron 3567
## 266         Dell                                 Inspiron 5579
## 267         Asus                                  ZenBook Flip
## 268       Lenovo                            IdeaPad 320-15IKBN
## 269           HP                                   Probook 470
## 270       Lenovo       V330-15IKB (i7-8550U/8GB/256GB/FHD/W10)
## 271        Apple                                   MacBook Pro
## 272         Asus                                     Rog Strix
## 273         Dell                                 Inspiron 3576
## 274       Lenovo                                   ThinkPad X1
## 275      Toshiba                                 Satellite Pro
## 276         Dell                                 Inspiron 5567
## 277         Dell                                 Inspiron 5770
## 278         Acer                               Aspire A515-51G
## 279       Lenovo                             IdeaPad 320-17ISK
## 280       Lenovo                            IdeaPad 320-17IKBR
## 281       Lenovo                             IdeaPad 320-17IKB
## 282         Dell                                 Inspiron 3567
## 283       Lenovo                            Legion Y520-15IKBN
## 284       Lenovo                            Ideapad 320-15IKBN
## 285         Acer                               Aspire A517-51G
## 286         Acer          SP315-51 (i7-7500U/12GB/1TB/FHD/W10)
## 287       Lenovo                                 Thinkpad T570
## 288         Asus                                  VivoBook S15
## 289       Lenovo                            Legion Y520-15IKBN
## 290       Lenovo                             IdeaPad 320-15IKB
## 291         Acer                          Chromebook C910-C2ST
## 292         Asus     FX753VD-GC071T (i7-7700HQ/8GB/1TB/GeForce
## 293           HP             17-BS037cl (i3-6006U/8GB/1TB/W10)
## 294         Dell                                        XPS 15
## 295       Lenovo       V330-15IKB (i5-8250U/8GB/256GB/FHD/W10)
## 296       Lenovo                             Legion Y720-15IKB
## 297         Acer                               Aspire A715-71G
## 298         Dell                                Precision 7720
## 299       Lenovo                             IdeaPad 310-15ABR
## 300         Asus                           ZenBook UX530UQ-PRO
## 301         Asus                                  VivoBook S14
## 302         Asus                            Rog GL702VS-GC095T
## 303       Lenovo                             IdeaPad 320-17IKB
## 304       Lenovo                            IdeaPad 320-15IKBN
## 305         Asus             GL553VE-FY082T (i7-7700HQ/8GB/1TB
## 306       Lenovo                             IdeaPad 320-15IAP
## 307           HP                                EliteBook x360
## 308      Toshiba                                 Satellite Pro
## 309       Lenovo                             IdeaPad 320-15IKB
## 310           HP                                        250 G6
## 311       Lenovo                            IdeaPad 720S-13IKB
## 312         Dell                                        XPS 13
## 313          MSI                                    GE63VR 7RF
## 314         Acer      ES1-523-84K7 (A8-7410/8GB/256GB/FHD/W10)
## 315         Asus                                 VivoBook Flip
## 316         Dell                                 Inspiron 5570
## 317           HP                                  Spectre x360
## 318       Lenovo                                   ThinkPad 13
## 319           HP                                   ProBook 640
## 320         Acer                                  TravelMate B
## 321           HP                                 Elitebook 840
## 322       Lenovo                             IdeaPad 320-17IKB
## 323         Asus                        ZenBook UX410UA-GV183T
## 324           HP                                   ProBook 450
## 325         Acer                                      Aspire 5
## 326       Lenovo                            IdeaPad 120S-14IAP
## 327         Acer                                 Aspire E5-575
## 328         Asus                                  VivoBook S15
## 329           HP                                 Elitebook 820
## 330         Dell                                        XPS 15
## 331          MSI                                    GL72M 7REX
## 332      Toshiba                                 Satellite Pro
## 333         Asus            UX510UX-CN269T (i7-7500U/8GB/256GB
## 334       Lenovo         V310-15ISK (i3-6006U/4GB/1TB/FHD/W10)
## 335         Asus   FX553VD-FY647T (i7-7700HQ/8GB/256GB/GeForce
## 336           HP                                 EliteBook 840
## 337         Dell                                 Inspiron 7570
## 338           HP                                 Elitebook 850
## 339         Asus                  X541NA (N3350/4GB/1TB/Linux)
## 340         Dell                                 Inspiron 7570
## 341         Dell                                 Inspiron 3552
## 342       Lenovo                             IdeaPad 320-15ABR
## 343           HP                                   ProBook 450
## 344       Lenovo                                Yoga 920-13IKB
## 345         Dell                                        XPS 13
## 346       Lenovo                            Legion Y520-15IKBN
## 347           HP                             Stream 14-AX001nv
## 348         Dell                                 Latitude 5590
## 349         Asus                                 VivoBook Flip
## 350         Dell                                 Inspiron 5570
## 351         Dell                                        XPS 15
## 352           HP                                 Elitebook 850
## 353          MSI                                  GP72MVR 7RFX
## 354           HP                                      Zbook 15
## 355      Toshiba                               Tecra A50-C-21G
## 356         Dell                                 Inspiron 5570
## 357       Lenovo                             IdeaPad 320-15IAP
## 358         Dell                                 Inspiron 7577
## 359         Dell                                 Inspiron 3567
## 360         Dell                                 Latitude 7480
## 361           HP                                        250 G6
## 362         Asus                        Zenbook UX410UA-GV027T
## 363       Lenovo                             IdeaPad 320-17IKB
## 364           HP                                        250 G6
## 365       Lenovo                             IdeaPad 320-15ISK
## 366           HP                15-AY023na (N3710/8GB/2TB/W10)
## 367         Dell                                 Inspiron 5770
## 368       Lenovo                            Legion Y520-15IKBN
## 369         Dell                                 Inspiron 5567
## 370           HP                                Elitebook 1040
## 371         Asus                                  ZenBook Flip
## 372         Acer                                      Aspire 3
## 373         Asus                                     Rog Strix
## 374       Lenovo                             IdeaPad 110-17ACL
## 375         Dell                                 Inspiron 5379
## 376           HP 15-bw003nv (A9-Series-9420/4GB/256GB/FHD/W10)
## 377       Lenovo                                      Yoga 11e
## 378         Dell                                 Inspiron 3552
## 379         Asus                               VivoBook E403NA
## 380         Acer                                      Aspire 7
## 381           HP                                Omen 17-w212nv
## 382       Lenovo         V310-15ISK (i3-6006U/4GB/128GB/FHD/No
## 383         Asus                                     ROG Strix
## 384       Lenovo                            IdeaPad 720S-14IKB
## 385         Asus                                  Zenbook Flip
## 386       Lenovo                                   Thinkpad X1
## 387       Lenovo                            Ideapad 510S-13IKB
## 388         Dell                                Precision 3510
## 389         Dell                                Precision 5520
## 390       Lenovo                                   ThinkPad X1
## 391         Asus                            Rog GL753VD-GC042T
## 392         Asus                            Rog GL753VE-GC070T
## 393         Acer                                      Aspire 5
## 394          MSI                                 Leopard GP72M
## 395         Dell                                 Inspiron 5567
## 396           HP          15-BW004nv (A9-9420/4GB/256GB/Radeon
## 397       Lenovo                                 ThinkPad E580
## 398       Lenovo                                 ThinkPad L470
## 399         Dell                               Precision M5520
## 400       Lenovo                                   Thinkpad X1
## 401       Lenovo                             IdeaPad 320-15IAP
## 402         Asus            FX753VD-GC461T (i7-7700HQ/16GB/1TB
## 403       Lenovo                                 ThinkPad E580
## 404         Acer                                      Aspire 7
## 405          MSI                                    GE73VR 7RF
## 406         Asus                                     Zenbook 3
## 407      Toshiba                             Portege Z30-C-16P
## 408         Dell                                 Latitude 7480
## 409       Lenovo                             IdeaPad 320-15ISK
## 410       Lenovo                                Lenovo IdeaPad
## 411       Lenovo                                  ThinkPad P51
## 412       Lenovo                                Thinkpad T470p
## 413           HP           15-BS028nv (i3-6006U/4GB/1TB/Radeon
## 414         Acer                                     Aspire R7
## 415         Asus                                  ZenBook Flip
## 416         Dell                                 Inspiron 3567
## 417         Dell                                 Latitude 3380
## 418           HP                                EliteBook 1040
## 419         Dell                                 Inspiron 3567
## 420       Lenovo                                 ThinkPad E480
## 421       Lenovo                                Yoga 720-15IKB
## 422        Chuwi                                  LapBook 12.3
## 423           HP                                   ProBook 650
## 424         Asus        X542UQ-DM117 (i3-7100U/8GB/1TB/GeForce
## 425         Dell                                  Alienware 17
## 426         Dell                                 Inspiron 7577
## 427         Dell                                 Inspiron 5570
## 428         Dell                                 Latitude 5480
## 429           HP                                Omen 17-w207nv
## 430     Mediacom                                 FlexBook Edge
## 431      Samsung                                  Chromebook 3
## 432       Lenovo                                   Thinkpad 13
## 433       Lenovo                            IdeaPad 320s-14IKB
## 434       Lenovo                                 Thinkpad T570
## 435       Lenovo                                  Thinkpad P51
## 436         Asus                                     Rog Strix
## 437           HP              15-ra044nv (N3060/4GB/500GB/W10)
## 438       Google                               Pixelbook (Core
## 439       Lenovo                                ThinkPad T470s
## 440         Asus                                  VivoBook Max
## 441       Lenovo                             IdeaPad 320-15AST
## 442         Dell                                 Inspiron 5570
## 443       Lenovo                                 ThinkPad X270
## 444       Lenovo                             IdeaPad 320-15IAP
## 445           HP                               Omen 15-AX205na
## 446         Dell                                 Latitude 5480
## 447         Acer                                Aspire ES1-572
## 448         Dell                                Precision 3520
## 449          MSI                               GV62 7RD-1686NL
## 450    Microsoft                                Surface Laptop
## 451           HP           15-bs024nv (i5-7200U/8GB/128GB/W10)
## 452         Dell                                Precision 3520
## 453           HP                                   ProBook 650
## 454       Lenovo                                 ThinkPad T470
## 455         Dell                                 Inspiron 5570
## 456         Dell                                 Inspiron 3168
## 457         Dell                                  Alienware 17
## 458    Microsoft                                Surface Laptop
## 459    Microsoft                                Surface Laptop
## 460           HP           17-BS092ND (i3-6006U/8GB/256GB/W10)
## 461         Acer                                Aspire E5-576G
## 462         Acer                                  TravelMate B
## 463         Asus                              Pro P2540UA-AB51
## 464       Lenovo                            IdeaPad 510s-14IKB
## 465       Lenovo                                  Thinkpad P51
## 466         Asus          X541NA-PD1003Y (N4200/4GB/500GB/W10)
## 467         Acer                                      Aspire 5
## 468         Dell                                 Inspiron 5570
## 469           HP                               Omen 17-an006nv
## 470       Lenovo                                Thinkpad T460s
## 471           HP                                  Spectre x360
## 472           HP                                     ZBook 15u
## 473       Google                               Pixelbook (Core
## 474         Dell                                 Latitude 7390
## 475         Asus                                   ZenBook Pro
## 476         Dell                                Latitude E5470
## 477         Dell                               Precision M5520
## 478       Lenovo                                 Thinkpad T470
## 479         Dell                                 Inspiron 3576
## 480      Toshiba                             Portege X30-D-10J
## 481         Dell                                 Inspiron 7570
## 482         Dell                                   Vostro 3568
## 483           HP                                   ProBook 430
## 484        Chuwi                                  Lapbook 15,6
## 485       Lenovo                                 ThinkPad E570
## 486       Lenovo                                 ThinkPad E480
## 487         Dell                                Precision 3520
## 488         Dell                                        XPS 15
## 489       Lenovo                                 Thinkpad X270
## 490         Asus                               Zenbook UX390UA
## 491       Lenovo                                 Thinkpad E570
## 492      Toshiba                             Portege X30-D-10L
## 493         Asus                                  VivoBook Pro
## 494         Acer                                      Aspire 5
## 495         Asus                              Rog G752VL-UH71T
## 496       Lenovo                                 Thinkpad X260
## 497       Lenovo                            Ideapad 520-15IKBR
## 498           HP                                 EliteBook 840
## 499       Lenovo                                   ThinkPad 13
## 500       Lenovo                                 ThinkPad L570
## 501         Asus                               VivoBook E201NA
## 502           HP         15-BS026nv (i5-7200U/8GB/256GB/Radeon
## 503       Lenovo                                Yoga 920-13IKB
## 504       Lenovo                             IdeaPad 320-14IAP
## 505       Lenovo                                Chromebook N23
## 506       Lenovo                                   ThinkPad 13
## 507         Asus                        ZenBook UX510UX-CN211T
## 508         Acer                          Aspire A515-51G-59QF
## 509           HP                               Envy 13-AB002nv
## 510       Lenovo                            Legion Y520-15IKBN
## 511         Dell                                        XPS 13
## 512         Acer                               Aspire A515-51G
## 513         Dell                                   Vostro 5568
## 514         Dell                                 Inspiron 5570
## 515       Xiaomi                                   Mi Notebook
## 516         Asus                                  VivoBook E12
## 517           HP             15-bs190od (i5-8250U/4GB/1TB/W10)
## 518         Asus                                  ROG Zephyrus
## 519           HP                                   Probook 450
## 520         Asus            FX753VE-GC155T (i7-7700HQ/16GB/1TB
## 521       Lenovo                             Legion Y720-15IKB
## 522           HP                                  Spectre X360
## 523         Dell                                 Latitude 5480
## 524           HP                                   ProBook 440
## 525         Dell                                 Inspiron 5770
## 526       Lenovo                                 ThinkPad L470
## 527       Lenovo                             IdeaPad 320-15IKB
## 528       Lenovo                             IdeaPad 320-15ISK
## 529         Dell                                 Inspiron 3567
## 530         Dell                                 Latitude 5580
## 531         Dell                                  Alienware 17
## 532      Toshiba                                 Satellite Pro
## 533         Asus                        Zenbook UX510UW-FI095T
## 534     Mediacom                                SmartBook Edge
## 535         Asus                                     ROG Strix
## 536         Dell                                 Latitude 5580
## 537         Dell                                 Inspiron 5570
## 538           HP                                        250 G6
## 539           HP                               Omen 15-ce006nv
## 540       Lenovo                                 Thinkpad E470
## 541         Dell                                        XPS 13
## 542         Dell                                   Vostro 5468
## 543           HP                               Envy 13-AB020nr
## 544         Acer                                      Aspire 7
## 545         Asus                        VivoBook X540YA-XX519T
## 546           HP                                   ProBook 450
## 547       Lenovo                                 ThinkPad E470
## 548       Lenovo           V310-15ISK (i5-6200U/4GB/1TB/FHD/No
## 549           HP                                        250 G6
## 550       Lenovo                                 ThinkPad T570
## 551       Lenovo                             IdeaPad 320-15ISK
## 552         Dell                                 Latitude 5580
## 553         Dell                                  Alienware 17
## 554           HP              17-X047na (i3-6006U/8GB/1TB/W10)
## 555           HP                                   ProBook 470
## 556         Asus          A541NA-GO342 (N3350/4GB/500GB/Linux)
## 557     Mediacom                                 SmartBook 130
## 558       Lenovo                             IdeaPad 320-17IKB
## 559           HP        15-bw007nv (A10-9620P/6GB/128GB/Radeon
## 560         Dell                                   Vostro 3568
## 561         Acer                                 Spin SP111-31
## 562       Lenovo       V330-15IKB (i3-7130U/4GB/128GB/FHD/W10)
## 563           HP                                EliteBook 1030
## 564       Lenovo                                  Thinkpad P71
## 565         Asus             FX553VD-DM627T (i5-7300HQ/8GB/1TB
## 566         Dell                                        XPS 13
## 567         Dell                                 Latitude 5580
## 568      Fujitsu                                 Lifebook A557
## 569       Lenovo                             IdeaPad 320-15IAP
## 570       Lenovo                                 ThinkPad L470
## 571           HP                                      ZBook 17
## 572           HP                14-am079na (N3710/8GB/2TB/W10)
## 573           HP          15-cd005nv (A9-9420/6GB/256GB/Radeon
## 574       Lenovo                                 Thinkpad E570
## 575       Lenovo       V330-15IKB (i5-8250U/4GB/500GB/FHD/W10)
## 576     Mediacom                                 SmartBook 141
## 577      Toshiba                               Tecra X40-D-10H
## 578       Lenovo                            IdeaPad Y910-17ISK
## 579          MSI                                  GT73VR Titan
## 580         Dell                                 Inspiron 3567
## 581     Mediacom                                SmartBook Edge
## 582         Dell                                 Latitude 5580
## 583           HP                                   ProBook 430
## 584         Dell                                 Latitude 5580
## 585         Dell                                 Chromebook 11
## 586          MSI                                     GT80S 6QE
## 587           HP                               Omen 17-AN010nv
## 588       Lenovo                                Thinkpad T460s
## 589       Lenovo                            Ideapad 320-15IKBR
## 590         Asus                                     ROG Strix
## 591         Asus         TP501UA-CJ131T (i5-7200U/8GB/1TB/W10)
## 592       Lenovo                             IdeaPad 320-15ABR
## 593         Dell                                 Inspiron 3179
## 594      Samsung                              Notebook Odyssey
## 595       Lenovo         V320-17ISK (i3-6006U/4GB/500GB/FHD/No
## 596       Lenovo                             IdeaPad 110-15ISK
## 597       Lenovo                                 ThinkPad Yoga
## 598       Lenovo                                Thinkpad T470p
## 599         Dell                                 Latitude 5289
## 600         Dell                                Precision 3520
## 601           HP                                 EliteBook 850
## 602           HP                                   ProBook 450
## 603         Acer                                      Aspire 1
## 604          MSI                                    Laptop MSI
## 605         Dell                                   Vostro 3568
## 606          MSI                                    GS63VR 7RF
## 607      Toshiba                               Tecra Z50-C-144
## 608       Lenovo                             IdeaPad 310-15IKB
## 609       Lenovo                                Yoga 720-15IKB
## 610         Acer                           Swift SF114-31-P5HY
## 611       Lenovo                                  Thinkpad P51
## 612         Dell                                 Inspiron 7559
## 613         Dell                                   Vostro 3568
## 614         Dell                                 Inspiron 3567
## 615         Dell                                 Latitude 5580
## 616         Asus             FX753VD-GC007T (i7-7700HQ/8GB/1TB
## 617         Dell                                   Vostro 3568
## 618           HP                                 EliteBook 850
## 619          MSI                                    GT62VR 7RE
## 620         Acer          CB5-132T-C9KK (N3160/4GB/32GB/Chrome
## 621           HP                                   ProBook 650
## 622       Lenovo                                 ThinkPad T470
## 623         Dell                                 Inspiron 5570
## 624      Fujitsu                                 LifeBook A557
## 625           HP                                 EliteBook 850
## 626       Lenovo                             IdeaPad 320-15IKB
## 627     Mediacom                                 SmartBook 140
## 628       Lenovo                            IdeaPad 320-15IKBN
## 629         Asus     Q304UA-BHI5T11 (i5-7200U/6GB/1TB/FHD/W10)
## 630         Dell                                        XPS 15
## 631         Asus                                     ZenBook 3
## 632         Dell                                 Inspiron 7567
## 633       Lenovo       V330-15IKB (i5-8250U/4GB/256GB/FHD/W10)
## 634       Lenovo                             Ideapad 320-15ISK
## 635         Asus             X541NA-GO414T (N3350/8GB/1TB/W10)
## 636         Asus                                  VivoBook Pro
## 637         Dell                                        XPS 13
## 638       Lenovo                            IdeaPad 100S-14IBR
## 639       Lenovo                                 Thinkpad Yoga
## 640         Dell                                        XPS 15
## 641       Lenovo                            Legion Y520-15IKBN
## 642           HP              17-AK091ND (A9-9420/8GB/1TB/W10)
## 643       Lenovo                                   ThinkPad X1
## 644         Asus                             ROG GL553VE-FY022
## 645         Acer                                Extensa EX2540
## 646       Lenovo                            IdeaPad 100S-14IBR
## 647         Acer                                       Swift 3
## 648        Razer                                     Blade Pro
## 649      Toshiba                             Portege Z30-C-16J
## 650       Lenovo                                 Thinkpad X270
## 651         Asus                                    ROG G701VI
## 652         Acer      A715-71G-59DH (i5-7300HQ/8GB/1TB/GeForce
## 653         Dell                                        XPS 13
## 654          MSI                                    GL62M 7REX
## 655           HP                                        250 G6
## 656      Toshiba                               Tecra A50-D-11M
## 657         Dell                                 Inspiron 5570
## 658         Dell                                 Inspiron 5570
## 659       Lenovo                            IdeaPad Y700-15ISK
## 660         Dell                                  Alienware 17
## 661         Dell                                Latitude E7470
## 662       Lenovo                             Ideapad 320-15IAP
## 663       Lenovo                             IdeaPad 320-15ISK
## 664           HP           15-ay047nv (i3-6006U/6GB/1TB/Radeon
## 665          MSI                                GP72VR Leopard
## 666      Toshiba                                 Satellite Pro
## 667         Dell                                 Latitude 3580
## 668           HP           15-bs012nv (i7-7500U/8GB/1TB/Radeon
## 669      Toshiba                               Tecra Z50-D-10E
## 670         Acer                                      Aspire 3
## 671    Microsoft                                Surface Laptop
## 672       Lenovo                  V310-15ISK (i5-7200U/8GB/1TB
## 673       Lenovo                                Yoga 720-13IKB
## 674       Lenovo                             IdeaPad 320-15AST
## 675           HP                                 Pavilion X360
## 676          MSI                                     GP62 7RDX
## 677         Asus                                     Zenbook 3
## 678           HP                               Chromebook X360
## 679           LG                                   Gram 15Z975
## 680         Acer                               Aspire VX5-591G
## 681          MSI                                     GV62M 7RD
## 682         Asus           L502NA-GO052T (N3350/4GB/128GB/W10)
## 683         Dell                                  Alienware 15
## 684           HP                                 17-bs000nv I3
## 685       Lenovo                                      Yoga 730
## 686         Dell                                  Alienware 15
## 687           HP                                        250 G6
## 688         Dell                                 Inspiron 3567
## 689           HP           17-Y002nv (A10-9600P/6GB/2TB/Radeon
## 690       Lenovo              V110-15ISK (3855U/4GB/500GB/W10)
## 691         Acer                                 Chromebook 14
## 692       Lenovo                            IdeaPad 520s-14IKB
## 693           HP                                      ZBook 17
## 694       Lenovo                                   ThinkPad X1
## 695      Toshiba                                 Satellite Pro
## 696         Acer                             TravelMate B117-M
## 697       Lenovo                                Yoga 910-13IKB
## 698         Asus                               Chromebook Flip
## 699      Toshiba                            Portege Z30T-C-133
## 700           HP         15-bs011nv (i7-7500U/4GB/500GB/Radeon
## 701         Dell                                 Inspiron 5577
## 702       Lenovo                             IdeaPad 320-15AST
## 703       Lenovo                             IdeaPad 320-15ABR
## 704       Lenovo         V310-15IKB (i5-7200U/4GB/1TB/FHD/W10)
## 705       Lenovo             V310-15ISK (i3-6006U/4GB/500GB/No
## 706         Dell                                   Vostro 5568
## 707         Acer                                        Spin 5
## 708       Lenovo                                 ThinkPad P51s
## 709       Lenovo                                Thinkpad T460p
## 710           HP          17-ak002nv (A10-9620P/6GB/2TB/Radeon
## 711       Lenovo                            Legion Y520-15IKBN
## 712         Dell                                 Latitude 5480
## 713         Dell                                   Vostro 5568
## 714         Asus                               VivoBook E403NA
## 715         Dell                                 Latitude 5580
## 716       Lenovo                                 Thinkpad E470
## 717         Dell                                 Latitude 5580
## 718       Lenovo             110-15ACL (A6-7310/4GB/500GB/W10)
## 719     Mediacom                                 Smartbook 142
## 720           HP                                   ProBook 470
## 721       Lenovo                                   ThinkPad X1
## 722           HP                                 Pavilion X360
## 723       Lenovo                                ThinkPad T470s
## 724         Dell                                  Alienware 17
## 725          MSI                                    GL72M 7REX
## 726       Lenovo               V310-15IKB (i5-7200U/4GB/1TB/No
## 727         Dell                                 Inspiron 5570
## 728         Dell                                 Inspiron 5378
## 729         Dell                                 Inspiron 5567
## 730           HP            15-BW037na (A9-9420/4GB/1TB/Radeon
## 731         Acer                                   Predator 17
## 732         Dell                                 Inspiron 3567
## 733           HP                   15-BW091ND (A9-9420/6GB/1TB
## 734         Acer                           Extensa EX2540-58KR
## 735       Lenovo                                   ThinkPad 13
## 736       Lenovo         V310-15IKB (i7-7500U/4GB/1TB/FHD/W10)
## 737           HP                                      ZBook 15
## 738         Dell                                 Inspiron 5379
## 739          MSI                                    GS63VR 7RF
## 740         Acer                                Aspire ES1-572
## 741         Dell                                 Inspiron 7560
## 742         Dell                                   Vostro 3568
## 743      Toshiba                               Tecra X40-D-10G
## 744       Lenovo                                        Flex 5
## 745       Lenovo                                 Thinkpad P51s
## 746         Acer                                 Chromebook 14
## 747      Samsung                                    Notebook 9
## 748           HP                                        250 G6
## 749         Dell                                 Latitude 5480
## 750           HP                                      Zbook 17
## 751       Lenovo                     N23 (N3060/4GB/128GB/W10)
## 752           HP                                 EliteBook 850
## 753         Asus      X550VX-XX015D (i5-6300HQ/4GB/1TB/GeForce
## 754       Lenovo                                 Thinkpad T460
## 755         Asus                           Pro P2540UA-XO0192R
## 756       Lenovo                                Yoga 900-13ISK
## 757           HP                 15-cb003na (i5-7300HQ/8GB/1TB
## 758           HP                                      ZBook 15
## 759         Dell                                  Alienware 17
## 760         Acer                                      Aspire 3
## 761       Lenovo                            Legion Y520-15IKBN
## 762         Dell                                 Latitude 7280
## 763       Google                               Pixelbook (Core
## 764         Asus                          Zenbook UX330UA-AH5Q
## 765         Dell                                 Latitude 3380
## 766         Acer                             TravelMate P238-M
## 767         Asus           X751NV-TY001 (N4200/4GB/1TB/GeForce
## 768         Dell                                 Inspiron 7559
## 769      Samsung                                    Notebook 9
## 770         Acer                                Aspire A315-31
## 771         Dell                                 Inspiron 5567
## 772      Samsung                                    Notebook 9
## 773      Toshiba                               Tecra A40-C-1E5
## 774         Dell                                 Inspiron 7567
## 775           HP                                 EliteBook 820
## 776         Asus     Q524UQ-BHI7T15 (i7-7500U/12GB/2TB/GeForce
## 777       Lenovo                                  Thinkpad P50
## 778         Acer                                       Swift 3
## 779        Razer                                     Blade Pro
## 780         Asus                                  Vivobook Max
## 781         Dell                                  Alienware 17
## 782         Asus                             Rog G752VS-BA171T
## 783      Toshiba                               Tecra Z40-C-161
## 784       Lenovo                             IdeaPad 110-15IBR
## 785       Lenovo                                ThinkPad T470s
## 786          MSI                                    GS43VR 7RE
## 787          MSI                      GL62M (i5-7300HQ/8GB/1TB
## 788       Lenovo                            Legion Y520-15IKBN
## 789         Acer                               Predator G9-793
## 790         Dell                                 Inspiron 7567
## 791         Asus             FX502VM-DM560T (i7-7700HQ/8GB/1TB
## 792         Vero                     K146 (N3350/4GB/32GB/W10)
## 793       Lenovo                                 ThinkPad Yoga
## 794       Lenovo                                Yoga 510-15IKB
## 795        Apple                                   MacBook 12"
## 796       Lenovo                                   ThinkPad X1
## 797         Asus              R417NA-RS01 (N3350/4GB/32GB/W10)
## 798         Dell                                 Latitude 3580
## 799       Lenovo                                Yoga 910-13IKB
## 800         Dell                                   Vostro 5568
## 801           HP                                      ZBook 17
## 802         Asus                              Pro P2540UA-XS51
## 803         Dell                                        XPS 13
## 804         Dell                                        XPS 15
## 805         Dell                                 Latitude 3180
## 806           HP                                 EliteBook 820
## 807      Toshiba                                 Satellite Pro
## 808           HP            15-ba043na (A12-9700P/8GB/2TB/W10)
## 809         Dell                                 Inspiron 7567
## 810       Lenovo                             IdeaPad 310-15IKB
## 811           HP                               Omen 17-an012dx
## 812          MSI                                   GE72MVR 7RG
## 813      Samsung                                    Notebook 9
## 814         Dell                                   Vostro 5568
## 815         Dell                                   Vostro 3568
## 816       Lenovo                                Thinkpad T470s
## 817        Razer                                 Blade Stealth
## 818           HP                                 Chromebook 11
## 819         Dell                                  Alienware 17
## 820         Dell                                 Latitude 3480
## 821       Lenovo           V110-15ISK (i3-6006U/4GB/500GB/W10)
## 822      Toshiba                               Tecra X40-D-10Z
## 823       Lenovo                                   Thinkpad X1
## 824          MSI                                     GL62M 7RD
## 825       Lenovo                                   ThinkPad X1
## 826      Toshiba                                 Satellite Pro
## 827         Asus                                  ZenBook Flip
## 828         Dell                                 Latitude 3480
## 829         Acer                                 Chromebook 11
## 830         Acer                                       Swift 3
## 831        Razer                                     Blade Pro
## 832       Lenovo                                   Thinkpad X1
## 833         Asus                                  VivoBook Max
## 834       Lenovo                                 Thinkpad T460
## 835       Lenovo                                ThinkPad T470s
## 836         Dell                                  Alienware 15
## 837         Asus                            Rog GL702VS-BA023T
## 838      Toshiba                                 Satellite Pro
## 839       Lenovo                             N42-20 Chromebook
## 840         Asus    R558UA-DM966T (i5-7200U/8GB/128GB/FHD/W10)
## 841         Asus                            Rog GL702VM-GC017T
## 842         Dell                                  Alienware 17
## 843           HP                                   ProBook 470
## 844         Dell                                   Vostro 3568
## 845           HP                                 EliteBook 840
## 846         Dell                                   Vostro 3568
## 847           HP                               Chromebook X360
## 848         Asus                        ZenBook UX310UQ-GL026T
## 849           HP                                EliteBook x360
## 850           HP                                 EliteBook 840
## 851           HP                                        250 G6
## 852         Asus                              Rog GL502VM-DS74
## 853         Dell                                 Inspiron 5767
## 854       Lenovo                                ThinkPad T470p
## 855         Asus     K556UR-DM621T (i7-7500U/8GB/256GB/GeForce
## 856         Dell                                 Latitude 5580
## 857         Asus                    X541NA (N4200/4GB/1TB/W10)
## 858           HP                                EliteBook x360
## 859         Dell                                 Inspiron 5368
## 860       Lenovo                             IdeaPad 110-15ISK
## 861       Lenovo                                 ThinkPad E570
## 862           HP                                 EliteBook 850
## 863      Toshiba                             Portege X30-D-10X
## 864       Lenovo                            Legion Y520-15IKBN
## 865         Dell                                        XPS 13
## 866           HP                                   Probook 450
## 867      Toshiba                           Portégé Z30-C-188
## 868       Lenovo                                 ThinkPad Yoga
## 869         Acer TMX349-G2-M-50FS (i5-7200U/8GB/256GB/FHD/W10)
## 870         Dell                                Precision 3520
## 871       Lenovo                                 ThinkPad L570
## 872       Lenovo                             IdeaPad 110-15ISK
## 873      Toshiba                               Tecra A50-D-11D
## 874       Lenovo                                   Thinkpad 13
## 875      Samsung                                    Notebook 9
## 876         Dell                                 Latitude 7280
## 877         Asus            X541NA-GO121 (N4200/4GB/1TB/Linux)
## 878       Xiaomi                                   Mi Notebook
## 879         Dell                                   Vostro 5568
## 880           HP                                   ProBook 450
## 881           HP                                EliteBook x360
## 882           HP                                 Pavilion x360
## 883         Asus                               VivoBook L402NA
## 884       Lenovo                             IdeaPad 510-15ISK
## 885         Dell                                 Inspiron 3552
## 886           HP                                EliteBook x360
## 887         Dell                                   Vostro 3568
## 888         Asus                            Rog GL753VD-GC082T
## 889         Acer                          Chromebook C731-C78G
## 890       Lenovo                             IdeaPad 110-17ACL
## 891           HP                                   Probook 640
## 892           HP                                     Envy x360
## 893      Samsung                                    Notebook 9
## 894       Lenovo                                ThinkPad T470s
## 895          MSI                                GS73VR Stealth
## 896      Toshiba                             Portege X30-D-10V
## 897         Dell                                 Inspiron 7567
## 898           HP                                   ProBook 450
## 899         Dell                                   Vostro 3568
## 900         Dell                                 Latitude 5580
## 901         Dell                                        XPS 13
## 902         Asus               G701VO-IH74K (i7-6820HK/32GB/2x
## 903         Dell                                        XPS 13
## 904       Lenovo                                   ThinkPad X1
## 905       Lenovo                                 ThinkPad T570
## 906           LG                                   Gram 15Z970
## 907           HP                                 Elitebook 820
## 908         Acer                       Chromebook CB5-571-C1DZ
## 909       Lenovo                            IdeaPad Y700-15ISK
## 910           LG                                   Gram 14Z970
## 911         Dell                                 Latitude 5480
## 912           HP                               Elitebook Folio
## 913       Lenovo                             IdeaPad 510-15IKB
## 914           HP                                   ProBook 450
## 915         Acer                                 Aspire E5-575
## 916       Lenovo                                   ThinkPad 13
## 917           HP                                   Probook 430
## 918          MSI                                    GE72VR 6RF
## 919         Dell                                 Inspiron 7567
## 920          MSI                                     GL62M 7RD
## 921         Dell                                   Vostro 3568
## 922           HP                                 EliteBook 850
## 923           HP                               Envy 13-AB077cl
## 924      Toshiba                               Tecra Z50-C-140
## 925       Lenovo                                 ThinkPad Yoga
## 926         Dell                                 Latitude 3580
## 927       Lenovo                                 Thinkpad X270
## 928           HP                                   Probook 650
## 929         Dell                                   Vostro 3568
## 930           HP                                   ProBook 640
## 931       Lenovo                             IdeaPad 320-15IAP
## 932           HP                                 EliteBook 820
## 933           HP                                        250 G6
## 934       Lenovo                                Yoga 900-13ISK
## 935      Toshiba                               Tecra Z40-C-12X
## 936           HP                                 EliteBook 820
## 937         Dell                                   Vostro 3568
## 938          MSI                                 GP62M Leopard
## 939         Dell                                 Latitude 7480
## 940         Dell                                  Alienware 17
## 941           HP                                Omen 17-W006na
## 942         Asus          X751SV-TY001T (N3710/4GB/1TB/GeForce
## 943         Acer                            TravelMate P259-G2
## 944      Toshiba                               Tecra A50-C-1ZV
## 945       Lenovo                                Yoga 700-11ISK
## 946       Lenovo                            IdeaPad Y700-15ACZ
## 947         Dell                                 Latitude 7280
## 948       Lenovo                             IdeaPad 310-15IKB
## 949         Dell                                 Insprion 5767
## 950         Acer                                 Chromebook 14
## 951           HP                                  ZBook Studio
## 952         Dell                                 Latitude 7480
## 953      Toshiba                             Portege Z30-C-1CW
## 954         Asus                               Chromebook Flip
## 955       Lenovo                                 Thinkpad T460
## 956         Dell                                  Alienware 17
## 957         Dell                                        XPS 13
## 958           HP                                  ProBook x360
## 959         Dell                                        XPS 13
## 960         Acer                         Chromebook C738T-C2EJ
## 961      Toshiba                             Portege Z30-C-16Z
## 962       Lenovo                                 ThinkPad X270
## 963         Acer                           Aspire F5-573G-510L
## 964      Toshiba                            Portege X20W-D-10V
## 965           HP                                   ProBook 450
## 966         Dell                                 Inspiron 3567
## 967         Dell                                 Latitude 5580
## 968           HP                                   ProBook 450
## 969         Dell                                  Alienware 17
## 970       Lenovo                             IdeaPad 310-15IKB
## 971         Dell                                        XPS 13
## 972         Dell                                Latitude E7470
## 973         Dell                                  Alienware 17
## 974      Toshiba                               Tecra A40-C-1DF
## 975         Asus                                     Rog Strix
## 976           HP                                   Probook 450
## 977       Lenovo                                 ThinkPad T460
##               Category Screen.Size
## 1            Ultrabook       13.3"
## 2            Ultrabook       13.3"
## 3             Notebook       15.6"
## 4            Ultrabook       15.4"
## 5            Ultrabook       13.3"
## 6             Notebook       15.6"
## 7            Ultrabook       15.4"
## 8            Ultrabook       13.3"
## 9            Ultrabook       14.0"
## 10           Ultrabook       14.0"
## 11            Notebook       15.6"
## 12            Notebook       15.6"
## 13           Ultrabook       15.4"
## 14            Notebook       15.6"
## 15           Ultrabook       12.0"
## 16           Ultrabook       13.3"
## 17            Notebook       15.6"
## 18           Ultrabook       15.4"
## 19            Notebook       15.6"
## 20           Ultrabook       13.3"
## 21             Netbook       11.6"
## 22              Gaming       15.6"
## 23            Notebook       15.6"
## 24  2 in 1 Convertible       13.3"
## 25           Ultrabook       15.6"
## 26            Notebook       15.6"
## 27           Ultrabook       13.3"
## 28            Notebook       15.6"
## 29           Ultrabook       15.6"
## 30            Notebook       17.3"
## 31            Notebook       15.6"
## 32            Notebook       14.0"
## 33            Notebook       17.3"
## 34           Ultrabook       13.3"
## 35           Ultrabook       13.3"
## 36            Notebook       14.0"
## 37            Notebook       15.6"
## 38            Notebook       17.3"
## 39            Notebook       15.6"
## 40            Notebook       15.6"
## 41            Notebook       15.6"
## 42              Gaming       15.6"
## 43            Notebook       15.6"
## 44            Notebook       15.6"
## 45  2 in 1 Convertible       17.3"
## 46           Ultrabook       13.3"
## 47            Notebook       15.6"
## 48              Gaming       17.3"
## 49            Notebook       15.6"
## 50            Notebook       17.3"
## 51  2 in 1 Convertible       10.1"
## 52            Notebook       15.6"
## 53            Notebook       15.6"
## 54            Notebook       13.3"
## 55            Notebook       15.6"
## 56            Notebook       15.6"
## 57            Notebook       15.6"
## 58            Notebook       15.6"
## 59              Gaming       17.3"
## 60            Notebook       15.6"
## 61            Notebook       17.3"
## 62           Ultrabook       14.0"
## 63            Notebook       14.0"
## 64            Notebook       14.0"
## 65            Notebook       15.6"
## 66           Ultrabook       15.6"
## 67            Notebook       15.6"
## 68            Notebook       14.0"
## 69            Notebook       15.6"
## 70              Gaming       17.3"
## 71           Ultrabook       13.5"
## 72           Ultrabook       13.3"
## 73            Notebook       15.6"
## 74              Gaming       17.3"
## 75            Notebook       14.0"
## 76              Gaming       15.6"
## 77            Notebook       15.6"
## 78            Notebook       15.6"
## 79            Notebook       15.6"
## 80            Notebook       17.3"
## 81           Ultrabook       15.6"
## 82           Ultrabook       12.0"
## 83            Notebook       14.0"
## 84            Notebook       15.6"
## 85            Notebook       15.6"
## 86              Gaming       15.6"
## 87           Ultrabook       15.6"
## 88            Notebook       15.6"
## 89              Gaming       15.6"
## 90           Ultrabook       13.3"
## 91              Gaming       15.6"
## 92            Notebook       15.6"
## 93            Notebook       13.3"
## 94              Gaming       15.6"
## 95           Ultrabook       14.0"
## 96  2 in 1 Convertible       13.3"
## 97            Notebook       15.6"
## 98            Notebook       15.6"
## 99            Notebook       15.6"
## 100             Gaming       15.6"
## 101           Notebook       15.6"
## 102           Notebook       15.6"
## 103           Notebook       15.6"
## 104          Ultrabook       13.3"
## 105          Ultrabook       13.5"
## 106           Notebook       14.0"
## 107           Notebook       15.6"
## 108          Ultrabook       14.0"
## 109             Gaming       15.6"
## 110           Notebook       14.0"
## 111          Ultrabook       15.6"
## 112          Ultrabook       13.3"
## 113 2 in 1 Convertible       13.3"
## 114           Notebook       14.0"
## 115          Ultrabook       13.3"
## 116 2 in 1 Convertible       13.3"
## 117           Notebook       14.0"
## 118           Notebook       15.6"
## 119           Notebook       17.3"
## 120           Notebook       15.6"
## 121           Notebook       15.6"
## 122             Gaming       15.6"
## 123           Notebook       15.6"
## 124           Notebook       17.3"
## 125           Notebook       15.6"
## 126           Notebook       15.6"
## 127           Notebook       14.0"
## 128           Notebook       14.0"
## 129           Notebook       17.3"
## 130           Notebook       17.3"
## 131           Notebook       15.6"
## 132           Notebook       15.6"
## 133          Ultrabook       14.0"
## 134           Notebook       15.6"
## 135           Notebook       15.6"
## 136           Notebook       14.0"
## 137           Notebook       15.6"
## 138             Gaming       17.3"
## 139           Notebook       15.6"
## 140           Notebook       13.3"
## 141           Notebook       17.3"
## 142           Notebook       14.0"
## 143             Gaming       15.6"
## 144           Notebook       15.6"
## 145           Notebook       15.6"
## 146          Ultrabook       14.0"
## 147          Ultrabook       12.5"
## 148           Notebook       15.6"
## 149             Gaming       17.3"
## 150           Notebook       15.6"
## 151             Gaming       15.6"
## 152             Gaming       15.6"
## 153           Notebook       15.6"
## 154             Gaming       17.3"
## 155          Ultrabook       14.0"
## 156           Notebook       15.6"
## 157 2 in 1 Convertible       14.0"
## 158 2 in 1 Convertible       13.3"
## 159 2 in 1 Convertible       15.6"
## 160           Notebook       15.6"
## 161           Notebook       15.6"
## 162           Notebook       17.3"
## 163           Notebook       15.6"
## 164             Gaming       15.6"
## 165           Notebook       15.6"
## 166             Gaming       15.6"
## 167           Notebook       15.6"
## 168             Gaming       15.6"
## 169           Notebook       17.3"
## 170           Notebook       13.3"
## 171          Ultrabook       13.0"
## 172           Notebook       17.3"
## 173           Notebook       15.6"
## 174           Notebook       15.6"
## 175           Notebook       17.3"
## 176           Notebook       15.6"
## 177           Notebook       15.6"
## 178             Gaming       18.4"
## 179           Notebook       15.6"
## 180 2 in 1 Convertible       13.3"
## 181           Notebook       15.6"
## 182          Ultrabook       13.3"
## 183 2 in 1 Convertible       13.9"
## 184           Notebook       15.6"
## 185           Notebook       15.6"
## 186           Notebook       17.3"
## 187           Notebook       15.6"
## 188             Gaming       15.6"
## 189          Ultrabook       13.3"
## 190           Notebook       17.3"
## 191 2 in 1 Convertible       14.0"
## 192           Notebook       14.0"
## 193          Ultrabook       13.3"
## 194           Notebook       17.3"
## 195 2 in 1 Convertible       13.3"
## 196           Notebook       17.3"
## 197             Gaming       17.3"
## 198           Notebook       13.3"
## 199             Gaming       17.3"
## 200           Notebook       17.3"
## 201             Gaming       15.6"
## 202           Notebook       15.6"
## 203           Notebook       15.6"
## 204             Gaming       15.6"
## 205        Workstation       15.6"
## 206             Gaming       15.6"
## 207           Notebook       15.6"
## 208          Ultrabook       13.3"
## 209          Ultrabook       13.3"
## 210           Notebook       15.6"
## 211           Notebook       15.6"
## 212             Gaming       17.3"
## 213           Notebook       15.6"
## 214           Notebook       15.6"
## 215          Ultrabook       13.0"
## 216          Ultrabook       13.3"
## 217           Notebook       17.3"
## 218           Notebook       14.0"
## 219          Ultrabook       14.0"
## 220 2 in 1 Convertible       13.3"
## 221           Notebook       15.6"
## 222 2 in 1 Convertible       14.0"
## 223          Ultrabook       13.3"
## 224           Notebook       15.6"
## 225             Gaming       17.3"
## 226           Notebook       15.6"
## 227           Notebook       15.6"
## 228           Notebook       15.6"
## 229           Notebook       17.3"
## 230           Notebook       15.6"
## 231           Notebook       15.6"
## 232           Notebook       15.6"
## 233             Gaming       15.6"
## 234           Notebook       14.0"
## 235 2 in 1 Convertible       13.3"
## 236           Notebook       15.6"
## 237           Notebook       15.6"
## 238           Notebook       15.6"
## 239             Gaming       17.3"
## 240             Gaming       15.6"
## 241           Notebook       15.6"
## 242           Notebook       17.3"
## 243           Notebook       17.3"
## 244             Gaming       15.6"
## 245 2 in 1 Convertible       13.9"
## 246           Notebook       15.6"
## 247           Notebook       15.6"
## 248             Gaming       17.3"
## 249           Notebook       13.3"
## 250          Ultrabook       13.3"
## 251 2 in 1 Convertible       15.6"
## 252             Gaming       17.3"
## 253           Notebook       15.6"
## 254 2 in 1 Convertible       13.9"
## 255           Notebook       17.3"
## 256          Ultrabook       13.3"
## 257           Notebook       15.6"
## 258           Notebook       17.3"
## 259             Gaming       17.3"
## 260 2 in 1 Convertible       15.6"
## 261           Notebook       17.3"
## 262           Notebook       15.6"
## 263           Notebook       15.6"
## 264           Notebook       15.6"
## 265           Notebook       15.6"
## 266 2 in 1 Convertible       15.6"
## 267 2 in 1 Convertible       13.3"
## 268           Notebook       15.6"
## 269           Notebook       17.3"
## 270           Notebook       15.6"
## 271          Ultrabook       13.3"
## 272             Gaming       17.3"
## 273           Notebook       15.6"
## 274 2 in 1 Convertible       14.0"
## 275           Notebook       15.6"
## 276           Notebook       15.6"
## 277           Notebook       17.3"
## 278           Notebook       15.6"
## 279           Notebook       17.3"
## 280           Notebook       17.3"
## 281           Notebook       17.3"
## 282           Notebook       15.6"
## 283             Gaming       15.6"
## 284           Notebook       15.6"
## 285           Notebook       15.6"
## 286           Notebook       15.6"
## 287           Notebook       15.6"
## 288          Ultrabook       15.6"
## 289             Gaming       15.6"
## 290           Notebook       15.6"
## 291           Notebook       15.6"
## 292             Gaming       17.3"
## 293           Notebook       17.3"
## 294           Notebook       15.6"
## 295           Notebook       15.6"
## 296             Gaming       15.6"
## 297           Notebook       15.6"
## 298        Workstation       17.3"
## 299           Notebook       15.6"
## 300          Ultrabook       15.6"
## 301           Notebook       14.0"
## 302             Gaming       17.3"
## 303           Notebook       17.3"
## 304           Notebook       15.6"
## 305             Gaming       15.6"
## 306           Notebook       15.6"
## 307 2 in 1 Convertible       13.3"
## 308           Notebook       15.6"
## 309           Notebook       15.6"
## 310           Notebook       15.6"
## 311           Notebook       13.3"
## 312          Ultrabook       13.3"
## 313             Gaming       15.6"
## 314           Notebook       15.6"
## 315 2 in 1 Convertible       11.6"
## 316           Notebook       15.6"
## 317 2 in 1 Convertible       13.3"
## 318           Notebook       13.3"
## 319           Notebook       14.0"
## 320           Notebook       11.6"
## 321           Notebook       14.0"
## 322           Notebook       17.3"
## 323           Notebook       14.0"
## 324           Notebook       15.6"
## 325           Notebook       15.6"
## 326           Notebook       14.0"
## 327           Notebook       15.6"
## 328          Ultrabook       15.6"
## 329          Ultrabook       12.5"
## 330           Notebook       15.6"
## 331             Gaming       17.3"
## 332           Notebook       15.6"
## 333           Notebook       14.0"
## 334           Notebook       15.6"
## 335             Gaming       15.6"
## 336           Notebook       14.0"
## 337          Ultrabook       15.6"
## 338           Notebook       15.6"
## 339           Notebook       15.6"
## 340           Notebook       15.6"
## 341           Notebook       15.6"
## 342           Notebook       15.6"
## 343           Notebook       15.6"
## 344 2 in 1 Convertible       13.9"
## 345          Ultrabook       13.3"
## 346             Gaming       15.6"
## 347           Notebook       14.0"
## 348          Ultrabook       15.6"
## 349 2 in 1 Convertible       11.6"
## 350          Ultrabook       15.6"
## 351           Notebook       15.6"
## 352           Notebook       15.6"
## 353             Gaming       17.3"
## 354        Workstation       15.6"
## 355           Notebook       15.6"
## 356           Notebook       15.6"
## 357           Notebook       15.6"
## 358             Gaming       15.6"
## 359           Notebook       15.6"
## 360           Notebook       14.0"
## 361           Notebook       15.6"
## 362           Notebook       14.0"
## 363           Notebook       17.3"
## 364           Notebook       15.6"
## 365           Notebook       15.6"
## 366           Notebook       15.6"
## 367           Notebook       17.3"
## 368             Gaming       15.6"
## 369           Notebook       15.6"
## 370          Ultrabook       14.0"
## 371 2 in 1 Convertible       15.6"
## 372           Notebook       15.6"
## 373             Gaming       17.3"
## 374           Notebook       17.3"
## 375 2 in 1 Convertible       13.3"
## 376           Notebook       15.6"
## 377            Netbook       11.6"
## 378           Notebook       15.6"
## 379           Notebook       14.0"
## 380           Notebook       15.6"
## 381             Gaming       17.3"
## 382           Notebook       15.6"
## 383             Gaming       15.6"
## 384           Notebook       14.0"
## 385          Ultrabook       13.3"
## 386          Ultrabook       14.0"
## 387           Notebook       13.3"
## 388        Workstation       15.6"
## 389        Workstation       15.6"
## 390 2 in 1 Convertible       14.0"
## 391             Gaming       17.3"
## 392             Gaming       17.3"
## 393           Notebook       15.6"
## 394             Gaming       17.3"
## 395           Notebook       15.6"
## 396          Ultrabook       15.6"
## 397           Notebook       15.6"
## 398           Notebook       14.0"
## 399        Workstation       15.6"
## 400          Ultrabook       14.0"
## 401           Notebook       15.6"
## 402             Gaming       17.3"
## 403           Notebook       15.6"
## 404           Notebook       15.6"
## 405             Gaming       17.3"
## 406          Ultrabook       14.0"
## 407          Ultrabook       13.3"
## 408          Ultrabook       14.0"
## 409           Notebook       15.6"
## 410           Notebook       11.6"
## 411        Workstation       15.6"
## 412          Ultrabook       14.0"
## 413           Notebook       15.6"
## 414 2 in 1 Convertible       13.3"
## 415 2 in 1 Convertible       13.3"
## 416           Notebook       15.6"
## 417           Notebook       13.3"
## 418          Ultrabook       14.0"
## 419           Notebook       15.6"
## 420          Ultrabook       14.0"
## 421 2 in 1 Convertible       15.6"
## 422           Notebook       12.3"
## 423           Notebook       15.6"
## 424           Notebook       15.6"
## 425             Gaming       17.3"
## 426             Gaming       15.6"
## 427           Notebook       15.6"
## 428          Ultrabook       14.0"
## 429             Gaming       17.3"
## 430 2 in 1 Convertible       11.6"
## 431            Netbook       11.6"
## 432           Notebook       13.3"
## 433           Notebook       14.0"
## 434        Workstation       15.6"
## 435           Notebook       15.6"
## 436             Gaming       17.3"
## 437           Notebook       15.6"
## 438          Ultrabook       12.3"
## 439          Ultrabook       14.0"
## 440           Notebook       15.6"
## 441           Notebook       17.3"
## 442           Notebook       15.6"
## 443          Ultrabook       12.5"
## 444           Notebook       15.6"
## 445             Gaming       15.6"
## 446           Notebook       14.0"
## 447           Notebook       15.6"
## 448        Workstation       15.6"
## 449             Gaming       15.6"
## 450          Ultrabook       13.5"
## 451           Notebook       15.6"
## 452        Workstation       15.6"
## 453        Workstation       15.6"
## 454           Notebook       14.0"
## 455           Notebook       15.6"
## 456 2 in 1 Convertible       11.6"
## 457           Notebook       17.3"
## 458          Ultrabook       13.5"
## 459          Ultrabook       13.5"
## 460           Notebook       17.3"
## 461           Notebook       15.6"
## 462            Netbook       11.6"
## 463           Notebook       15.6"
## 464           Notebook       14.0"
## 465           Notebook       15.6"
## 466           Notebook       15.6"
## 467           Notebook       15.6"
## 468           Notebook       15.6"
## 469             Gaming       17.3"
## 470          Ultrabook       14.0"
## 471 2 in 1 Convertible       13.3"
## 472           Notebook       15.6"
## 473          Ultrabook       12.3"
## 474          Ultrabook       13.3"
## 475           Notebook       15.6"
## 476           Notebook       14.0"
## 477        Workstation       15.6"
## 478           Notebook       14.0"
## 479           Notebook       15.6"
## 480           Notebook       13.3"
## 481           Notebook       15.6"
## 482           Notebook       15.6"
## 483           Notebook       13.3"
## 484           Notebook       15.6"
## 485           Notebook       15.6"
## 486           Notebook       14.0"
## 487        Workstation       15.6"
## 488           Notebook       15.6"
## 489          Ultrabook       12.5"
## 490          Ultrabook       12.5"
## 491           Notebook       15.6"
## 492          Ultrabook       13.3"
## 493             Gaming       15.6"
## 494           Notebook       15.6"
## 495             Gaming       17.3"
## 496          Ultrabook       12.5"
## 497           Notebook       15.6"
## 498           Notebook       14.0"
## 499           Notebook       13.3"
## 500           Notebook       15.6"
## 501            Netbook       11.6"
## 502           Notebook       15.6"
## 503 2 in 1 Convertible       13.9"
## 504           Notebook       14.0"
## 505            Netbook       11.6"
## 506           Notebook       13.3"
## 507           Notebook       15.6"
## 508           Notebook       15.6"
## 509          Ultrabook       13.3"
## 510             Gaming       15.6"
## 511          Ultrabook       13.3"
## 512           Notebook       15.6"
## 513           Notebook       15.6"
## 514           Notebook       15.6"
## 515           Notebook       15.6"
## 516            Netbook       11.6"
## 517           Notebook       15.6"
## 518             Gaming       15.6"
## 519           Notebook       15.6"
## 520             Gaming       17.3"
## 521             Gaming       15.6"
## 522          Ultrabook       13.3"
## 523           Notebook       14.0"
## 524           Notebook       15.6"
## 525           Notebook       17.3"
## 526           Notebook       14.0"
## 527           Notebook       15.6"
## 528           Notebook       15.6"
## 529           Notebook       15.6"
## 530           Notebook       15.6"
## 531             Gaming       17.3"
## 532           Notebook       15.6"
## 533           Notebook       15.6"
## 534           Notebook       13.3"
## 535             Gaming       15.6"
## 536           Notebook       15.6"
## 537           Notebook       15.6"
## 538           Notebook       15.6"
## 539             Gaming       17.3"
## 540           Notebook       14.0"
## 541          Ultrabook       13.3"
## 542           Notebook       14.0"
## 543          Ultrabook       13.3"
## 544             Gaming       15.6"
## 545           Notebook       15.6"
## 546           Notebook       15.6"
## 547           Notebook       14.0"
## 548           Notebook       15.6"
## 549           Notebook       15.6"
## 550           Notebook       15.6"
## 551           Notebook       15.6"
## 552           Notebook       15.6"
## 553             Gaming       17.3"
## 554           Notebook       17.3"
## 555           Notebook       17.3"
## 556           Notebook       15.6"
## 557           Notebook       13.3"
## 558           Notebook       17.3"
## 559           Notebook       15.6"
## 560           Notebook       15.6"
## 561 2 in 1 Convertible       11.6"
## 562           Notebook       15.6"
## 563          Ultrabook       13.3"
## 564           Notebook       17.3"
## 565           Notebook       15.6"
## 566          Ultrabook       13.3"
## 567           Notebook       15.6"
## 568           Notebook       15.6"
## 569           Notebook       15.6"
## 570           Notebook       14.0"
## 571        Workstation       17.3"
## 572           Notebook       14.0"
## 573           Notebook       15.6"
## 574           Notebook       15.6"
## 575           Notebook       15.6"
## 576           Notebook       14.0"
## 577          Ultrabook       14.0"
## 578             Gaming       17.3"
## 579             Gaming       17.3"
## 580           Notebook       15.6"
## 581           Notebook       14.0"
## 582           Notebook       15.6"
## 583           Notebook       13.3"
## 584           Notebook       15.6"
## 585            Netbook       11.6"
## 586             Gaming       17.3"
## 587             Gaming       17.3"
## 588          Ultrabook       14.0"
## 589           Notebook       15.6"
## 590             Gaming       17.3"
## 591 2 in 1 Convertible       15.6"
## 592           Notebook       15.6"
## 593 2 in 1 Convertible       11.6"
## 594           Notebook       15.6"
## 595           Notebook       17.3"
## 596           Notebook       15.6"
## 597 2 in 1 Convertible       13.3"
## 598           Notebook       14.0"
## 599 2 in 1 Convertible       12.5"
## 600        Workstation       15.6"
## 601           Notebook       15.6"
## 602           Notebook       15.6"
## 603           Notebook       14.0"
## 604             Gaming       17.3"
## 605           Notebook       15.6"
## 606             Gaming       15.6"
## 607           Notebook       15.6"
## 608           Notebook       15.6"
## 609 2 in 1 Convertible       15.6"
## 610           Notebook       14.0"
## 611           Notebook       15.6"
## 612             Gaming       15.6"
## 613           Notebook       15.6"
## 614           Notebook       15.6"
## 615           Notebook       15.6"
## 616             Gaming       17.3"
## 617           Notebook       15.6"
## 618          Ultrabook       15.6"
## 619             Gaming       15.6"
## 620 2 in 1 Convertible       11.6"
## 621           Notebook       14.0"
## 622           Notebook       14.0"
## 623           Notebook       15.6"
## 624           Notebook       15.6"
## 625           Notebook       15.6"
## 626           Notebook       15.6"
## 627           Notebook       14.0"
## 628           Notebook       15.6"
## 629 2 in 1 Convertible       13.3"
## 630           Notebook       15.6"
## 631          Ultrabook       14.0"
## 632             Gaming       15.6"
## 633           Notebook       15.6"
## 634           Notebook       15.6"
## 635           Notebook       15.6"
## 636           Notebook       15.6"
## 637          Ultrabook       13.3"
## 638           Notebook       14.0"
## 639 2 in 1 Convertible       13.3"
## 640           Notebook       15.6"
## 641             Gaming       15.6"
## 642           Notebook       17.0"
## 643          Ultrabook       14.0"
## 644             Gaming       15.6"
## 645           Notebook       15.6"
## 646           Notebook       14.0"
## 647          Ultrabook       14.0"
## 648             Gaming       14.0"
## 649           Notebook       13.3"
## 650          Ultrabook       12.5"
## 651             Gaming       17.3"
## 652             Gaming       15.6"
## 653          Ultrabook       13.3"
## 654             Gaming       15.6"
## 655           Notebook       15.6"
## 656           Notebook       15.6"
## 657           Notebook       15.6"
## 658           Notebook       15.6"
## 659             Gaming       15.6"
## 660             Gaming       17.3"
## 661           Notebook       14.0"
## 662           Notebook       15.6"
## 663           Notebook       15.6"
## 664           Notebook       15.6"
## 665             Gaming       17.3"
## 666           Notebook       15.6"
## 667           Notebook       15.6"
## 668           Notebook       15.6"
## 669           Notebook       15.6"
## 670           Notebook       15.6"
## 671          Ultrabook       13.5"
## 672           Notebook       15.6"
## 673 2 in 1 Convertible       13.3"
## 674           Notebook       15.6"
## 675 2 in 1 Convertible       14.0"
## 676             Gaming       15.6"
## 677          Ultrabook       14.0"
## 678 2 in 1 Convertible       11.6"
## 679          Ultrabook       15.6"
## 680             Gaming       15.6"
## 681             Gaming       15.6"
## 682           Notebook       15.6"
## 683             Gaming       15.6"
## 684           Notebook       17.3"
## 685 2 in 1 Convertible       13.3"
## 686             Gaming       15.6"
## 687           Notebook       15.6"
## 688           Notebook       15.6"
## 689           Notebook       17.3"
## 690           Notebook       15.6"
## 691           Notebook       14.0"
## 692           Notebook       14.0"
## 693        Workstation       17.3"
## 694 2 in 1 Convertible       14.0"
## 695           Notebook       13.3"
## 696            Netbook       11.6"
## 697 2 in 1 Convertible       14.0"
## 698 2 in 1 Convertible       12.5"
## 699          Ultrabook       13.3"
## 700           Notebook       15.6"
## 701             Gaming       15.6"
## 702           Notebook       15.6"
## 703           Notebook       15.6"
## 704           Notebook       15.6"
## 705           Notebook       15.6"
## 706           Notebook       15.6"
## 707 2 in 1 Convertible       13.3"
## 708        Workstation       15.6"
## 709           Notebook       14.0"
## 710           Notebook       17.3"
## 711             Gaming       15.6"
## 712           Notebook       14.0"
## 713           Notebook       15.6"
## 714           Notebook       14.0"
## 715           Notebook       15.6"
## 716           Notebook       14.0"
## 717           Notebook       15.6"
## 718           Notebook       15.6"
## 719           Notebook       14.0"
## 720           Notebook       17.3"
## 721          Ultrabook       14.0"
## 722 2 in 1 Convertible       13.3"
## 723          Ultrabook       14.0"
## 724             Gaming       17.3"
## 725             Gaming       17.3"
## 726           Notebook       15.6"
## 727           Notebook       15.6"
## 728 2 in 1 Convertible       13.3"
## 729           Notebook       15.6"
## 730           Notebook       15.6"
## 731             Gaming       17.3"
## 732           Notebook       15.6"
## 733           Notebook       15.6"
## 734           Notebook       15.6"
## 735           Notebook       13.3"
## 736           Notebook       15.6"
## 737        Workstation       15.6"
## 738 2 in 1 Convertible       13.3"
## 739             Gaming       15.6"
## 740           Notebook       15.6"
## 741           Notebook       15.6"
## 742           Notebook       15.6"
## 743           Notebook       14.0"
## 744 2 in 1 Convertible       14.0"
## 745        Workstation       15.6"
## 746           Notebook       14.0"
## 747          Ultrabook       13.3"
## 748           Notebook       15.6"
## 749           Notebook       14.0"
## 750        Workstation       17.3"
## 751            Netbook       11.6"
## 752           Notebook       15.6"
## 753           Notebook       15.6"
## 754          Ultrabook       14.0"
## 755           Notebook       15.6"
## 756 2 in 1 Convertible       13.3"
## 757           Notebook       15.6"
## 758        Workstation       15.6"
## 759             Gaming       15.6"
## 760           Notebook       15.6"
## 761             Gaming       15.6"
## 762          Ultrabook       12.5"
## 763          Ultrabook       12.3"
## 764          Ultrabook       13.3"
## 765           Notebook       13.3"
## 766           Notebook       13.3"
## 767           Notebook       17.3"
## 768             Gaming       15.6"
## 769          Ultrabook       13.3"
## 770           Notebook       15.6"
## 771           Notebook       15.6"
## 772 2 in 1 Convertible       15.0"
## 773           Notebook       14.0"
## 774             Gaming       15.6"
## 775          Ultrabook       12.5"
## 776 2 in 1 Convertible       15.6"
## 777           Notebook       15.6"
## 778           Notebook       14.0"
## 779             Gaming       14.0"
## 780           Notebook       15.6"
## 781             Gaming       17.3"
## 782             Gaming       17.3"
## 783          Ultrabook       14.0"
## 784           Notebook       15.6"
## 785          Ultrabook       14.0"
## 786             Gaming       14.0"
## 787             Gaming       15.6"
## 788             Gaming       15.6"
## 789             Gaming       17.3"
## 790             Gaming       15.6"
## 791             Gaming       15.6"
## 792           Notebook       14.0"
## 793 2 in 1 Convertible       13.3"
## 794 2 in 1 Convertible       15.6"
## 795          Ultrabook       12.0"
## 796 2 in 1 Convertible       14.0"
## 797           Notebook       14.0"
## 798           Notebook       15.6"
## 799 2 in 1 Convertible       13.9"
## 800           Notebook       15.6"
## 801        Workstation       15.6"
## 802           Notebook       15.6"
## 803          Ultrabook       13.3"
## 804           Notebook       15.6"
## 805            Netbook       11.6"
## 806            Netbook       12.5"
## 807           Notebook       15.6"
## 808           Notebook       15.6"
## 809             Gaming       15.6"
## 810           Notebook       15.6"
## 811             Gaming       17.3"
## 812             Gaming       17.3"
## 813          Ultrabook       13.3"
## 814           Notebook       15.6"
## 815           Notebook       15.6"
## 816          Ultrabook       14.0"
## 817          Ultrabook       12.5"
## 818            Netbook       11.6"
## 819             Gaming       17.3"
## 820           Notebook       14.0"
## 821           Notebook       15.6"
## 822          Ultrabook       14.0"
## 823          Ultrabook       14.0"
## 824             Gaming       15.6"
## 825          Ultrabook       14.0"
## 826           Notebook       14.0"
## 827 2 in 1 Convertible       13.3"
## 828           Notebook       14.0"
## 829            Netbook       11.6"
## 830           Notebook       14.0"
## 831             Gaming       17.3"
## 832          Ultrabook       14.0"
## 833           Notebook       15.6"
## 834           Notebook       14.0"
## 835           Notebook       14.0"
## 836             Gaming       15.6"
## 837             Gaming       17.3"
## 838           Notebook       15.6"
## 839           Notebook       14.0"
## 840           Notebook       15.6"
## 841             Gaming       17.3"
## 842             Gaming       17.3"
## 843           Notebook       17.3"
## 844           Notebook       15.6"
## 845          Ultrabook       14.0"
## 846           Notebook       15.6"
## 847 2 in 1 Convertible       11.6"
## 848          Ultrabook       13.3"
## 849 2 in 1 Convertible       13.3"
## 850          Ultrabook       14.0"
## 851           Notebook       15.6"
## 852             Gaming       15.6"
## 853           Notebook       17.3"
## 854          Ultrabook       14.0"
## 855           Notebook       15.6"
## 856           Notebook       15.6"
## 857           Notebook       15.6"
## 858 2 in 1 Convertible       13.3"
## 859           Notebook       13.3"
## 860           Notebook       15.6"
## 861           Notebook       15.6"
## 862           Notebook       15.6"
## 863           Notebook       13.3"
## 864             Gaming       15.6"
## 865          Ultrabook       13.3"
## 866           Notebook       15.6"
## 867          Ultrabook       13.3"
## 868 2 in 1 Convertible       13.3"
## 869           Notebook       14.0"
## 870        Workstation       15.6"
## 871           Notebook       15.6"
## 872           Notebook       15.6"
## 873           Notebook       15.6"
## 874           Notebook       13.3"
## 875          Ultrabook       15.0"
## 876          Ultrabook       12.5"
## 877           Notebook       15.6"
## 878          Ultrabook       13.3"
## 879           Notebook       15.6"
## 880           Notebook       15.6"
## 881 2 in 1 Convertible       13.3"
## 882 2 in 1 Convertible       15.6"
## 883           Notebook       14.1"
## 884           Notebook       15.6"
## 885           Notebook       15.6"
## 886 2 in 1 Convertible       13.3"
## 887           Notebook       15.6"
## 888             Gaming       17.3"
## 889            Netbook       11.6"
## 890           Notebook       17.3"
## 891           Notebook       14.0"
## 892 2 in 1 Convertible       13.3"
## 893          Ultrabook       15.0"
## 894          Ultrabook       14.0"
## 895             Gaming       17.3"
## 896           Notebook       13.3"
## 897             Gaming       15.6"
## 898           Notebook       15.6"
## 899           Notebook       15.6"
## 900           Notebook       15.6"
## 901 2 in 1 Convertible       13.3"
## 902             Gaming       17.3"
## 903 2 in 1 Convertible       13.3"
## 904          Ultrabook       14.0"
## 905           Notebook       15.6"
## 906          Ultrabook       15.6"
## 907            Netbook       12.5"
## 908           Notebook       15.6"
## 909           Notebook       15.6"
## 910          Ultrabook       14.0"
## 911           Notebook       14.0"
## 912          Ultrabook       12.5"
## 913           Notebook       15.6"
## 914           Notebook       15.6"
## 915           Notebook       15.6"
## 916           Notebook       13.3"
## 917           Notebook       13.3"
## 918             Gaming       17.3"
## 919             Gaming       15.6"
## 920             Gaming       15.6"
## 921           Notebook       15.6"
## 922          Ultrabook       15.6"
## 923          Ultrabook       13.3"
## 924           Notebook       15.6"
## 925 2 in 1 Convertible       13.3"
## 926           Notebook       15.6"
## 927          Ultrabook       12.5"
## 928           Notebook       15.6"
## 929           Notebook       15.6"
## 930           Notebook       14.0"
## 931           Notebook       15.6"
## 932          Ultrabook       12.5"
## 933           Notebook       15.6"
## 934 2 in 1 Convertible       13.3"
## 935           Notebook       14.0"
## 936            Netbook       12.5"
## 937           Notebook       15.6"
## 938             Gaming       15.6"
## 939          Ultrabook       14.0"
## 940             Gaming       17.3"
## 941             Gaming       17.3"
## 942           Notebook       17.3"
## 943           Notebook       15.6"
## 944           Notebook       15.6"
## 945 2 in 1 Convertible       11.3"
## 946             Gaming       15.6"
## 947          Ultrabook       12.5"
## 948           Notebook       15.6"
## 949           Notebook       17.3"
## 950           Notebook       14.0"
## 951        Workstation       15.6"
## 952          Ultrabook       14.0"
## 953           Notebook       13.3"
## 954 2 in 1 Convertible       12.5"
## 955          Ultrabook       14.0"
## 956             Gaming       17.3"
## 957 2 in 1 Convertible       13.3"
## 958 2 in 1 Convertible       11.6"
## 959          Ultrabook       13.3"
## 960 2 in 1 Convertible       11.6"
## 961           Notebook       13.3"
## 962          Ultrabook       12.5"
## 963           Notebook       15.6"
## 964          Ultrabook       12.5"
## 965           Notebook       15.6"
## 966           Notebook       15.6"
## 967           Notebook       15.6"
## 968           Notebook       15.6"
## 969             Gaming       17.3"
## 970           Notebook       15.6"
## 971 2 in 1 Convertible       13.3"
## 972          Ultrabook       14.0"
## 973             Gaming       17.3"
## 974           Notebook       14.0"
## 975             Gaming       17.3"
## 976           Notebook       15.6"
## 977           Notebook       14.0"
##                                            Screen
## 1              IPS Panel Retina Display 2560x1600
## 2                                        1440x900
## 3                               Full HD 1920x1080
## 4              IPS Panel Retina Display 2880x1800
## 5              IPS Panel Retina Display 2560x1600
## 6                                        1366x768
## 7              IPS Panel Retina Display 2880x1800
## 8                                        1440x900
## 9                               Full HD 1920x1080
## 10                    IPS Panel Full HD 1920x1080
## 11                                       1366x768
## 12                              Full HD 1920x1080
## 13             IPS Panel Retina Display 2880x1800
## 14                              Full HD 1920x1080
## 15             IPS Panel Retina Display 2304x1440
## 16             IPS Panel Retina Display 2560x1600
## 17                              Full HD 1920x1080
## 18             IPS Panel Retina Display 2880x1800
## 19                              Full HD 1920x1080
## 20      IPS Panel Full HD / Touchscreen 1920x1080
## 21                                       1366x768
## 22                    IPS Panel Full HD 1920x1080
## 23                                       1366x768
## 24                Full HD / Touchscreen 1920x1080
## 25                              Full HD 1920x1080
## 26                                       1366x768
## 27                                       1440x900
## 28                              Full HD 1920x1080
## 29                              Full HD 1920x1080
## 30                              Full HD 1920x1080
## 31                              Full HD 1920x1080
## 32                                       1366x768
## 33                              Full HD 1920x1080
## 34               Touchscreen / Quad HD+ 3200x1800
## 35                                       1440x900
## 36                                       1366x768
## 37                                       1366x768
## 38                    IPS Panel Full HD 1920x1080
## 39                                       1366x768
## 40                              Full HD 1920x1080
## 41                              Full HD 1920x1080
## 42                    IPS Panel Full HD 1920x1080
## 43                                       1366x768
## 44                    IPS Panel Full HD 1920x1080
## 45                Full HD / Touchscreen 1920x1080
## 46             IPS Panel Retina Display 2560x1600
## 47                                       1366x768
## 48                              Full HD 1920x1080
## 49                              Full HD 1920x1080
## 50                                       1366x768
## 51                IPS Panel Touchscreen 1920x1200
## 52                    IPS Panel Full HD 1920x1080
## 53                              Full HD 1920x1080
## 54                              Full HD 1920x1080
## 55                                       1366x768
## 56                              Full HD 1920x1080
## 57                              Full HD 1920x1080
## 58                                       1366x768
## 59                              Full HD 1920x1080
## 60                              Full HD 1920x1080
## 61                              Full HD 1920x1080
## 62                              Full HD 1920x1080
## 63                    IPS Panel Full HD 1920x1080
## 64                              Full HD 1920x1080
## 65                              Full HD 1920x1080
## 66                              Full HD 1920x1080
## 67                                       1366x768
## 68                                       1366x768
## 69                              Full HD 1920x1080
## 70                              Full HD 1920x1080
## 71                          Touchscreen 2256x1504
## 72                    IPS Panel Full HD 1920x1080
## 73                              Full HD 1920x1080
## 74                              Full HD 1920x1080
## 75                                       1366x768
## 76                              Full HD 1920x1080
## 77                              Full HD 1920x1080
## 78                              Full HD 1920x1080
## 79                              Full HD 1920x1080
## 80                              Full HD 1920x1080
## 81                    IPS Panel Full HD 1920x1080
## 82             IPS Panel Retina Display 2304x1440
## 83                              Full HD 1920x1080
## 84                              Full HD 1920x1080
## 85                                       1366x768
## 86                    IPS Panel Full HD 1920x1080
## 87                    IPS Panel Full HD 1920x1080
## 88                              Full HD 1920x1080
## 89                    IPS Panel Full HD 1920x1080
## 90                    IPS Panel Full HD 1920x1080
## 91                              Full HD 1920x1080
## 92                              Full HD 1920x1080
## 93                              Full HD 1920x1080
## 94                              Full HD 1920x1080
## 95                              Full HD 1920x1080
## 96      IPS Panel Full HD / Touchscreen 1920x1080
## 97                              Full HD 1920x1080
## 98                              Full HD 1920x1080
## 99                              Full HD 1920x1080
## 100                   IPS Panel Full HD 1920x1080
## 101                             Full HD 1920x1080
## 102                             Full HD 1920x1080
## 103                             Full HD 1920x1080
## 104                   IPS Panel Full HD 1920x1080
## 105                         Touchscreen 2256x1504
## 106                   IPS Panel Full HD 1920x1080
## 107                             Full HD 1920x1080
## 108                   IPS Panel Full HD 1920x1080
## 109                             Full HD 1920x1080
## 110                   IPS Panel Full HD 1920x1080
## 111                             Full HD 1920x1080
## 112              Quad HD+ / Touchscreen 3200x1800
## 113     IPS Panel Full HD / Touchscreen 1920x1080
## 114                            IPS Panel 1366x768
## 115                   IPS Panel Full HD 1920x1080
## 116     IPS Panel Full HD / Touchscreen 1920x1080
## 117                             Full HD 1920x1080
## 118                   IPS Panel Full HD 1920x1080
## 119                             Full HD 1920x1080
## 120                             Full HD 1920x1080
## 121     IPS Panel Full HD / Touchscreen 1920x1080
## 122                             Full HD 1920x1080
## 123                             Full HD 1920x1080
## 124                             Full HD 1920x1080
## 125                                      1366x768
## 126                                      1366x768
## 127                             Full HD 1920x1080
## 128                                      1366x768
## 129                             Full HD 1920x1080
## 130                             Full HD 1920x1080
## 131                                      1366x768
## 132                             Full HD 1920x1080
## 133                   IPS Panel Full HD 1920x1080
## 134                             Full HD 1920x1080
## 135                                      1366x768
## 136                             Full HD 1920x1080
## 137                                      1366x768
## 138                             Full HD 1920x1080
## 139                             Full HD 1920x1080
## 140                   IPS Panel Full HD 1920x1080
## 141                   IPS Panel Full HD 1920x1080
## 142                   IPS Panel Full HD 1920x1080
## 143                   IPS Panel Full HD 1920x1080
## 144                                      1366x768
## 145                                      1366x768
## 146                             Full HD 1920x1080
## 147 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 148                             Full HD 1920x1080
## 149                             Full HD 1920x1080
## 150                                      1366x768
## 151                             Full HD 1920x1080
## 152                             Full HD 1920x1080
## 153                                      1366x768
## 154                             Full HD 1920x1080
## 155                             Full HD 1920x1080
## 156                             Full HD 1920x1080
## 157     IPS Panel Full HD / Touchscreen 1920x1080
## 158               Full HD / Touchscreen 1920x1080
## 159               Full HD / Touchscreen 1920x1080
## 160                                      1366x768
## 161                                      1366x768
## 162                   IPS Panel Full HD 1920x1080
## 163                             Full HD 1920x1080
## 164                   IPS Panel Full HD 1920x1080
## 165                                      1366x768
## 166                   IPS Panel Full HD 1920x1080
## 167                                      1366x768
## 168                             Full HD 1920x1080
## 169                   IPS Panel Full HD 1920x1080
## 170                   IPS Panel Full HD 1920x1080
## 171                   IPS Panel Full HD 2160x1440
## 172                   IPS Panel Full HD 1920x1080
## 173                                      1366x768
## 174                                      1366x768
## 175                             Full HD 1920x1080
## 176                                      1366x768
## 177                                      1366x768
## 178                             Full HD 1920x1080
## 179                             Full HD 1920x1080
## 180 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 181                             Full HD 1920x1080
## 182                             Full HD 1920x1080
## 183 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 184                                      1366x768
## 185                   IPS Panel Full HD 1920x1080
## 186               Full HD / Touchscreen 1920x1080
## 187           4K Ultra HD / Touchscreen 3840x2160
## 188                   IPS Panel Full HD 1920x1080
## 189                   IPS Panel Full HD 1920x1080
## 190                             Full HD 1920x1080
## 191                         Touchscreen 2560x1440
## 192                   IPS Panel Full HD 1920x1080
## 193                   IPS Panel Full HD 1920x1080
## 194                                      1600x900
## 195     IPS Panel Full HD / Touchscreen 1920x1080
## 196                   IPS Panel Full HD 1920x1080
## 197           4K Ultra HD / Touchscreen 3840x2160
## 198                             Full HD 1920x1080
## 199                   IPS Panel Full HD 1920x1080
## 200                             Full HD 1920x1080
## 201               IPS Panel 4K Ultra HD 3840x2160
## 202                                      1366x768
## 203                             Full HD 1920x1080
## 204                   IPS Panel Full HD 1920x1080
## 205                         4K Ultra HD 3840x2160
## 206                             Full HD 1920x1080
## 207                          Touchscreen 1366x768
## 208 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 209                             Full HD 1920x1080
## 210                                      1366x768
## 211                             Full HD 1920x1080
## 212                             Full HD 1920x1080
## 213                             Full HD 1920x1080
## 214                             Full HD 1920x1080
## 215                   IPS Panel Full HD 2160x1440
## 216                   IPS Panel Full HD 1920x1080
## 217                                      1600x900
## 218                             Full HD 1920x1080
## 219                             Full HD 1920x1080
## 220               Full HD / Touchscreen 1920x1080
## 221                             Full HD 1920x1080
## 222                   IPS Panel Full HD 1920x1080
## 223                             Full HD 1920x1080
## 224                             Full HD 1920x1080
## 225                   IPS Panel Full HD 1920x1080
## 226                             Full HD 1920x1080
## 227               Full HD / Touchscreen 1920x1080
## 228                             Full HD 1920x1080
## 229                             Full HD 1920x1080
## 230                             Full HD 1920x1080
## 231                                      1366x768
## 232                                      1366x768
## 233                   IPS Panel Full HD 1920x1080
## 234                             Full HD 1920x1080
## 235     IPS Panel Full HD / Touchscreen 1920x1080
## 236                             Full HD 1920x1080
## 237                                      1366x768
## 238                             Full HD 1920x1080
## 239                             Full HD 1920x1080
## 240                   IPS Panel Full HD 1920x1080
## 241                                      1366x768
## 242                             Full HD 1920x1080
## 243                             Full HD 1920x1080
## 244                             Full HD 1920x1080
## 245     IPS Panel Full HD / Touchscreen 1920x1080
## 246                             Full HD 1920x1080
## 247                          Touchscreen 1366x768
## 248                             Full HD 1920x1080
## 249                   IPS Panel Full HD 1920x1080
## 250            IPS Panel Retina Display 2560x1600
## 251     IPS Panel Full HD / Touchscreen 1920x1080
## 252                             Full HD 1920x1080
## 253                                      1366x768
## 254     IPS Panel Full HD / Touchscreen 1920x1080
## 255                   IPS Panel Full HD 1920x1080
## 256                             Full HD 1920x1080
## 257                                      1366x768
## 258                   IPS Panel Full HD 1920x1080
## 259                             Full HD 1920x1080
## 260     IPS Panel Full HD / Touchscreen 1920x1080
## 261                             Full HD 1920x1080
## 262                             Full HD 1920x1080
## 263                   IPS Panel Full HD 1920x1080
## 264                             Full HD 1920x1080
## 265                             Full HD 1920x1080
## 266               Full HD / Touchscreen 1920x1080
## 267               Full HD / Touchscreen 1920x1080
## 268                             Full HD 1920x1080
## 269                             Full HD 1920x1080
## 270                             Full HD 1920x1080
## 271            IPS Panel Retina Display 2560x1600
## 272                             Full HD 1920x1080
## 273                             Full HD 1920x1080
## 274                         Touchscreen 2560x1440
## 275                                      1366x768
## 276                                      1366x768
## 277                             Full HD 1920x1080
## 278                   IPS Panel Full HD 1920x1080
## 279                                      1600x900
## 280                             Full HD 1920x1080
## 281                                      1600x900
## 282                             Full HD 1920x1080
## 283                   IPS Panel Full HD 1920x1080
## 284                             Full HD 1920x1080
## 285                   IPS Panel Full HD 1920x1080
## 286     IPS Panel Full HD / Touchscreen 1920x1080
## 287                   IPS Panel Full HD 1920x1080
## 288                             Full HD 1920x1080
## 289                   IPS Panel Full HD 1920x1080
## 290                             Full HD 1920x1080
## 291                                      1366x768
## 292                             Full HD 1920x1080
## 293                                      1600x900
## 294                             Full HD 1920x1080
## 295                             Full HD 1920x1080
## 296                   IPS Panel Full HD 1920x1080
## 297                             Full HD 1920x1080
## 298                             Full HD 1920x1080
## 299                             Full HD 1920x1080
## 300                             Full HD 1920x1080
## 301                                      1366x768
## 302                             Full HD 1920x1080
## 303                                      1600x900
## 304                                      1366x768
## 305                             Full HD 1920x1080
## 306                                      1366x768
## 307               Full HD / Touchscreen 1920x1080
## 308                   IPS Panel Full HD 1920x1080
## 309                             Full HD 1920x1080
## 310                             Full HD 1920x1080
## 311                   IPS Panel Full HD 1920x1080
## 312 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 313                   IPS Panel Full HD 1920x1080
## 314                             Full HD 1920x1080
## 315                          Touchscreen 1366x768
## 316                             Full HD 1920x1080
## 317 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 318                                      1366x768
## 319                             Full HD 1920x1080
## 320                                      1366x768
## 321                             Full HD 1920x1080
## 322                                      1600x900
## 323                             Full HD 1920x1080
## 324                    IPS Panel Full HD 1366x768
## 325                                      1366x768
## 326                                      1366x768
## 327                                      1366x768
## 328                             Full HD 1920x1080
## 329                             Full HD 1920x1080
## 330           4K Ultra HD / Touchscreen 3840x2160
## 331                             Full HD 1920x1080
## 332                   IPS Panel Full HD 1920x1080
## 333                             Full HD 1920x1080
## 334                             Full HD 1920x1080
## 335                             Full HD 1920x1080
## 336                             Full HD 1920x1080
## 337                   IPS Panel Full HD 1920x1080
## 338                             Full HD 1920x1080
## 339                                      1366x768
## 340                             Full HD 1920x1080
## 341                                      1366x768
## 342                             Full HD 1920x1080
## 343                   IPS Panel Full HD 1920x1080
## 344 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 345                             Full HD 1920x1080
## 346                   IPS Panel Full HD 1920x1080
## 347                                      1366x768
## 348                             Full HD 1920x1080
## 349                          Touchscreen 1366x768
## 350                             Full HD 1920x1080
## 351           4K Ultra HD / Touchscreen 3840x2160
## 352                             Full HD 1920x1080
## 353                             Full HD 1920x1080
## 354                             Full HD 1920x1080
## 355                   IPS Panel Full HD 1920x1080
## 356                             Full HD 1920x1080
## 357                                      1366x768
## 358                             Full HD 1920x1080
## 359                          Touchscreen 1366x768
## 360                             Full HD 1920x1080
## 361                                      1366x768
## 362                             Full HD 1920x1080
## 363                                      1600x900
## 364                             Full HD 1920x1080
## 365                                      1366x768
## 366                                      1366x768
## 367                             Full HD 1920x1080
## 368                   IPS Panel Full HD 1920x1080
## 369                             Full HD 1920x1080
## 370                   IPS Panel Full HD 1920x1080
## 371               Full HD / Touchscreen 1920x1080
## 372                                      1366x768
## 373                   IPS Panel Full HD 1920x1080
## 374                                      1600x900
## 375               Full HD / Touchscreen 1920x1080
## 376                             Full HD 1920x1080
## 377                            IPS Panel 1366x768
## 378                                      1366x768
## 379                                      1366x768
## 380                             Full HD 1920x1080
## 381                   IPS Panel Full HD 1920x1080
## 382                             Full HD 1920x1080
## 383                   IPS Panel Full HD 1920x1080
## 384                   IPS Panel Full HD 1920x1080
## 385               Full HD / Touchscreen 1920x1080
## 386                           IPS Panel 2560x1440
## 387                   IPS Panel Full HD 1920x1080
## 388                             Full HD 1920x1080
## 389                   IPS Panel Full HD 1920x1080
## 390                         Touchscreen 2560x1440
## 391                             Full HD 1920x1080
## 392                             Full HD 1920x1080
## 393                            IPS Panel 1366x768
## 394                             Full HD 1920x1080
## 395                             Full HD 1920x1080
## 396                             Full HD 1920x1080
## 397                   IPS Panel Full HD 1920x1080
## 398                   IPS Panel Full HD 1920x1080
## 399           4K Ultra HD / Touchscreen 3840x2160
## 400                           IPS Panel 2560x1440
## 401                                      1366x768
## 402                             Full HD 1920x1080
## 403                   IPS Panel Full HD 1920x1080
## 404                             Full HD 1920x1080
## 405                             Full HD 1920x1080
## 406                             Full HD 1920x1080
## 407                             Full HD 1920x1080
## 408                             Full HD 1920x1080
## 409                             Full HD 1920x1080
## 410                                      1366x768
## 411                             Full HD 1920x1080
## 412                   IPS Panel Full HD 2560x1440
## 413                             Full HD 1920x1080
## 414     IPS Panel Full HD / Touchscreen 1920x1080
## 415     IPS Panel Full HD / Touchscreen 1920x1080
## 416                             Full HD 1920x1080
## 417                                      1366x768
## 418                             Full HD 1920x1080
## 419                                      1366x768
## 420                   IPS Panel Full HD 1920x1080
## 421 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 422            IPS Panel Retina Display 2736x1824
## 423                             Full HD 1920x1080
## 424                             Full HD 1920x1080
## 425                           IPS Panel 2560x1440
## 426                   IPS Panel Full HD 1920x1080
## 427                             Full HD 1920x1080
## 428                             Full HD 1920x1080
## 429                             Full HD 1920x1080
## 430     IPS Panel Full HD / Touchscreen 1920x1080
## 431                                      1366x768
## 432                   IPS Panel Full HD 1920x1080
## 433                   IPS Panel Full HD 1920x1080
## 434               IPS Panel 4K Ultra HD 3840x2160
## 435                             Full HD 1920x1080
## 436                             Full HD 1920x1080
## 437                                      1366x768
## 438                         Touchscreen 2400x1600
## 439                                     2560x1440
## 440                             Full HD 1920x1080
## 441                                      1600x900
## 442                             Full HD 1920x1080
## 443                   IPS Panel Full HD 1920x1080
## 444                             Full HD 1920x1080
## 445                   IPS Panel Full HD 1920x1080
## 446                             Full HD 1920x1080
## 447                                      1366x768
## 448                             Full HD 1920x1080
## 449                             Full HD 1920x1080
## 450                         Touchscreen 2256x1504
## 451                                      1366x768
## 452                   IPS Panel Full HD 1920x1080
## 453                   IPS Panel Full HD 1920x1080
## 454                             Full HD 1920x1080
## 455                             Full HD 1920x1080
## 456                          Touchscreen 1366x768
## 457                   IPS Panel Full HD 1920x1080
## 458                         Touchscreen 2256x1504
## 459                         Touchscreen 2256x1504
## 460                                      1600x900
## 461                             Full HD 1920x1080
## 462                                      1366x768
## 463                             Full HD 1920x1080
## 464                   IPS Panel Full HD 1920x1080
## 465                             Full HD 1920x1080
## 466                                      1366x768
## 467                                      1366x768
## 468                             Full HD 1920x1080
## 469                   IPS Panel Full HD 1920x1080
## 470                  IPS Panel Quad HD+ 2560x1440
## 471 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 472                             Full HD 1920x1080
## 473                         Touchscreen 2400x1600
## 474               Full HD / Touchscreen 1920x1080
## 475               IPS Panel 4K Ultra HD 3840x2160
## 476                                      1366x768
## 477                             Full HD 1920x1080
## 478                             Full HD 1920x1080
## 479                             Full HD 1920x1080
## 480                   IPS Panel Full HD 1920x1080
## 481                   IPS Panel Full HD 1920x1080
## 482                                      1366x768
## 483                   IPS Panel Full HD 1920x1080
## 484                             Full HD 1920x1080
## 485                                      1366x768
## 486                   IPS Panel Full HD 1920x1080
## 487                   IPS Panel Full HD 1920x1080
## 488                             Full HD 1920x1080
## 489                   IPS Panel Full HD 1920x1080
## 490                             Full HD 1920x1080
## 491                   IPS Panel Full HD 1920x1080
## 492               Full HD / Touchscreen 1920x1080
## 493                             Full HD 1920x1080
## 494                                      1366x768
## 495     IPS Panel Full HD / Touchscreen 1920x1080
## 496                            IPS Panel 1366x768
## 497                             Full HD 1920x1080
## 498                             Full HD 1920x1080
## 499                   IPS Panel Full HD 1920x1080
## 500                   IPS Panel Full HD 1920x1080
## 501                                      1366x768
## 502                                      1366x768
## 503     IPS Panel Full HD / Touchscreen 1920x1080
## 504                                      1366x768
## 505                                      1366x768
## 506                             Full HD 1920x1080
## 507                             Full HD 1920x1080
## 508                   IPS Panel Full HD 1920x1080
## 509                   IPS Panel Full HD 1920x1080
## 510                   IPS Panel Full HD 1920x1080
## 511     IPS Panel Full HD / Touchscreen 1920x1080
## 512                             Full HD 1920x1080
## 513                             Full HD 1920x1080
## 514                             Full HD 1920x1080
## 515                   IPS Panel Full HD 1920x1080
## 516                                      1366x768
## 517                          Touchscreen 1366x768
## 518                             Full HD 1920x1080
## 519                             Full HD 1920x1080
## 520                             Full HD 1920x1080
## 521                   IPS Panel Full HD 1920x1080
## 522                   IPS Panel Full HD 1920x1080
## 523                             Full HD 1920x1080
## 524                                      1366x768
## 525                   IPS Panel Full HD 1920x1080
## 526                             Full HD 1920x1080
## 527                             Full HD 1920x1080
## 528                                      1366x768
## 529                             Full HD 1920x1080
## 530                             Full HD 1920x1080
## 531                   IPS Panel Full HD 1920x1080
## 532                   IPS Panel Full HD 1920x1080
## 533               IPS Panel 4K Ultra HD 3840x2160
## 534                   IPS Panel Full HD 1920x1080
## 535                   IPS Panel Full HD 1920x1080
## 536                             Full HD 1920x1080
## 537                             Full HD 1920x1080
## 538                             Full HD 1920x1080
## 539                             Full HD 1920x1080
## 540                   IPS Panel Full HD 1920x1080
## 541              Quad HD+ / Touchscreen 3200x1800
## 542                             Full HD 1920x1080
## 543                  IPS Panel Quad HD+ 3200x1800
## 544                             Full HD 1920x1080
## 545                                      1366x768
## 546                             Full HD 1920x1080
## 547                             Full HD 1920x1080
## 548                             Full HD 1920x1080
## 549                             Full HD 1920x1080
## 550                   IPS Panel Full HD 1920x1080
## 551                             Full HD 1920x1080
## 552                             Full HD 1920x1080
## 553                   IPS Panel Full HD 1920x1080
## 554                                      1600x900
## 555                             Full HD 1920x1080
## 556                                      1366x768
## 557                   IPS Panel Full HD 1920x1080
## 558                                      1600x900
## 559                   IPS Panel Full HD 1920x1080
## 560                                      1366x768
## 561     IPS Panel Full HD / Touchscreen 1920x1080
## 562                             Full HD 1920x1080
## 563    IPS Panel Quad HD+ / Touchscreen 3200x1800
## 564                   IPS Panel Full HD 1920x1080
## 565                             Full HD 1920x1080
## 566 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 567                                      1366x768
## 568                                      1366x768
## 569                             Full HD 1920x1080
## 570                                      1366x768
## 571                                      1600x900
## 572                                      1366x768
## 573                   IPS Panel Full HD 1920x1080
## 574                             Full HD 1920x1080
## 575                             Full HD 1920x1080
## 576                             Full HD 1920x1080
## 577               Full HD / Touchscreen 1920x1080
## 578                   IPS Panel Full HD 1920x1080
## 579                             Full HD 1920x1080
## 580                             Full HD 1920x1080
## 581                   IPS Panel Full HD 1920x1080
## 582                                      1366x768
## 583                             Full HD 1920x1080
## 584                             Full HD 1920x1080
## 585                                      1366x768
## 586                             Full HD 1920x1080
## 587                   IPS Panel Full HD 1920x1080
## 588                   IPS Panel Full HD 1920x1080
## 589                          Touchscreen 1366x768
## 590                   IPS Panel Full HD 1920x1080
## 591                          Touchscreen 1366x768
## 592                             Full HD 1920x1080
## 593                          Touchscreen 1366x768
## 594                             Full HD 1920x1080
## 595                             Full HD 1920x1080
## 596                                      1366x768
## 597     IPS Panel Full HD / Touchscreen 1920x1080
## 598                   IPS Panel Full HD 1920x1080
## 599               Full HD / Touchscreen 1920x1080
## 600               Full HD / Touchscreen 1920x1080
## 601                             Full HD 1920x1080
## 602                                      1366x768
## 603                             Full HD 1920x1080
## 604                             Full HD 1920x1080
## 605                                      1366x768
## 606                         4K Ultra HD 3840x2160
## 607                   IPS Panel Full HD 1920x1080
## 608                             Full HD 1920x1080
## 609     IPS Panel Full HD / Touchscreen 1920x1080
## 610                                      1366x768
## 611               IPS Panel 4K Ultra HD 3840x2160
## 612                             Full HD 1920x1080
## 613                                      1366x768
## 614                                      1366x768
## 615                                      1366x768
## 616                             Full HD 1920x1080
## 617                             Full HD 1920x1080
## 618                             Full HD 1920x1080
## 619                             Full HD 1920x1080
## 620                IPS Panel Touchscreen 1366x768
## 621                                      1366x768
## 622                             Full HD 1920x1080
## 623                             Full HD 1920x1080
## 624                                      1366x768
## 625                                      1366x768
## 626                             Full HD 1920x1080
## 627                             Full HD 1920x1080
## 628                             Full HD 1920x1080
## 629               Full HD / Touchscreen 1920x1080
## 630                             Full HD 1920x1080
## 631                             Full HD 1920x1080
## 632                             Full HD 1920x1080
## 633                             Full HD 1920x1080
## 634                             Full HD 1920x1080
## 635                                      1366x768
## 636                             Full HD 1920x1080
## 637              Quad HD+ / Touchscreen 3200x1800
## 638                                      1366x768
## 639     IPS Panel Full HD / Touchscreen 1920x1080
## 640           4K Ultra HD / Touchscreen 3840x2160
## 641                   IPS Panel Full HD 1920x1080
## 642                                      1600x900
## 643                   IPS Panel Full HD 1920x1080
## 644                   IPS Panel Full HD 1920x1080
## 645                                      1366x768
## 646                                      1366x768
## 647                   IPS Panel Full HD 1920x1080
## 648                             Full HD 1920x1080
## 649                             Full HD 1920x1080
## 650                   IPS Panel Full HD 1920x1080
## 651                   IPS Panel Full HD 1920x1080
## 652                             Full HD 1920x1080
## 653                             Full HD 1920x1080
## 654                             Full HD 1920x1080
## 655                                      1366x768
## 656                   IPS Panel Full HD 1920x1080
## 657                             Full HD 1920x1080
## 658                             Full HD 1920x1080
## 659                   IPS Panel Full HD 1920x1080
## 660               IPS Panel 4K Ultra HD 3840x2160
## 661                             Full HD 1920x1080
## 662                                      1366x768
## 663                             Full HD 1920x1080
## 664                                     1920x1080
## 665                             Full HD 1920x1080
## 666                                      1366x768
## 667                             Full HD 1920x1080
## 668                             Full HD 1920x1080
## 669                   IPS Panel Full HD 1920x1080
## 670                                      1366x768
## 671                         Touchscreen 2256x1504
## 672                             Full HD 1920x1080
## 673     IPS Panel Full HD / Touchscreen 1920x1080
## 674                                      1366x768
## 675     IPS Panel Full HD / Touchscreen 1920x1080
## 676                             Full HD 1920x1080
## 677                             Full HD 1920x1080
## 678                          Touchscreen 1366x768
## 679                   IPS Panel Full HD 1920x1080
## 680                             Full HD 1920x1080
## 681                             Full HD 1920x1080
## 682                                      1366x768
## 683                             Full HD 1920x1080
## 684                   IPS Panel Full HD 1920x1080
## 685     IPS Panel Full HD / Touchscreen 1920x1080
## 686                             Full HD 1920x1080
## 687                                      1366x768
## 688                                      1366x768
## 689                   IPS Panel Full HD 1920x1080
## 690                                      1366x768
## 691                                      1366x768
## 692                             Full HD 1920x1080
## 693                             Full HD 1920x1080
## 694                         Touchscreen 2560x1440
## 695                   IPS Panel Full HD 1920x1080
## 696                                      1366x768
## 697               Full HD / Touchscreen 1920x1080
## 698               Full HD / Touchscreen 1920x1080
## 699               Full HD / Touchscreen 1920x1080
## 700                   IPS Panel Full HD 1920x1080
## 701                             Full HD 1920x1080
## 702                             Full HD 1920x1080
## 703                                      1366x768
## 704                             Full HD 1920x1080
## 705                                      1366x768
## 706                             Full HD 1920x1080
## 707     IPS Panel Full HD / Touchscreen 1920x1080
## 708                             Full HD 1920x1080
## 709                             Full HD 1920x1080
## 710                   IPS Panel Full HD 1920x1080
## 711                   IPS Panel Full HD 1920x1080
## 712                             Full HD 1920x1080
## 713                             Full HD 1920x1080
## 714                             Full HD 1920x1080
## 715                             Full HD 1920x1080
## 716                   IPS Panel Full HD 1920x1080
## 717                             Full HD 1920x1080
## 718                                      1366x768
## 719                   IPS Panel Full HD 1920x1200
## 720                             Full HD 1920x1080
## 721                  IPS Panel Quad HD+ 2560x1440
## 722                IPS Panel Touchscreen 1366x768
## 723                   IPS Panel Full HD 1920x1080
## 724                         4K Ultra HD 3840x2160
## 725                             Full HD 1920x1080
## 726                                      1366x768
## 727                             Full HD 1920x1080
## 728               Full HD / Touchscreen 1920x1080
## 729                                      1366x768
## 730                             Full HD 1920x1080
## 731                   IPS Panel Full HD 1920x1080
## 732                                      1366x768
## 733                             Full HD 1920x1080
## 734                                      1366x768
## 735                   IPS Panel Full HD 1920x1080
## 736                             Full HD 1920x1080
## 737                             Full HD 1920x1080
## 738               Full HD / Touchscreen 1920x1080
## 739                             Full HD 1920x1080
## 740                                      1366x768
## 741                             Full HD 1920x1080
## 742                                      1366x768
## 743     IPS Panel Full HD / Touchscreen 1920x1080
## 744               Full HD / Touchscreen 1920x1080
## 745               IPS Panel 4K Ultra HD 3840x2160
## 746                                      1366x768
## 747                             Full HD 1920x1080
## 748                             Full HD 1920x1080
## 749                                      1366x768
## 750                   IPS Panel Full HD 1920x1080
## 751                          Touchscreen 1366x768
## 752                             Full HD 1920x1080
## 753                                      1366x768
## 754                             Full HD 1920x1080
## 755                                      1366x768
## 756    IPS Panel Quad HD+ / Touchscreen 3200x1800
## 757                   IPS Panel Full HD 1920x1080
## 758                             Full HD 1920x1080
## 759               IPS Panel 4K Ultra HD 3840x2160
## 760                                      1366x768
## 761                   IPS Panel Full HD 1920x1080
## 762                             Full HD 1920x1080
## 763                         Touchscreen 2400x1600
## 764                  IPS Panel Quad HD+ 3200x1800
## 765                                      1366x768
## 766                                      1366x768
## 767                                      1366x768
## 768 IPS Panel Touchscreen / 4K Ultra HD 3840x2160
## 769               Full HD / Touchscreen 1920x1080
## 770                                      1366x768
## 771                             Full HD 1920x1080
## 772               Full HD / Touchscreen 1920x1080
## 773                            IPS Panel 1366x768
## 774                             Full HD 1920x1080
## 775                                      1366x768
## 776               Full HD / Touchscreen 1920x1080
## 777                         4K Ultra HD 3840x2160
## 778                   IPS Panel Full HD 1920x1080
## 779                             Full HD 1920x1080
## 780                                     1920x1080
## 781                   IPS Panel Full HD 1920x1080
## 782                   IPS Panel Full HD 1920x1080
## 783                   IPS Panel Full HD 1920x1080
## 784                                      1366x768
## 785                             Full HD 1920x1080
## 786                   IPS Panel Full HD 1920x1080
## 787                             Full HD 1920x1080
## 788                   IPS Panel Full HD 1920x1080
## 789                   IPS Panel Full HD 1920x1080
## 790                             Full HD 1920x1080
## 791                             Full HD 1920x1080
## 792                                     1920x1080
## 793     IPS Panel Full HD / Touchscreen 1920x1080
## 794               Full HD / Touchscreen 1920x1080
## 795            IPS Panel Retina Display 2304x1440
## 796               IPS Panel Touchscreen 2560x1440
## 797                                      1366x768
## 798                                      1366x768
## 799     IPS Panel Full HD / Touchscreen 1920x1080
## 800                             Full HD 1920x1080
## 801                             Full HD 1920x1080
## 802                             Full HD 1920x1080
## 803                             Full HD 1920x1080
## 804           4K Ultra HD / Touchscreen 3840x2160
## 805                                      1366x768
## 806                                      1366x768
## 807                                      1366x768
## 808                                      1366x768
## 809                         4K Ultra HD 3840x2160
## 810                             Full HD 1920x1080
## 811                   IPS Panel Full HD 1920x1080
## 812                             Full HD 1920x1080
## 813                             Full HD 1920x1080
## 814                             Full HD 1920x1080
## 815                             Full HD 1920x1080
## 816                             Full HD 1920x1080
## 817 IPS Panel 4K Ultra HD / Touchscreen 3840x2160
## 818                                      1366x768
## 819                   IPS Panel Full HD 1920x1080
## 820                                      1366x768
## 821                                      1366x768
## 822                                      1366x768
## 823                   IPS Panel Full HD 1920x1080
## 824                             Full HD 1920x1080
## 825                   IPS Panel Full HD 1920x1080
## 826                                      1366x768
## 827               Touchscreen / Full HD 1920x1080
## 828                                      1366x768
## 829                            IPS Panel 1366x768
## 830                   IPS Panel Full HD 1920x1080
## 831           4K Ultra HD / Touchscreen 3840x2160
## 832                  IPS Panel Quad HD+ 2560x1440
## 833                             Full HD 1920x1080
## 834                             Full HD 1920x1080
## 835                   IPS Panel Full HD 1920x1080
## 836                             Full HD 1920x1080
## 837                             Full HD 1920x1080
## 838                                      1366x768
## 839                                      1366x768
## 840                             Full HD 1920x1080
## 841                             Full HD 1920x1080
## 842                   IPS Panel Full HD 1920x1080
## 843                                      1600x900
## 844                                      1366x768
## 845                             Full HD 1920x1080
## 846                             Full HD 1920x1080
## 847                          Touchscreen 1366x768
## 848                   IPS Panel Full HD 1920x1080
## 849               Full HD / Touchscreen 1920x1080
## 850                             Full HD 1920x1080
## 851                                      1366x768
## 852                             Full HD 1920x1080
## 853                             Full HD 1920x1080
## 854                   IPS Panel Full HD 1920x1080
## 855                   IPS Panel Full HD 1920x1080
## 856                             Full HD 1920x1080
## 857                                      1366x768
## 858               Full HD / Touchscreen 1920x1080
## 859               Full HD / Touchscreen 1920x1080
## 860                             Full HD 1920x1080
## 861                   IPS Panel Full HD 1920x1080
## 862                             Full HD 1920x1080
## 863                             Full HD 1920x1080
## 864                   IPS Panel Full HD 1920x1080
## 865              Quad HD+ / Touchscreen 3200x1800
## 866                             Full HD 1920x1080
## 867                                      1366x768
## 868     IPS Panel Full HD / Touchscreen 1920x1080
## 869                   IPS Panel Full HD 1920x1080
## 870                             Full HD 1920x1080
## 871                                      1366x768
## 872                             Full HD 1920x1080
## 873                   IPS Panel Full HD 1920x1080
## 874                   IPS Panel Full HD 1920x1080
## 875                             Full HD 1920x1080
## 876                             Full HD 1920x1080
## 877                                      1366x768
## 878                   IPS Panel Full HD 1920x1080
## 879                             Full HD 1920x1080
## 880                             Full HD 1920x1080
## 881               Full HD / Touchscreen 1920x1080
## 882                          Touchscreen 1366x768
## 883                                      1366x768
## 884                   IPS Panel Full HD 1920x1080
## 885                                      1366x768
## 886               Full HD / Touchscreen 1920x1080
## 887                                      1366x768
## 888                             Full HD 1920x1080
## 889                            IPS Panel 1366x768
## 890                                      1600x900
## 891                             Full HD 1920x1080
## 892              Quad HD+ / Touchscreen 3200x1800
## 893                             Full HD 1920x1080
## 894                   IPS Panel Full HD 1920x1080
## 895               IPS Panel 4K Ultra HD 3840x2160
## 896                             Full HD 1920x1080
## 897                             Full HD 1920x1080
## 898                             Full HD 1920x1080
## 899                                      1366x768
## 900                             Full HD 1920x1080
## 901              Quad HD+ / Touchscreen 3200x1800
## 902                   IPS Panel Full HD 1920x1080
## 903               Full HD / Touchscreen 1920x1080
## 904                   IPS Panel Full HD 1920x1080
## 905                   IPS Panel Full HD 1920x1080
## 906     IPS Panel Full HD / Touchscreen 1920x1080
## 907                             Full HD 1920x1080
## 908                   IPS Panel Full HD 1920x1080
## 909                   IPS Panel Full HD 1920x1080
## 910     IPS Panel Full HD / Touchscreen 1920x1080
## 911                             Full HD 1920x1080
## 912           4K Ultra HD / Touchscreen 3840x2160
## 913                             Full HD 1920x1080
## 914                             Full HD 1920x1080
## 915                             Full HD 1920x1080
## 916                             Full HD 1920x1080
## 917                             Full HD 1920x1080
## 918                             Full HD 1920x1080
## 919                             Full HD 1920x1080
## 920                             Full HD 1920x1080
## 921                                      1366x768
## 922                             Full HD 1920x1080
## 923              Quad HD+ / Touchscreen 3200x1800
## 924                   IPS Panel Full HD 1920x1080
## 925     IPS Panel Full HD / Touchscreen 1920x1080
## 926                                      1366x768
## 927                   IPS Panel Full HD 1920x1080
## 928                             Full HD 1920x1080
## 929                                      1366x768
## 930                                      1366x768
## 931                                      1366x768
## 932                             Full HD 1920x1080
## 933                                      1366x768
## 934    IPS Panel Quad HD+ / Touchscreen 3200x1800
## 935                   IPS Panel Full HD 1920x1080
## 936                             Full HD 1920x1080
## 937                                      1366x768
## 938                             Full HD 1920x1080
## 939                             Full HD 1920x1080
## 940                                     2560x1440
## 941                   IPS Panel Full HD 1920x1080
## 942                                      1600x900
## 943                                      1366x768
## 944                                      1366x768
## 945     IPS Panel Full HD / Touchscreen 1920x1080
## 946                   IPS Panel Full HD 1920x1080
## 947               Full HD / Touchscreen 1920x1080
## 948                             Full HD 1920x1080
## 949                                      1600x900
## 950                                      1366x768
## 951                   IPS Panel Full HD 1920x1080
## 952                             Full HD 1920x1080
## 953                             Full HD 1920x1080
## 954                             Full HD 1920x1080
## 955                   IPS Panel Full HD 1920x1080
## 956               IPS Panel 4K Ultra HD 3840x2160
## 957               Full HD / Touchscreen 1920x1080
## 958                          Touchscreen 1366x768
## 959                            Quad HD+ 3200x1800
## 960                IPS Panel Touchscreen 1366x768
## 961                             Full HD 1920x1080
## 962                   IPS Panel Full HD 1920x1080
## 963                             Full HD 1920x1080
## 964               Full HD / Touchscreen 1920x1080
## 965                                      1366x768
## 966                                      1366x768
## 967                                      1366x768
## 968                             Full HD 1920x1080
## 969                   IPS Panel Full HD 1920x1080
## 970                             Full HD 1920x1080
## 971              Quad HD+ / Touchscreen 3200x1800
## 972                         Touchscreen 2560x1440
## 973                             Full HD 1920x1080
## 974                             Full HD 1920x1080
## 975                             Full HD 1920x1080
## 976                   IPS Panel Full HD 1920x1080
## 977                                      1366x768
##                                       CPU  RAM                       Storage
## 1                    Intel Core i5 2.3GHz  8GB                     128GB SSD
## 2                    Intel Core i5 1.8GHz  8GB           128GB Flash Storage
## 3              Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 4                    Intel Core i7 2.7GHz 16GB                     512GB SSD
## 5                    Intel Core i5 3.1GHz  8GB                     256GB SSD
## 6                 AMD A9-Series 9420 3GHz  4GB                     500GB HDD
## 7                    Intel Core i7 2.2GHz 16GB           256GB Flash Storage
## 8                    Intel Core i5 1.8GHz  8GB           256GB Flash Storage
## 9              Intel Core i7 8550U 1.8GHz 16GB                     512GB SSD
## 10             Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 11             Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 12               Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 13                   Intel Core i7 2.8GHz 16GB                     256GB SSD
## 14               Intel Core i3 6006U 2GHz  4GB                     256GB SSD
## 15                 Intel Core M m3 1.2GHz  8GB                     256GB SSD
## 16                   Intel Core i5 2.3GHz  8GB                     256GB SSD
## 17             Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 18                   Intel Core i7 2.9GHz 16GB                     512GB SSD
## 19             Intel Core i3 7100U 2.4GHz  8GB                       1TB HDD
## 20             Intel Core i5 8250U 1.6GHz  8GB                     128GB SSD
## 21            Intel Atom x5-Z8350 1.44GHz  2GB            32GB Flash Storage
## 22            Intel Core i5 7300HQ 2.5GHz  8GB          128GB SSD +  1TB HDD
## 23           AMD E-Series E2-9000e 1.5GHz  4GB                     500GB HDD
## 24             Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 25             Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 26               Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 27                   Intel Core i5 1.6GHz  8GB           128GB Flash Storage
## 28             Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 29             Intel Core i7 8650U 1.9GHz  8GB        256GB SSD +  256GB SSD
## 30             Intel Core i5 8250U 1.6GHz  8GB                       1TB HDD
## 31            Intel Atom x5-Z8300 1.44GHz  4GB            64GB Flash Storage
## 32            AMD E-Series E2-6110 1.5GHz  2GB            32GB Flash Storage
## 33              AMD A6-Series 9220 2.5GHz  4GB                     500GB HDD
## 34             Intel Core i7 8550U 1.8GHz 16GB                     512GB SSD
## 35                   Intel Core i5 1.6GHz  8GB           256GB Flash Storage
## 36   Intel Celeron Dual Core N3350 1.1GHz  4GB            64GB Flash Storage
## 37             Intel Core i3 7130U 2.7GHz  4GB                       1TB HDD
## 38             Intel Core i5 8250U 1.6GHz  8GB          128GB SSD +  1TB HDD
## 39             Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 40             Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 41               Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 42            Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 43             Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 44             Intel Core i5 8250U 1.6GHz  4GB                     256GB SSD
## 45             Intel Core i5 8250U 1.6GHz 12GB                       1TB HDD
## 46                   Intel Core i5 2.0GHz  8GB                     256GB SSD
## 47               Intel Core i3 6006U 2GHz  4GB                     128GB SSD
## 48                    AMD Ryzen 1700 3GHz  8GB          256GB SSD +  1TB HDD
## 49             Intel Core i5 7200U 2.5GHz  4GB                     256GB SSD
## 50   Intel Pentium Quad Core N4200 1.1GHz  4GB                       1TB HDD
## 51            Intel Atom x5-Z8550 1.44GHz  4GB            64GB Flash Storage
## 52             Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 53              AMD A6-Series 9220 2.5GHz  4GB                     256GB SSD
## 54             Intel Core i7 8550U 1.8GHz  8GB                     512GB SSD
## 55             Intel Core i3 7100U 2.4GHz  4GB                       1TB HDD
## 56             Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 57               Intel Core i3 6006U 2GHz  4GB                     128GB SSD
## 58             Intel Core i5 7200U 2.5GHz  4GB                     256GB SSD
## 59            Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  2TB HDD
## 60               Intel Core i3 6006U 2GHz  4GB                     256GB SSD
## 61             Intel Core i7 8550U 1.8GHz 16GB          256GB SSD +  2TB HDD
## 62             Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 63             Intel Core i3 7130U 2.7GHz  8GB                     256GB SSD
## 64             Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 65             Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 66            Intel Core i7 7700HQ 2.8GHz 16GB                     512GB SSD
## 67               Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 68   Intel Celeron Dual Core N3060 1.6GHz  4GB                      32GB SSD
## 69             Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 70            Intel Core i7 7700HQ 2.8GHz 12GB                       1TB HDD
## 71             Intel Core i5 7200U 2.5GHz  4GB                     128GB SSD
## 72             Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 73             Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 74            Intel Core i5 7300HQ 2.5GHz  8GB          128GB SSD +  1TB HDD
## 75               Intel Core i3 6006U 2GHz  8GB                       1TB HDD
## 76            Intel Core i7 7700HQ 2.8GHz  8GB                       1TB HDD
## 77             Intel Core i5 7200U 2.5GHz  8GB                       2TB HDD
## 78             Intel Core i7 8550U 1.8GHz  8GB          128GB SSD +  1TB HDD
## 79             Intel Core i3 7130U 2.7GHz  4GB                       1TB HDD
## 80             Intel Core i5 8250U 1.6GHz  8GB          128GB SSD +  1TB HDD
## 81             Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 82                   Intel Core i5 1.3GHz  8GB                     512GB SSD
## 83             Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 84              AMD A6-Series 9220 2.5GHz  4GB                     128GB SSD
## 85                AMD A9-Series 9420 3GHz  4GB                       1TB HDD
## 86            Intel Core i7 7700HQ 2.8GHz 16GB          128GB SSD +  1TB HDD
## 87             Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 88             Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 89            Intel Core i7 7700HQ 2.8GHz 16GB          128GB SSD +  1TB HDD
## 90             Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 91                      AMD FX 9830P 3GHz  8GB                       1TB HDD
## 92             Intel Core i7 8550U 1.8GHz  8GB                       1TB HDD
## 93             Intel Core i7 8550U 1.8GHz 16GB                     512GB SSD
## 94            Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 95             Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 96             Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 97             Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 98               Intel Core i3 6006U 2GHz  4GB                     256GB SSD
## 99             Intel Core i3 7100U 2.4GHz  6GB                     256GB SSD
## 100           Intel Core i7 7700HQ 2.8GHz 12GB          128GB SSD +  1TB HDD
## 101            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 102          AMD E-Series E2-9000e 1.5GHz  4GB                     500GB HDD
## 103            Intel Core i5 8250U 1.6GHz  8GB                       1TB HDD
## 104            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 105            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 106            Intel Core i5 7200U 2.5GHz  6GB                     256GB SSD
## 107              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 108            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 109           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 110            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 111            Intel Core i7 8550U 1.8GHz 16GB          256GB SSD +  1TB HDD
## 112            Intel Core i7 7560U 2.4GHz  8GB                     256GB SSD
## 113            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 114            Intel Core i5 8250U 1.6GHz  4GB                     500GB HDD
## 115            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 116            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 117            Intel Core i7 8550U 1.8GHz  8GB                     512GB SSD
## 118            Intel Core i7 8550U 1.8GHz  8GB          256GB SSD +  1TB HDD
## 119              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 120            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 121            Intel Core i3 7100U 2.4GHz  6GB                       1TB HDD
## 122           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  2TB HDD
## 123            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 124            Intel Core i7 8550U 1.8GHz 16GB                     512GB SSD
## 125               AMD A9-Series 9420 3GHz  4GB                     256GB SSD
## 126  Intel Celeron Dual Core N3060 1.6GHz  4GB                     500GB HDD
## 127            Intel Core i5 8250U 1.6GHz  8GB                       1TB HDD
## 128              AMD E-Series 6110 1.5GHz  4GB                      64GB SSD
## 129            Intel Core i7 8550U 1.8GHz 16GB          256GB SSD +  2TB HDD
## 130            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 131            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 132              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 133            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 134            Intel Core i3 7130U 2.7GHz  4GB                     256GB SSD
## 135            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 136            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 137  Intel Celeron Dual Core N3350 1.1GHz  4GB                       1TB HDD
## 138           Intel Core i5 7300HQ 2.5GHz  8GB          128GB SSD +  1TB HDD
## 139            Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 140            Intel Core i5 7200U 2.5GHz  4GB                     256GB SSD
## 141            Intel Core i3 7130U 2.7GHz  4GB                       1TB HDD
## 142            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 143           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 144            Intel Core i5 6200U 2.3GHz  4GB                     500GB HDD
## 145             AMD A6-Series 9220 2.5GHz  4GB                     256GB SSD
## 146            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 147              Intel Core M 6Y75 1.2GHz  8GB                     512GB SSD
## 148  Intel Celeron Dual Core N3350 1.1GHz  4GB                       1TB HDD
## 149           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 150              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 151           Intel Core i7 7700HQ 2.8GHz 16GB                     512GB SSD
## 152           Intel Core i7 7700HQ 2.8GHz  8GB                    1TB Hybrid
## 153            Intel Core i5 7200U 2.5GHz  4GB                     128GB SSD
## 154           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 155            Intel Core i5 7500U 2.7GHz  4GB                     256GB SSD
## 156            Intel Core i5 8250U 1.6GHz  6GB                     256GB SSD
## 157            Intel Core i3 7100U 2.4GHz  4GB                     256GB SSD
## 158            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 159            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 160            Intel Core i3 6006U 2.2GHz  4GB                     500GB HDD
## 161               AMD A9-Series 9420 3GHz  4GB                       1TB HDD
## 162            Intel Core i5 8250U 1.6GHz  4GB                     256GB SSD
## 163            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 164           Intel Core i7 7700HQ 2.8GHz 16GB                     256GB SSD
## 165  Intel Celeron Dual Core N3350 1.1GHz  4GB                       1TB HDD
## 166           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 167  Intel Pentium Quad Core N4200 1.1GHz  4GB                       1TB HDD
## 168           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 169            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 170            Intel Core i5 8250U 1.6GHz  4GB                     500GB HDD
## 171            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 172            Intel Core i5 7200U 2.5GHz  6GB                       2TB HDD
## 173             AMD A6-Series 9220 2.9GHz  4GB                     500GB HDD
## 174            Intel Core i3 7100U 2.4GHz  4GB                     500GB HDD
## 175            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 176            Intel Core i3 7100U 2.4GHz  8GB                       1TB HDD
## 177              Intel Core i3 6006U 2GHz  4GB                     128GB SSD
## 178           Intel Core i7 6920HQ 2.9GHz 32GB          512GB SSD +  1TB HDD
## 179            Intel Core i5 7200U 2.5GHz  8GB          128GB SSD +  1TB HDD
## 180            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 181            Intel Core i7 8550U 1.8GHz 16GB          256GB SSD +  2TB HDD
## 182            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 183            Intel Core i7 8550U 1.8GHz 16GB                     512GB SSD
## 184            Intel Core i5 7200U 2.5GHz  8GB                     128GB SSD
## 185            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 186            Intel Core i7 8550U 1.8GHz 16GB                     512GB SSD
## 187           Intel Core i7 7700HQ 2.8GHz 16GB                     512GB SSD
## 188           Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 189             Intel Core i5 7Y54 1.2GHz  8GB                     256GB SSD
## 190            Intel Core i7 8550U 1.8GHz  8GB          128GB SSD +  1TB HDD
## 191            Intel Core i7 7500U 2.7GHz 16GB                       1TB SSD
## 192  Intel Celeron Dual Core N3350 1.1GHz  4GB            32GB Flash Storage
## 193            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 194            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 195            Intel Core i7 8550U 1.8GHz  8GB                       1TB HDD
## 196            Intel Core i5 8250U 1.6GHz  8GB                       1TB HDD
## 197           Intel Core i7 7820HK 2.9GHz 32GB                       1TB SSD
## 198            Intel Core i5 8250U 1.6GHz  8GB                     512GB SSD
## 199           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 200            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 201           Intel Core i7 7700HQ 2.8GHz 16GB          512GB SSD +  1TB HDD
## 202            Intel Core i5 6200U 2.3GHz  4GB                     128GB SSD
## 203            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 204           Intel Core i7 7700HQ 2.8GHz 16GB          512GB SSD +  1TB HDD
## 205           Intel Xeon E3-1505M V6 3GHz 16GB          256GB SSD +  1TB HDD
## 206           Intel Core i7 7700HQ 2.8GHz 16GB                     512GB SSD
## 207            Intel Core i3 7100U 2.4GHz  6GB                       1TB HDD
## 208            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 209            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 210            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 211           Intel Core i7 7700HQ 2.8GHz  8GB                       1TB HDD
## 212           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 213              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 214            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 215            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 216            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 217            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 218            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 219            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 220            Intel Core i7 8550U 1.8GHz 16GB                     512GB SSD
## 221            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 222            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 223            Intel Core i7 6500U 2.5GHz  8GB                     256GB SSD
## 224            Intel Core i5 8250U 1.6GHz  8GB                       1TB HDD
## 225           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 226            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 227            Intel Core i7 7500U 2.7GHz 16GB                       1TB HDD
## 228            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 229            Intel Core i5 7200U 2.5GHz  8GB        256GB SSD +  500GB HDD
## 230            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 231            Intel Core i3 7100U 2.4GHz  4GB                       1TB HDD
## 232             AMD E-Series 9000e 1.5GHz  4GB                     500GB HDD
## 233           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 234            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 235            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 236            Intel Core i7 7500U 2.7GHz 16GB                     256GB SSD
## 237              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 238       AMD A10-Series A10-9620P 2.5GHz  4GB          128GB SSD +  1TB HDD
## 239           Intel Core i7 7820HK 2.9GHz 32GB          512GB SSD +  1TB HDD
## 240           Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 241              Intel Core i3 6006U 2GHz  8GB                     128GB SSD
## 242            Intel Core i7 8550U 1.8GHz  8GB          128GB SSD +  1TB HDD
## 243            Intel Core i7 7500U 2.7GHz  8GB          128GB SSD +  1TB HDD
## 244           Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 245            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 246            Intel Core i7 8550U 1.8GHz  8GB          128GB SSD +  2TB HDD
## 247            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 248           Intel Core i7 7820HK 2.9GHz 16GB                     256GB SSD
## 249            Intel Core i5 8250U 1.6GHz  4GB                     500GB HDD
## 250                  Intel Core i5 3.1GHz  8GB                     512GB SSD
## 251            Intel Core i7 8550U 1.8GHz  8GB                       1TB HDD
## 252           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 253               AMD A9-Series 9420 3GHz  4GB                       1TB HDD
## 254            Intel Core i7 8550U 1.8GHz  8GB                     512GB SSD
## 255            Intel Core i3 7130U 2.7GHz  4GB                     256GB SSD
## 256            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 257          AMD A6-Series A6-9220 2.5GHz  8GB                     128GB SSD
## 258            Intel Core i7 8550U 1.8GHz 16GB                       1TB HDD
## 259           Intel Core i7 7700HQ 2.8GHz 16GB          512GB SSD +  1TB HDD
## 260           Intel Core i7 7700HQ 2.8GHz  8GB                     512GB SSD
## 261            Intel Core i7 8550U 1.8GHz  8GB          128GB SSD +  1TB HDD
## 262              Intel Core i3 6006U 2GHz  4GB                     256GB SSD
## 263            Intel Core i5 8250U 1.6GHz  4GB                     500GB HDD
## 264            Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 265            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 266            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 267            Intel Core i7 8550U 1.8GHz  8GB        512GB SSD +  512GB SSD
## 268            Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 269            Intel Core i7 8550U 1.8GHz  8GB                       1TB HDD
## 270            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 271                  Intel Core i5 2.9GHz  8GB                     512GB SSD
## 272                   AMD Ryzen 1700 3GHz 16GB          256GB SSD +  1TB HDD
## 273            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 274            Intel Core i7 6600U 2.6GHz 16GB                     512GB SSD
## 275            Intel Core i7 6500U 2.5GHz  8GB                     500GB HDD
## 276            Intel Core i7 7500U 2.7GHz 12GB                       1TB HDD
## 277            Intel Core i7 8550U 1.8GHz  8GB          128GB SSD +  1TB HDD
## 278            Intel Core i7 8550U 1.8GHz  8GB                       1TB HDD
## 279              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 280            Intel Core i7 8550U 1.8GHz  8GB                       2TB HDD
## 281            Intel Core i7 7500U 2.7GHz  6GB          128GB SSD +  1TB HDD
## 282            Intel Core i3 6006U 2.0GHz  4GB                       1TB HDD
## 283           Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 284            Intel Core i5 7200U 2.5GHz  6GB                     256GB SSD
## 285            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 286            Intel Core i7 7500U 2.7GHz 12GB                       1TB HDD
## 287            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 288            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 289           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 290            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 291  Intel Celeron Dual Core 3205U 1.5GHz  2GB                      16GB SSD
## 292           Intel Core i7 7700HQ 2.8GHz  8GB                       1TB HDD
## 293              Intel Core i3 6006U 2GHz  8GB                       1TB HDD
## 294           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 295            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 296           Intel Core i7 7700HQ 2.8GHz  8GB                       1TB HDD
## 297           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 298           Intel Core i7 7820HQ 2.9GHz 16GB                     256GB SSD
## 299           AMD A10-Series 9600P 2.4GHz  6GB                       1TB HDD
## 300            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 301            Intel Core i3 7100U 2.4GHz  4GB                     128GB SSD
## 302           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 303            Intel Core i5 7200U 2.5GHz  6GB                       1TB HDD
## 304            Intel Core i5 7200U 2.5GHz  8GB                       2TB HDD
## 305           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 306  Intel Pentium Quad Core N4200 1.1GHz  4GB                       1TB HDD
## 307            Intel Core i7 7600U 2.8GHz 16GB                     256GB SSD
## 308            Intel Core i7 6500U 2.5GHz  8GB                     256GB SSD
## 309            Intel Core i5 7200U 2.5GHz  8GB          128GB SSD +  1TB HDD
## 310              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 311            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 312            Intel Core i7 8550U 1.8GHz 16GB                       1TB SSD
## 313           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 314             AMD A8-Series 7410 2.2GHz  8GB                     256GB SSD
## 315  Intel Celeron Dual Core N3350 1.1GHz  2GB            32GB Flash Storage
## 316            Intel Core i5 8250U 1.6GHz  8GB          128GB SSD +  1TB HDD
## 317            Intel Core i7 8550U 1.8GHz 16GB                       1TB SSD
## 318  Intel Celeron Dual Core 3855U 1.6GHz  4GB            16GB Flash Storage
## 319            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 320  Intel Pentium Quad Core N3710 1.6GHz  4GB           128GB Flash Storage
## 321            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 322            Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 323            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 324            Intel Core i7 8550U 1.8GHz  8GB                       1TB HDD
## 325           AMD A12-Series 9720P 2.7GHz  8GB                     256GB SSD
## 326  Intel Celeron Dual Core N3350 1.1GHz  4GB            32GB Flash Storage
## 327            Intel Core i5 7200U 2.5GHz  6GB                       1TB HDD
## 328            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 329            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 330           Intel Core i7 7700HQ 2.8GHz 32GB                       1TB SSD
## 331           Intel Core i7 7700HQ 2.8GHz  8GB          256GB SSD +  1TB HDD
## 332            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 333            Intel Core i7 7500U 2.7GHz  8GB          256GB SSD +  1TB HDD
## 334              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 335           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 336            Intel Core i5 7300U 2.6GHz  8GB                     256GB SSD
## 337            Intel Core i5 8250U 1.6GHz  8GB          128GB SSD +  1TB HDD
## 338            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 339  Intel Celeron Dual Core N3350 1.1GHz  4GB                       1TB HDD
## 340            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 341  Intel Celeron Dual Core N3060 1.6GHz  4GB                     500GB HDD
## 342           AMD A12-Series 9720P 3.6GHz 12GB                       2TB HDD
## 343            Intel Core i3 7100U 2.4GHz  8GB                       1TB HDD
## 344            Intel Core i7 8550U 1.8GHz 16GB                     512GB SSD
## 345            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 346           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  2TB HDD
## 347  Intel Celeron Dual Core N3060 1.6GHz  2GB            32GB Flash Storage
## 348            Intel Core i7 8650U 1.9GHz 16GB        512GB SSD +  256GB SSD
## 349  Intel Celeron Dual Core N3350 1.1GHz  4GB            32GB Flash Storage
## 350            Intel Core i5 8250U 1.6GHz  8GB                       1TB HDD
## 351           Intel Core i7 7700HQ 2.8GHz 16GB                     512GB SSD
## 352            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 353           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 354           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 355            Intel Core i7 6500U 2.5GHz 16GB                     512GB SSD
## 356            Intel Core i7 8550U 1.8GHz  8GB          128GB SSD +  2TB HDD
## 357  Intel Celeron Dual Core N3350 1.1GHz  4GB                       1TB HDD
## 358           Intel Core i5 7300HQ 2.5GHz  8GB                       1TB HDD
## 359            Intel Core i5 7200U 2.5GHz  8GB                       2TB HDD
## 360            Intel Core i5 7300U 2.6GHz  8GB                     256GB SSD
## 361              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 362            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 363            Intel Core i5 7200U 2.5GHz  6GB          128GB SSD +  1TB HDD
## 364            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 365              Intel Core i3 6006U 2GHz  8GB                     256GB SSD
## 366  Intel Pentium Quad Core N3710 1.6GHz  8GB                       2TB HDD
## 367            Intel Core i5 8250U 1.6GHz  8GB          128GB SSD +  1TB HDD
## 368           Intel Core i5 7300HQ 2.5GHz  8GB          128GB SSD +  1TB HDD
## 369            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 370            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 371            Intel Core i7 7500U 2.7GHz 12GB          512GB SSD +  2TB HDD
## 372               AMD A9-Series 9420 3GHz  4GB                     128GB SSD
## 373                   AMD Ryzen 1700 3GHz 16GB          256GB SSD +  1TB HDD
## 374             AMD A8-Series 7410 2.2GHz  4GB                     128GB SSD
## 375            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 376               AMD A9-Series 9420 3GHz  4GB                     256GB SSD
## 377  Intel Celeron Quad Core N3450 1.1GHz  4GB                     128GB SSD
## 378 Intel Celeron Dual Core N3060 1.60GHz  4GB                     500GB HDD
## 379  Intel Celeron Dual Core N3350 1.1GHz  4GB            32GB Flash Storage
## 380           Intel Core i7 7700HQ 2.8GHz  8GB                       1TB HDD
## 381           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 382              Intel Core i3 6006U 2GHz  4GB                     128GB SSD
## 383           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 384            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 385            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 386            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 387            Intel Core i3 7100U 2.4GHz  4GB                     128GB SSD
## 388           Intel Core i5 6440HQ 2.6GHz  8GB                     500GB HDD
## 389           Intel Core i7 6820HQ 2.7GHz  8GB                     256GB SSD
## 390            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 391           Intel Core i7 7700HQ 2.8GHz  8GB                       1TB HDD
## 392           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 393            Intel Core i5 8250U 1.6GHz 12GB                       1TB HDD
## 394           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 395            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 396               AMD A9-Series 9420 3GHz  4GB                     256GB SSD
## 397            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 398            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 399           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 400            Intel Core i7 7500U 2.7GHz 16GB                       1TB SSD
## 401  Intel Celeron Dual Core N3350 1.1GHz  4GB                       1TB HDD
## 402           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 403            Intel Core i5 8250U 1.6GHz  8GB          256GB SSD +  1TB HDD
## 404           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 405           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 406            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 407            Intel Core i7 6500U 2.5GHz 16GB                     512GB SSD
## 408            Intel Core i7 7600U 2.8GHz  8GB                     512GB SSD
## 409              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 410  Intel Celeron Dual Core N3350 1.1GHz  2GB            32GB Flash Storage
## 411           Intel Core i7 7700HQ 2.8GHz  8GB                     512GB SSD
## 412           Intel Core i7 7700HQ 2.8GHz  8GB                     512GB SSD
## 413              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 414            Intel Core i7 6500U 2.5GHz  8GB                     256GB SSD
## 415            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 416            Intel Core i5 7200U 2.5GHz  4GB                     256GB SSD
## 417              Intel Core i3 6006U 2GHz  4GB                     128GB SSD
## 418            Intel Core i7 6500U 2.5GHz  8GB                     256GB SSD
## 419            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 420            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 421           Intel Core i7 7700HQ 2.8GHz 16GB                     512GB SSD
## 422  Intel Celeron Quad Core N3450 1.1GHz  6GB            64GB Flash Storage
## 423           Intel Core i7 7820HQ 2.9GHz  8GB                     256GB SSD
## 424            Intel Core i3 7100U 2.4GHz  8GB                       1TB HDD
## 425           Intel Core i7 7820HK 2.9GHz 16GB          256GB SSD +  1TB HDD
## 426           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 427            Intel Core i7 8550U 1.8GHz  8GB          256GB SSD +  2TB HDD
## 428            Intel Core i7 7600U 2.8GHz  8GB                     256GB SSD
## 429           Intel Core i7 7700HQ 2.8GHz 12GB          256GB SSD +  1TB HDD
## 430  Intel Celeron Dual Core N3350 1.1GHz  4GB                      32GB SSD
## 431  Intel Celeron Dual Core N3060 1.6GHz  4GB            16GB Flash Storage
## 432            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 433            Intel Core i3 7130U 2.7GHz  4GB                     128GB SSD
## 434            Intel Core i7 7600U 2.8GHz 16GB                     512GB SSD
## 435           Intel Core i7 7820HQ 2.9GHz 16GB                     512GB SSD
## 436                 AMD Ryzen 1600 3.2GHz  8GB          256GB SSD +  1TB HDD
## 437  Intel Celeron Dual Core N3060 1.6GHz  4GB                     500GB HDD
## 438             Intel Core i7 7Y75 1.3GHz 16GB                     512GB SSD
## 439            Intel Core i7 7500U 2.7GHz 24GB                     512GB SSD
## 440            Intel Core i5 7200U 2.5GHz  4GB                     256GB SSD
## 441             AMD A6-Series 9220 2.5GHz  8GB                       1TB HDD
## 442            Intel Core i5 8250U 1.6GHz  4GB                     256GB SSD
## 443            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 444  Intel Pentium Quad Core N4200 1.1GHz  4GB                     128GB SSD
## 445           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 446           Intel Core i5 7440HQ 2.8GHz  8GB                     256GB SSD
## 447            Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 448           Intel Xeon E3-1505M V6 3GHz  8GB 64GB Flash Storage +  1TB HDD
## 449           Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 450            Intel Core i7 7660U 2.5GHz 16GB                     512GB SSD
## 451            Intel Core i5 7200U 2.5GHz  8GB                     128GB SSD
## 452           Intel Core i7 6820HQ 2.7GHz 16GB                     256GB SSD
## 453           Intel Core i7 7820HQ 2.9GHz  8GB                     512GB SSD
## 454            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 455            Intel Core i7 8550U 1.8GHz  8GB          128GB SSD +  1TB HDD
## 456  Intel Pentium Quad Core N3710 1.6GHz  4GB                     500GB HDD
## 457           Intel Core i7 7700HQ 2.7GHz  8GB                       1TB HDD
## 458           Intel Core M m3-7Y30 2.2GHz  4GB                     128GB SSD
## 459            Intel Core i7 7660U 2.5GHz  8GB                     256GB SSD
## 460              Intel Core i3 6006U 2GHz  8GB                     256GB SSD
## 461              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 462  Intel Celeron Dual Core N3060 1.6GHz  4GB                     128GB SSD
## 463            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 464            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 465           Intel Core i7 7820HQ 2.9GHz  8GB                     256GB SSD
## 466  Intel Pentium Quad Core N4200 1.1GHz  4GB                     500GB HDD
## 467              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 468            Intel Core i5 8250U 1.6GHz  8GB                       2TB HDD
## 469           Intel Core i7 7700HQ 2.8GHz 12GB                       1TB HDD
## 470            Intel Core i7 6600U 2.6GHz 12GB                     256GB SSD
## 471            Intel Core i7 8550U 1.8GHz  8GB                     512GB SSD
## 472            Intel Core i5 7200U 2.5GHz  8GB                     500GB HDD
## 473             Intel Core i5 7Y57 1.2GHz  8GB                     128GB SSD
## 474            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 475           Intel Core i7 6700HQ 2.6GHz 12GB          128GB SSD +  1TB HDD
## 476            Intel Core i3 6100U 2.3GHz  8GB                     128GB SSD
## 477           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 478            Intel Core i5 7200U 2.5GHz  8GB                       1GB SSD
## 479            Intel Core i5 8250U 1.6GHz  8GB                       1TB HDD
## 480            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 481            Intel Core i7 8550U 1.8GHz  8GB                     512GB SSD
## 482            Intel Core i3 7100U 2.4GHz  4GB                       1TB HDD
## 483            Intel Core i5 8250U 1.6GHz  4GB                     128GB SSD
## 484           Intel Atom x5-Z8350 1.44GHz  4GB            64GB Flash Storage
## 485            Intel Core i3 6006U 2.0GHz  4GB                     128GB SSD
## 486            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 487           Intel Core i7 6820HQ 2.7GHz 16GB                     512GB SSD
## 488           Intel Core i7 7700HQ 2.8GHz 16GB                     512GB SSD
## 489            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 490            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 491            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 492            Intel Core i7 7500U 2.7GHz 32GB                     512GB SSD
## 493           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 494           AMD A10-Series 9620P 2.5GHz  8GB                       1TB HDD
## 495           Intel Core i7 6700HQ 2.6GHz 24GB          256GB SSD +  1TB HDD
## 496            Intel Core i5 6200U 2.3GHz  8GB                       1GB SSD
## 497            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 498            Intel Core i7 7600U 2.8GHz  8GB                       1TB SSD
## 499            Intel Core i3 7100U 2.4GHz  8GB                     256GB SSD
## 500            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 501  Intel Celeron Dual Core N3350 1.1GHz  4GB            64GB Flash Storage
## 502            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 503            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 504  Intel Celeron Dual Core N3350 1.1GHz  4GB                     500GB HDD
## 505  Intel Celeron Dual Core N3060 1.6GHz  4GB                      16GB SSD
## 506            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 507            Intel Core i7 7500U 2.7GHz  8GB          256GB SSD +  1TB HDD
## 508            Intel Core i5 8250U 1.6GHz  4GB                       1TB HDD
## 509            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 510           Intel Core i7 7700HQ 2.8GHz  8GB          256GB SSD +  1TB HDD
## 511            Intel Core i5 7200U 2.5GHz  8GB                     128GB SSD
## 512            Intel Core i7 7500U 2.7GHz  4GB                     500GB HDD
## 513            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 514            Intel Core i7 8550U 1.8GHz 16GB          256GB SSD +  2TB HDD
## 515            Intel Core i7 8550U 1.8GHz 16GB                     256GB SSD
## 516  Intel Celeron Dual Core N3350 1.1GHz  2GB            32GB Flash Storage
## 517            Intel Core i5 8250U 1.6GHz  4GB                       1TB HDD
## 518           Intel Core i7 7700HQ 2.8GHz 24GB                     512GB SSD
## 519            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 520           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 521           Intel Core i7 7700HQ 2.8GHz  8GB          256GB SSD +  1TB HDD
## 522            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 523            Intel Core i5 7300U 2.6GHz  8GB                     256GB SSD
## 524              Intel Core i3 6006U 2GHz  4GB                     128GB SSD
## 525            Intel Core i5 8250U 1.6GHz  8GB          128GB SSD +  1TB HDD
## 526            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 527            Intel Core i7 7500U 2.7GHz  4GB                       1TB HDD
## 528              Intel Core i3 6006U 2GHz  8GB                       2TB HDD
## 529            Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 530           Intel Core i5 7440HQ 2.8GHz  8GB                     256GB SSD
## 531           Intel Core i7 7700HQ 2.8GHz 16GB          128GB SSD +  1TB HDD
## 532            Intel Core i5 7200U 2.5GHz  8GB                     500GB HDD
## 533            Intel Core i7 7500U 2.7GHz  8GB          256GB SSD +  1TB HDD
## 534  Intel Celeron Quad Core N3450 1.1GHz  4GB                      32GB SSD
## 535           Intel Core i5 7300HQ 2.5GHz  8GB          128GB SSD +  1TB HDD
## 536            Intel Core i7 7600U 2.8GHz  8GB                     256GB SSD
## 537            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 538  Intel Pentium Quad Core N3710 1.6GHz  4GB                     256GB SSD
## 539           Intel Core i7 7700HQ 2.8GHz 12GB                       1TB HDD
## 540            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 541            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 542              Intel Core i3 6006U 2GHz  4GB                     128GB SSD
## 543            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 544           Intel Core i5 7300HQ 2.5GHz  8GB                       1TB HDD
## 545              AMD E-Series 7110 1.8GHz  4GB                     500GB HDD
## 546            Intel Core i3 7100U 2.4GHz  4GB                     128GB SSD
## 547            Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 548            Intel Core i5 6200U 2.3GHz  4GB                       1TB HDD
## 549              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 550            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 551              Intel Core i3 6006U 2GHz  4GB                     128GB SSD
## 552            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 553           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 554              Intel Core i3 6006U 2GHz  8GB                       1TB HDD
## 555            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 556  Intel Celeron Dual Core N3350 1.1GHz  4GB                     500GB HDD
## 557           Intel Atom x5-Z8350 1.44GHz  4GB            32GB Flash Storage
## 558            Intel Core i7 7500U 2.7GHz  6GB          128GB SSD +  1TB HDD
## 559       AMD A10-Series A10-9620P 2.5GHz  6GB                     128GB SSD
## 560              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 561  Intel Celeron Dual Core N3350 2.0GHz  4GB            32GB Flash Storage
## 562            Intel Core i3 7130U 2.7GHz  4GB                     128GB SSD
## 563              Intel Core M 6Y75 1.2GHz 16GB                     512GB SSD
## 564           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 565           Intel Core i5 7300HQ 2.5GHz  8GB          128GB SSD +  1TB HDD
## 566            Intel Core i5 8250U 1.6GHz  8GB                     128GB SSD
## 567            Intel Core i5 7300U 2.6GHz  4GB                     500GB HDD
## 568            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 569  Intel Pentium Quad Core N4200 1.1GHz  4GB                     500GB HDD
## 570            Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 571           Intel Core i5 7440HQ 2.8GHz  8GB                     500GB HDD
## 572  Intel Pentium Quad Core N3710 1.6GHz  8GB                       2TB HDD
## 573            AMD A9-Series A9-9420 3GHz  6GB                     256GB SSD
## 574            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 575            Intel Core i5 8250U 1.6GHz  4GB                     500GB HDD
## 576           Intel Atom x5-Z8350 1.44GHz  4GB                      32GB SSD
## 577            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 578           Intel Core i7 6820HK 2.7GHz 32GB          256GB SSD +  1TB HDD
## 579           Intel Core i7 7820HK 2.9GHz 16GB          512GB SSD +  1TB HDD
## 580            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 581  Intel Celeron Quad Core N3450 1.1GHz  4GB                      32GB SSD
## 582            Intel Core i5 7300U 2.6GHz  8GB                     500GB HDD
## 583            Intel Core i3 7100U 2.4GHz  4GB                     128GB SSD
## 584            Intel Core i7 7600U 2.8GHz 16GB                     256GB SSD
## 585  Intel Celeron Dual Core N3060 1.6GHz  4GB            16GB Flash Storage
## 586           Intel Core i7 6820HK 2.7GHz 16GB          128GB SSD +  1TB HDD
## 587           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 588            Intel Core i7 6600U 2.6GHz 12GB                     256GB SSD
## 589            Intel Core i7 8550U 1.8GHz 12GB                       1TB HDD
## 590           Intel Core i5 7300HQ 2.5GHz  8GB          128GB SSD +  1TB HDD
## 591            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 592           AMD A12-Series 9720P 3.6GHz 12GB                     512GB SSD
## 593              Intel Core M 7Y30 1.0GHz  4GB                     128GB SSD
## 594           Intel Core i7 7700HQ 2.8GHz 16GB          128GB SSD +  1TB HDD
## 595              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 596            Intel Core i3 6100U 2.3GHz  8GB                       1TB HDD
## 597            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 598           Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 599            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 600           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 601            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 602            Intel Core i3 7100U 2.4GHz  4GB                     500GB HDD
## 603  Intel Celeron Quad Core N3450 1.1GHz  4GB            32GB Flash Storage
## 604           Intel Core i7 6820HK 2.7GHz 16GB          128GB SSD +  1TB HDD
## 605              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 606           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  2TB HDD
## 607            Intel Core i7 6500U 2.5GHz  8GB                     256GB SSD
## 608            Intel Core i5 7200U 2.5GHz  6GB                       1TB HDD
## 609           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 610  Intel Pentium Quad Core N3710 1.6GHz  4GB           128GB Flash Storage
## 611         Intel Xeon E3-1535M v6 3.1GHz 32GB                       1TB SSD
## 612           Intel Core i7 6700HQ 2.6GHz 16GB                       1TB HDD
## 613            Intel Core i3 6006U 2.0GHz  4GB                       1TB HDD
## 614            Intel Core i3 6006U 2.0GHz  4GB                       1TB HDD
## 615            Intel Core i5 7300U 2.6GHz  4GB                     500GB HDD
## 616           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 617            Intel Core i5 7200U 2.5GHz  4GB                     128GB SSD
## 618            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 619           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 620  Intel Celeron Quad Core N3160 1.6GHz  4GB            32GB Flash Storage
## 621            Intel Core i5 7300U 2.6GHz  8GB                     256GB SSD
## 622            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 623            Intel Core i5 8250U 1.6GHz  4GB                       1TB HDD
## 624            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 625            Intel Core i5 6200U 2.3GHz  4GB                     500GB HDD
## 626            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 627           Intel Atom x5-Z8350 1.44GHz  2GB            32GB Flash Storage
## 628            Intel Core i5 7200U 2.5GHz  4GB                     128GB SSD
## 629            Intel Core i5 7200U 2.5GHz  6GB                       1TB HDD
## 630           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 631            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 632           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 633            Intel Core i5 8250U 1.6GHz  4GB                     256GB SSD
## 634              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 635  Intel Celeron Dual Core N3350 1.1GHz  8GB                       1TB HDD
## 636           Intel Core i5 7300HQ 2.5GHz  8GB                       1TB HDD
## 637            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 638  Intel Celeron Dual Core N3060 1.6GHz  2GB            32GB Flash Storage
## 639            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 640           Intel Core i7 7700HQ 2.8GHz 16GB                       1TB SSD
## 641           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 642               AMD A9-Series 9420 3GHz  8GB                       1TB HDD
## 643            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 644           Intel Core i7 7700HQ 2.8GHz  8GB                       1TB HDD
## 645              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 646  Intel Celeron Dual Core N3060 1.6GHz  4GB            32GB Flash Storage
## 647            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 648           Intel Core i7 7700HQ 2.8GHz 16GB                     256GB SSD
## 649            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 650            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 651           Intel Core i7 6820HK 2.7GHz 32GB                     512GB SSD
## 652           Intel Core i5 7300HQ 2.5GHz  8GB                       1TB HDD
## 653            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 654           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 655              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 656            Intel Core i5 7200U 2.5GHz  8GB                     500GB HDD
## 657            Intel Core i7 8550U 1.8GHz  8GB                     256GB SSD
## 658            Intel Core i7 8550U 1.8GHz 16GB          256GB SSD +  2TB HDD
## 659           Intel Core i7 6700HQ 2.6GHz  8GB          128GB SSD +  1TB HDD
## 660           Intel Core i7 7700HQ 2.8GHz 32GB          512GB SSD +  1TB HDD
## 661            Intel Core i5 6300U 2.4GHz  8GB                     256GB SSD
## 662  Intel Celeron Dual Core N3350 1.1GHz  4GB                     500GB HDD
## 663            Intel Core i5 6200U 2.3GHz  4GB                     500GB HDD
## 664              Intel Core i3 6006U 2GHz  6GB                       1TB HDD
## 665           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 666            Intel Core i3 6100U 2.1GHz  4GB                     128GB SSD
## 667            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 668            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 669            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 670              Intel Core i3 6006U 2GHz  4GB                     128GB SSD
## 671            Intel Core i7 7600U 2.8GHz  8GB                     256GB SSD
## 672            Intel Core i5 7200U 2.5GHz  8GB          128GB SSD +  1TB HDD
## 673            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 674           AMD E-Series E2-9000 2.2GHz  4GB                     128GB SSD
## 675            Intel Core i3 7100U 2.4GHz  4GB                     128GB SSD
## 676           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 677            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 678  Intel Celeron Dual Core N3350 1.1GHz  8GB            64GB Flash Storage
## 679            Intel Core i7 8550U 1.8GHz  8GB                     512GB SSD
## 680           Intel Core i5 7300HQ 2.5GHz 16GB                     256GB SSD
## 681           Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 682  Intel Celeron Dual Core N3350 1.1GHz  4GB                     128GB SSD
## 683           Intel Core i5 7300HQ 2.5GHz 16GB          128GB SSD +  1TB HDD
## 684              Intel Core i3 6006U 2GHz  4GB                     256GB SSD
## 685            Intel Core i7 8550U 1.8GHz  8GB                     512GB SSD
## 686           Intel Core i7 7820HK 2.9GHz 16GB          256GB SSD +  1TB HDD
## 687            Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 688              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 689           AMD A10-Series 9600P 2.4GHz  6GB                       2TB HDD
## 690  Intel Celeron Dual Core 3855U 1.6GHz  4GB                     500GB HDD
## 691  Intel Celeron Dual Core 3855U 1.6GHz  4GB            32GB Flash Storage
## 692            Intel Core i5 7200U 2.5GHz  4GB                     256GB SSD
## 693           Intel Core i7 7700HQ 2.8GHz  8GB                     500GB HDD
## 694            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 695            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 696  Intel Celeron Dual Core N3050 1.6GHz  4GB            32GB Flash Storage
## 697            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 698           Intel Core M M3-6Y30 0.9GHz  4GB            64GB Flash Storage
## 699            Intel Core i7 6500U 2.5GHz 16GB                     512GB SSD
## 700            Intel Core i7 7500U 2.7GHz  4GB                     500GB HDD
## 701           Intel Core i5 7300HQ 2.5GHz  8GB                       1TB HDD
## 702             AMD A9-Series 9420 2.9GHz  4GB                     256GB SSD
## 703           AMD A12-Series 9720P 3.6GHz  8GB                       1TB HDD
## 704            Intel Core i5 7200U 2.5GHz  4GB            1TB HDD +  1TB HDD
## 705              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 706            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 707            Intel Core i5 8250U 1.6GHz  8GB                     256GB SSD
## 708            Intel Core i7 6500U 2.5GHz 16GB                     512GB SSD
## 709           Intel Core i5 6300HQ 2.3GHz  8GB                     256GB SSD
## 710           AMD A10-Series 9620P 2.5GHz  6GB                       2TB HDD
## 711           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 712           Intel Core i5 7440HQ 2.8GHz  8GB                     256GB SSD
## 713            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 714  Intel Celeron Dual Core N3350 1.1GHz  4GB            32GB Flash Storage
## 715            Intel Core i5 7300U 2.6GHz 16GB                     512GB SSD
## 716            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 717            Intel Core i5 7300U 2.6GHz  8GB                     256GB SSD
## 718               AMD A6-Series 7310 2GHz  4GB                     500GB HDD
## 719              Intel Atom Z8350 1.92GHz  4GB                      32GB HDD
## 720            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 721            Intel Core i7 6500U 2.5GHz  8GB                     512GB SSD
## 722            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 723            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 724           Intel Core i7 7700HQ 2.8GHz 32GB            1TB SSD +  1TB HDD
## 725           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 726            Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 727            Intel Core i5 8250U 1.6GHz  8GB          128GB SSD +  1TB HDD
## 728            Intel Core i3 7100U 2.4GHz  4GB                       1TB HDD
## 729            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 730               AMD A9-Series 9420 3GHz  4GB                       1TB HDD
## 731           Intel Core i7 6700HQ 2.6GHz 16GB          128GB SSD +  1TB HDD
## 732            Intel Core i5 7200U 2.5GHz 12GB                       1TB HDD
## 733            AMD A9-Series A9-9420 3GHz  6GB          128GB SSD +  1TB HDD
## 734            Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 735            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 736            Intel Core i7 7500U 2.7GHz  4GB                       1TB HDD
## 737           Intel Core i7 7700HQ 2.8GHz 16GB                     256GB SSD
## 738            Intel Core i5 8250U 1.6GHz  8GB                       1TB HDD
## 739           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 740              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 741            Intel Core i7 7500U 2.7GHz  8GB          128GB SSD +  1TB HDD
## 742              Intel Core i3 6006U 2GHz  8GB                     256GB SSD
## 743            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 744            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 745            Intel Core i7 7600U 2.8GHz 16GB                       1TB SSD
## 746  Intel Celeron Dual Core N3060 1.6GHz  2GB            32GB Flash Storage
## 747            Intel Core i7 7500U 2.7GHz 16GB                     256GB SSD
## 748              Intel Core i3 6006U 2GHz  8GB                     256GB SSD
## 749            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 750         Intel Xeon E3-1535M v5 2.9GHz 16GB                     256GB SSD
## 751  Intel Celeron Dual Core N3060 1.6GHz  4GB                     128GB SSD
## 752            Intel Core i5 6300U 2.4GHz  8GB                     256GB SSD
## 753           Intel Core i5 6300HQ 2.3GHz  4GB                       1TB HDD
## 754            Intel Core i5 6200U 2.3GHz  4GB                       1GB SSD
## 755            Intel Core i7 7500U 2.7GHz  4GB                     256GB SSD
## 756            Intel Core i5 6260U 1.8GHz  8GB                     256GB SSD
## 757           Intel Core i5 7300HQ 2.5GHz  8GB          128GB SSD +  1TB HDD
## 758           Intel Core i7 6700HQ 2.6GHz  8GB                     256GB SSD
## 759           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 760            Intel Core i5 7200U 2.5GHz  4GB                     256GB SSD
## 761           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 762            Intel Core i7 7600U 2.8GHz 16GB                     256GB SSD
## 763             Intel Core i5 7Y57 1.2GHz  8GB                     256GB SSD
## 764            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 765              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 766            Intel Core i5 6200U 2.3GHz  4GB                     128GB SSD
## 767  Intel Pentium Quad Core N4200 1.1GHz  4GB                       1TB HDD
## 768           Intel Core i7 6700HQ 2.6GHz 16GB          128GB SSD +  1TB HDD
## 769            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 770  Intel Pentium Quad Core N4200 1.1GHz  4GB                       1TB HDD
## 771            Intel Core i7 7500U 2.7GHz 16GB                     256GB SSD
## 772            Intel Core i7 7500U 2.7GHz 16GB                     256GB SSD
## 773            Intel Core i5 6200U 2.3GHz  4GB                     128GB SSD
## 774           Intel Core i7 7700HQ 2.8GHz  8GB                       1TB HDD
## 775            Intel Core i5 6200U 2.3GHz  4GB                     256GB SSD
## 776            Intel Core i7 7500U 2.7GHz 12GB                       2TB HDD
## 777           Intel Core i7 6820HQ 2.7GHz 16GB                     512GB SSD
## 778            Intel Core i3 7100U 2.4GHz  4GB                     128GB SSD
## 779           Intel Core i7 7700HQ 2.8GHz 16GB                     512GB SSD
## 780  Intel Pentium Dual Core N4200 1.1GHz  8GB                     128GB SSD
## 781           Intel Core i7 7700HQ 2.8GHz 32GB            1TB SSD +  1TB HDD
## 782           Intel Core i7 6700HQ 2.6GHz 16GB          256GB SSD +  1TB HDD
## 783            Intel Core i7 6600U 2.6GHz 16GB                     512GB SSD
## 784  Intel Celeron Quad Core N3710 1.6GHz  8GB                       1TB HDD
## 785            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 786           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 787           Intel Core i5 7300HQ 2.5GHz  8GB          128GB SSD +  1TB HDD
## 788           Intel Core i7 7700HQ 2.8GHz  4GB                       1TB HDD
## 789           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 790           Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 791           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 792  Intel Celeron Dual Core N3350 1.1GHz  4GB            32GB Flash Storage
## 793            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 794            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 795                   Intel Core M 1.2GHz  8GB           512GB Flash Storage
## 796            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 797  Intel Celeron Dual Core N3350 1.1GHz  4GB            32GB Flash Storage
## 798            Intel Core i5 7200U 2.5GHz  8GB                     128GB SSD
## 799            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 800              Intel Core i3 6006U 2GHz  8GB                     256GB SSD
## 801           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 802            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 803            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 804           Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 805  Intel Pentium Quad Core N4200 1.1GHz  4GB                     128GB SSD
## 806            Intel Core i5 7300U 2.6GHz  8GB                     256GB SSD
## 807            Intel Core i5 6200U 2.3GHz  4GB                     500GB HDD
## 808           AMD A12-Series 9700P 2.5GHz  8GB                       2TB HDD
## 809           Intel Core i7 7700HQ 2.8GHz 16GB                     512GB SSD
## 810            Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 811           Intel Core i7 7700HQ 2.8GHz 12GB                       1TB HDD
## 812           Intel Core i7 7700HQ 2.8GHz 16GB          512GB SSD +  1TB HDD
## 813            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 814            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 815            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 816            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 817            Intel Core i7 7500U 2.5GHz 16GB                     512GB SSD
## 818  Intel Celeron Dual Core N3060 1.6GHz  4GB            16GB Flash Storage
## 819           Intel Core i7 7700HQ 2.8GHz 16GB          128GB SSD +  1TB HDD
## 820            Intel Core i5 6200U 2.3GHz  4GB                     500GB HDD
## 821              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 822            Intel Core i5 7200U 2.5GHz  4GB                     128GB SSD
## 823            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 824           Intel Core i5 7300HQ 2.5GHz  8GB                     256GB SSD
## 825            Intel Core i5 7200U 2.5GHz  8GB           256GB Flash Storage
## 826  Intel Pentium Dual Core 4405U 2.1GHz  4GB                     128GB SSD
## 827            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 828              Intel Core i3 6006U 2GHz  4GB                     500GB HDD
## 829  Intel Celeron Dual Core N3060 1.6GHz  4GB            32GB Flash Storage
## 830            Intel Core i3 7100U 2.4GHz  8GB                     128GB SSD
## 831           Intel Core i7 7820HK 2.9GHz 32GB                     512GB SSD
## 832            Intel Core i7 6600U 2.6GHz 16GB                     512GB SSD
## 833            Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 834            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 835            Intel Core i5 7300U 2.6GHz  8GB                     256GB SSD
## 836           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 837           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 838            Intel Core i3 7100U 2.4GHz  4GB                     500GB HDD
## 839  Intel Celeron Quad Core N3160 1.6GHz  4GB            16GB Flash Storage
## 840            Intel Core i5 7200U 2.5GHz  8GB                     128GB HDD
## 841           Intel Core i7 6700HQ 2.6GHz 16GB          512GB SSD +  1TB HDD
## 842           Intel Core i7 7700HQ 2.8GHz 32GB          512GB SSD +  1TB HDD
## 843            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 844            Intel Core i5 7200U 2.5GHz  8GB                     128GB SSD
## 845            Intel Core i7 6500U 2.5GHz  8GB                     512GB SSD
## 846            Intel Core i7 7500U 2.7GHz  4GB                     256GB SSD
## 847  Intel Celeron Dual Core N3350 1.1GHz  4GB            32GB Flash Storage
## 848            Intel Core i5 6200U 2.3GHz  8GB                     512GB SSD
## 849            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 850            Intel Core i7 6500U 2.5GHz  8GB                     512GB SSD
## 851  Intel Celeron Dual Core N3060 1.6GHz  4GB                     128GB SSD
## 852           Intel Core i7 7700HQ 2.8GHz 16GB          128GB SSD +  1TB HDD
## 853            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 854           Intel Core i7 7700HQ 2.8GHz  8GB                     256GB SSD
## 855            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 856            Intel Core i5 7200U 2.5GHz  8GB                     128GB SSD
## 857  Intel Pentium Quad Core N4200 1.1GHz  4GB                       1TB HDD
## 858            Intel Core i7 7600U 2.8GHz  8GB                     256GB SSD
## 859            Intel Core i5 6200U 2.3GHz  8GB                       1TB HDD
## 860            Intel Core i3 6006U 2.0GHz  4GB                       1TB HDD
## 861            Intel Core i5 7200U 2.5GHz  8GB                       1TB HDD
## 862            Intel Core i5 7300U 2.6GHz  8GB                     256GB SSD
## 863            Intel Core i5 7200U 2.5GHz  4GB                     128GB SSD
## 864           Intel Core i5 7300HQ 2.5GHz  8GB                       1TB HDD
## 865            Intel Core i7 7660U 2.5GHz 16GB                     512GB SSD
## 866            Intel Core i5 6200U 2.3GHz  4GB                     500GB HDD
## 867            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 868            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 869            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 870           Intel Core i7 7700HQ 2.8GHz  8GB                       1TB HDD
## 871            Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 872              Intel Core i3 6006U 2GHz  4GB                       1TB HDD
## 873            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 874            Intel Core i3 7100U 2.4GHz  4GB                       1GB SSD
## 875            Intel Core i7 7500U 2.7GHz 16GB                     256GB SSD
## 876            Intel Core i7 7600U 2.8GHz  8GB                     256GB SSD
## 877  Intel Pentium Quad Core N4200 1.1GHz  4GB                       1TB HDD
## 878            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 879            Intel Core i5 7200U 2.5GHz  4GB          128GB SSD +  1TB HDD
## 880            Intel Core i5 7200U 2.5GHz  4GB                     256GB SSD
## 881            Intel Core i5 7200U 2.5GHz  4GB                     256GB SSD
## 882            Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 883  Intel Celeron Dual Core N3350 1.1GHz  4GB            32GB Flash Storage
## 884            Intel Core i7 6500U 2.5GHz  8GB                       1TB HDD
## 885  Intel Pentium Quad Core N3710 1.6GHz  4GB                     500GB HDD
## 886            Intel Core i5 7200U 2.5GHz  4GB                     256GB SSD
## 887            Intel Core i3 6006U 2.0GHz  4GB                       1TB HDD
## 888           Intel Core i5 7300HQ 2.5GHz 12GB          128GB SSD +  1TB HDD
## 889  Intel Celeron Dual Core N3060 1.6GHz  4GB            32GB Flash Storage
## 890             AMD A4-Series 7210 2.2GHz  4GB                     500GB HDD
## 891            Intel Core i5 7200U 2.5GHz  4GB                     128GB SSD
## 892            Intel Core i7 7500U 2.7GHz 16GB                     256GB SSD
## 893            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 894            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 895           Intel Core i7 6700HQ 2.6GHz 16GB          512GB SSD +  2TB HDD
## 896            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 897           Intel Core i7 7700HQ 2.8GHz  8GB                       1TB HDD
## 898            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 899            Intel Core i3 6006U 2.0GHz  4GB                       1TB HDD
## 900            Intel Core i5 7300U 2.6GHz  8GB                     500GB HDD
## 901             Intel Core i7 7Y75 1.3GHz  8GB                     512GB SSD
## 902           Intel Core i7 6820HK 2.7GHz 32GB        256GB SSD +  256GB SSD
## 903             Intel Core i7 7Y75 1.3GHz 16GB                     256GB SSD
## 904            Intel Core i7 7500U 2.7GHz  8GB           256GB Flash Storage
## 905            Intel Core i5 7200U 2.5GHz  8GB                     512GB SSD
## 906            Intel Core i7 7500U 2.7GHz 16GB                     512GB SSD
## 907            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 908  Intel Celeron Dual Core 3205U 1.5GHz  4GB            16GB Flash Storage
## 909           Intel Core i5 6300HQ 2.3GHz  8GB          128GB SSD +  1TB HDD
## 910            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 911           Intel Core i5 7440HQ 2.8GHz  8GB                     256GB SSD
## 912              Intel Core M 6Y75 1.2GHz  8GB                     240GB SSD
## 913            Intel Core i7 7500U 2.7GHz  6GB                     256GB SSD
## 914            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 915            Intel Core i3 7100U 2.4GHz  4GB                       1TB HDD
## 916            Intel Core i5 7200U 2.5GHz  4GB                     128GB SSD
## 917            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 918           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 919           Intel Core i7 7700HQ 2.8GHz 16GB          128GB SSD +  1TB HDD
## 920           Intel Core i5 7300HQ 2.5GHz  8GB          128GB SSD +  1TB HDD
## 921            Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 922            Intel Core i7 6500U 2.5GHz  8GB                     256GB SSD
## 923            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 924            Intel Core i7 6600U 2.6GHz 16GB                     256GB SSD
## 925            Intel Core i5 7200U 2.5GHz  8GB                     512GB SSD
## 926            Intel Core i5 6200U 2.3GHz  4GB                     500GB HDD
## 927            Intel Core i7 7500U 2.7GHz  8GB                     256GB SSD
## 928            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 929            Intel Core i5 7200U 2.5GHz  4GB                       1TB HDD
## 930            Intel Core i5 6200U 2.3GHz  4GB                     500GB HDD
## 931  Intel Pentium Quad Core N4200 1.1GHz  4GB                       1TB HDD
## 932            Intel Core i5 6200U 2.3GHz  4GB                     500GB HDD
## 933  Intel Celeron Dual Core N3060 1.6GHz  4GB                       1TB HDD
## 934            Intel Core i7 6560U 2.2GHz 16GB                       1TB SSD
## 935            Intel Core i5 6200U 2.3GHz  4GB                     128GB SSD
## 936            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 937            Intel Core i3 6006U 2.0GHz  4GB                       1TB HDD
## 938           Intel Core i7 7700HQ 2.8GHz  8GB          128GB SSD +  1TB HDD
## 939            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 940           Intel Core i7 6820HK 2.7GHz 16GB          512GB SSD +  1TB HDD
## 941           Intel Core i5 6300HQ 2.3GHz  8GB          128GB SSD +  1TB HDD
## 942  Intel Pentium Quad Core N3710 1.6GHz  4GB                       1TB HDD
## 943            Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 944            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 945           Intel Core M m7-6Y75 1.2GHz  8GB                     256GB SSD
## 946                   AMD FX 8800P 2.1GHz 16GB          512GB SSD +  1TB HDD
## 947            Intel Core i5 7200U 2.5GHz  8GB                     256GB SSD
## 948            Intel Core i7 7500U 2.7GHz  8GB                       1TB HDD
## 949            Intel Core i3 6006U 2.0GHz  4GB                       1TB HDD
## 950  Intel Celeron Dual Core N3060 1.6GHz  4GB            32GB Flash Storage
## 951           Intel Core i7 6820HQ 2.7GHz  8GB                       8GB SSD
## 952            Intel Core i7 7600U 2.8GHz  8GB                     256GB SSD
## 953            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 954           Intel Core M M7-6Y75 1.2GHz  8GB            64GB Flash Storage
## 955            Intel Core i7 6600U 2.6GHz  8GB                     256GB SSD
## 956           Intel Core i7 7700HQ 2.8GHz 16GB          512GB SSD +  1TB HDD
## 957             Intel Core i5 7Y54 1.2GHz  8GB                     256GB SSD
## 958  Intel Pentium Quad Core N4200 1.1GHz  4GB                     256GB SSD
## 959            Intel Core i7 6500U 2.5GHz  8GB                     256GB SSD
## 960  Intel Celeron Dual Core N3060 1.6GHz  4GB            32GB Flash Storage
## 961            Intel Core i5 6300U 2.4GHz  8GB                     256GB SSD
## 962            Intel Core i5 7300U 2.6GHz  8GB                     256GB SSD
## 963            Intel Core i5 7200U 2.5GHz 12GB          128GB SSD +  1TB HDD
## 964            Intel Core i7 7500U 2.7GHz  8GB                     512GB SSD
## 965           Intel Core i5 7200U 2.50GHz  8GB                       1TB HDD
## 966            Intel Core i3 6006U 2.0GHz  4GB                       1TB HDD
## 967            Intel Core i5 7200U 2.5GHz  4GB                     500GB HDD
## 968            Intel Core i3 7100U 2.4GHz  4GB                     500GB HDD
## 969           Intel Core i7 7700HQ 2.8GHz 32GB          256GB SSD +  1TB HDD
## 970            Intel Core i5 7200U 2.5GHz  6GB                     256GB SSD
## 971             Intel Core i7 7Y75 1.3GHz 16GB                     512GB SSD
## 972            Intel Core i7 6600U 2.6GHz  8GB                     256GB SSD
## 973           Intel Core i7 6700HQ 2.6GHz 32GB          256GB SSD +  1TB HDD
## 974            Intel Core i5 6200U 2.3GHz  8GB                     256GB SSD
## 975           Intel Core i7 7700HQ 2.8GHz 16GB          256GB SSD +  1TB HDD
## 976           Intel Core i5 7200U 2.70GHz  8GB          128GB SSD +  1TB HDD
## 977            Intel Core i5 6200U 2.3GHz  4GB                  508GB Hybrid
##                                GPU Operating.System Operating.System.Version
## 1     Intel Iris Plus Graphics 640            macOS                         
## 2           Intel HD Graphics 6000            macOS                         
## 3            Intel HD Graphics 620            No OS                         
## 4               AMD Radeon Pro 455            macOS                         
## 5     Intel Iris Plus Graphics 650            macOS                         
## 6                    AMD Radeon R5          Windows                       10
## 7          Intel Iris Pro Graphics           Mac OS                        X
## 8           Intel HD Graphics 6000            macOS                         
## 9             Nvidia GeForce MX150          Windows                       10
## 10          Intel UHD Graphics 620          Windows                       10
## 11           Intel HD Graphics 620            No OS                         
## 12           Intel HD Graphics 520            No OS                         
## 13              AMD Radeon Pro 555            macOS                         
## 14              AMD Radeon R5 M430          Windows                       10
## 15           Intel HD Graphics 615            macOS                         
## 16    Intel Iris Plus Graphics 640            macOS                         
## 17              AMD Radeon R5 M430          Windows                       10
## 18              AMD Radeon Pro 560            macOS                         
## 19            Nvidia GeForce 940MX            No OS                         
## 20          Intel UHD Graphics 620          Windows                       10
## 21           Intel HD Graphics 400          Windows                       10
## 22         Nvidia GeForce GTX 1050          Windows                       10
## 23                   AMD Radeon R2            No OS                         
## 24          Intel UHD Graphics 620          Windows                       10
## 25           Intel HD Graphics 620          Windows                       10
## 26           Intel HD Graphics 520          Windows                       10
## 27          Intel HD Graphics 6000           Mac OS                        X
## 28                  AMD Radeon 530          Windows                       10
## 29          Intel UHD Graphics 620          Windows                       10
## 30            Nvidia GeForce 930MX          Windows                       10
## 31               Intel HD Graphics          Windows                       10
## 32                   AMD Radeon R2          Windows                       10
## 33                  AMD Radeon 530          Windows                       10
## 34          Intel UHD Graphics 620          Windows                       10
## 35          Intel HD Graphics 6000           Mac OS                        X
## 36           Intel HD Graphics 500          Windows                       10
## 37           Intel HD Graphics 620            Linux                         
## 38                  AMD Radeon 530          Windows                       10
## 39           Intel HD Graphics 620          Windows                       10
## 40           Nvidia GeForce 930MX           Windows                       10
## 41           Intel HD Graphics 620            Linux                         
## 42         Nvidia GeForce GTX 1060          Windows                       10
## 43            Nvidia GeForce 940MX            Linux                         
## 44          Intel UHD Graphics 620          Windows                       10
## 45            Nvidia GeForce 150MX          Windows                       10
## 46         Intel Iris Graphics 540            macOS                         
## 47           Intel HD Graphics 520            No OS                         
## 48               AMD Radeon RX 580          Windows                       10
## 49              AMD Radeon R5 M430          Windows                       10
## 50            Nvidia GeForce 920MX          Windows                       10
## 51           Intel HD Graphics 400          Android                         
## 52            Nvidia GeForce MX150          Windows                       10
## 53          AMD Radeon R4 Graphics          Windows                       10
## 54          Intel UHD Graphics 620          Windows                       10
## 55           Intel HD Graphics 620          Windows                       10
## 56                  AMD Radeon 520          Windows                       10
## 57           Intel HD Graphics 520          Windows                       10
## 58           Intel HD Graphics 620          Windows                       10
## 59         Nvidia GeForce GTX 1070          Windows                       10
## 60           Intel HD Graphics 520            Linux                         
## 61                  AMD Radeon 530          Windows                       10
## 62          Intel UHD Graphics 620          Windows                       10
## 63           Intel HD Graphics 620            No OS                         
## 64          Intel UHD Graphics 620          Windows                       10
## 65           Intel HD Graphics 620          Windows                       10
## 66      Nvidia GeForce GTX 1050 Ti          Windows                       10
## 67                  AMD Radeon 520          Windows                       10
## 68           Intel HD Graphics 400          Windows                       10
## 69           Intel HD Graphics 620          Windows                       10
## 70      Nvidia GeForce GTX 1050 Ti            Linux                         
## 71           Intel HD Graphics 620          Windows                     10 S
## 72                  AMD Radeon 530          Windows                       10
## 73                  AMD Radeon 530          Windows                       10
## 74         Nvidia GeForce GTX 1050          Windows                       10
## 75           Intel HD Graphics 520          Windows                       10
## 76         Nvidia GeForce GTX 1050          Windows                       10
## 77           Intel HD Graphics 620            No OS                         
## 78          Intel UHD Graphics 620          Windows                       10
## 79            Nvidia GeForce MX130          Windows                       10
## 80            Nvidia GeForce 930MX          Windows                       10
## 81          Intel UHD Graphics 620          Windows                       10
## 82           Intel HD Graphics 615            macOS                         
## 83           Intel HD Graphics 620          Windows                       10
## 84                 AMD R4 Graphics          Windows                       10
## 85                   AMD Radeon R5          Windows                       10
## 86      Nvidia GeForce GTX 1050 Ti          Windows                       10
## 87        Nvidia GeForce GTX 940MX          Windows                       10
## 88           Intel HD Graphics 620          Windows                       10
## 89         Nvidia GeForce GTX 1060          Windows                       10
## 90          Intel UHD Graphics 620          Windows                       10
## 91               AMD Radeon RX 560          Windows                       10
## 92            Nvidia GeForce MX150          Windows                       10
## 93          Intel UHD Graphics 620          Windows                       10
## 94         Nvidia GeForce GTX 1060          Windows                       10
## 95           Intel HD Graphics 620          Windows                       10
## 96          Intel UHD Graphics 620          Windows                       10
## 97              AMD Radeon R5 M430            Linux                         
## 98              AMD Radeon R5 M430            Linux                         
## 99             Nvidia GeForce 920M          Windows                       10
## 100        Nvidia GeForce GTX 1050          Windows                       10
## 101                 AMD Radeon 530          Windows                       10
## 102                  AMD Radeon R2          Windows                       10
## 103                 AMD Radeon 520            Linux                         
## 104           Nvidia GeForce MX150          Windows                       10
## 105          Intel HD Graphics 620          Windows                     10 S
## 106           Nvidia GeForce 940MX          Windows                       10
## 107          Intel HD Graphics 520          Windows                       10
## 108           Nvidia GeForce 940MX          Windows                       10
## 109     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 110          Intel HD Graphics 620          Windows                       10
## 111           Nvidia GeForce MX150          Windows                       10
## 112   Intel Iris Plus Graphics 640          Windows                       10
## 113          Intel HD Graphics 620          Windows                       10
## 114         Intel UHD Graphics 620          Windows                       10
## 115         Intel UHD Graphics 620          Windows                       10
## 116         Intel UHD Graphics 620          Windows                       10
## 117         Intel UHD Graphics 620          Windows                       10
## 118           Nvidia GeForce 940MX          Windows                       10
## 119           Nvidia GeForce 920MX          Windows                       10
## 120           Nvidia GeForce 940MX          Windows                       10
## 121          Intel HD Graphics 620          Windows                       10
## 122        Nvidia GeForce GTX 1070          Windows                       10
## 123           Nvidia GeForce 940MX            No OS                         
## 124          Nvidia GeForce 930MX           Windows                       10
## 125                  AMD Radeon R5          Windows                       10
## 126          Intel HD Graphics 400            No OS                         
## 127         Intel UHD Graphics 620          Windows                       10
## 128                  AMD Radeon R2          Windows                     10 S
## 129                 AMD Radeon 530          Windows                       10
## 130         Intel UHD Graphics 620          Windows                       10
## 131             AMD Radeon R7 M445          Windows                       10
## 132             AMD Radeon R5 M430          Windows                       10
## 133         Intel UHD Graphics 620          Windows                       10
## 134           Nvidia GeForce MX130          Windows                       10
## 135          Intel HD Graphics 620          Windows                       10
## 136         Intel UHD Graphics 620          Windows                       10
## 137          Intel HD Graphics 500            No OS                         
## 138        Nvidia GeForce GTX 1050          Windows                       10
## 139           Nvidia GeForce 920MX            No OS                         
## 140          Intel HD Graphics 620          Windows                       10
## 141           Nvidia GeForce MX130          Windows                       10
## 142              AMD Radeon RX 550          Windows                       10
## 143       Nvidia GeForce GTX 1050M            No OS                         
## 144          Intel HD Graphics 520          Windows                       10
## 145         AMD Radeon R4 Graphics          Windows                       10
## 146         Intel UHD Graphics 620          Windows                       10
## 147          Intel HD Graphics 515          Windows                       10
## 148          Intel HD Graphics 500          Windows                       10
## 149        Nvidia GeForce GTX 1070          Windows                       10
## 150          Intel HD Graphics 520          Windows                       10
## 151        Nvidia GeForce GTX 1050          Windows                       10
## 152        Nvidia GeForce GTX 1050          Windows                       10
## 153          Intel HD Graphics 620          Windows                       10
## 154        Nvidia GeForce GTX 1060          Windows                       10
## 155          Intel HD Graphics 620          Windows                       10
## 156                 AMD Radeon 520          Windows                       10
## 157          Intel HD Graphics 620          Windows                       10
## 158          Intel HD Graphics 620          Windows                       10
## 159         Intel UHD Graphics 620          Windows                       10
## 160          Intel HD Graphics 520          Windows                       10
## 161             AMD Radeon R5 M420          Windows                       10
## 162           Nvidia GeForce MX150          Windows                       10
## 163                 AMD Radeon 520          Windows                       10
## 164     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 165          Intel HD Graphics 500          Windows                       10
## 166        Nvidia GeForce GTX 1060          Windows                       10
## 167          Intel HD Graphics 505          Windows                       10
## 168        Nvidia GeForce GTX 1050          Windows                       10
## 169           Nvidia GeForce MX150          Windows                       10
## 170         Intel UHD Graphics 620          Windows                       10
## 171          Intel HD Graphics 620          Windows                       10
## 172                 AMD Radeon 520          Windows                       10
## 173         AMD Radeon R4 Graphics            No OS                         
## 174          Intel HD Graphics 620          Windows                       10
## 175           Nvidia GeForce 930MX          Windows                       10
## 176          Intel HD Graphics 620          Windows                       10
## 177          Intel HD Graphics 520          Windows                       10
## 178             Nvidia GTX 980 SLI          Windows                       10
## 179                 AMD R17M-M1-70          Windows                       10
## 180         Intel UHD Graphics 620          Windows                       10
## 181                 AMD Radeon 530            Linux                         
## 182         Intel UHD Graphics 620          Windows                       10
## 183         Intel UHD Graphics 620          Windows                       10
## 184          Intel HD Graphics 620          Windows                       10
## 185           Nvidia GeForce MX150            No OS                         
## 186           Nvidia GeForce 150MX          Windows                       10
## 187        Nvidia GeForce GTX 1050          Windows                       10
## 188        Nvidia GeForce GTX 1050            No OS                         
## 189          Intel HD Graphics 615          Windows                       10
## 190                 AMD Radeon 530          Windows                       10
## 191          Intel HD Graphics 620          Windows                       10
## 192          Intel HD Graphics 500          Windows                       10
## 193           Nvidia GeForce MX150            No OS                         
## 194           Nvidia GeForce MX150            No OS                         
## 195         Intel UHD Graphics 620          Windows                       10
## 196           Nvidia GeForce 930MX          Windows                       10
## 197        Nvidia GeForce GTX 1080          Windows                       10
## 198         Intel UHD Graphics 620          Windows                       10
## 199        Nvidia GeForce GTX 1050          Windows                       10
## 200          Nvidia GeForce 930MX           Windows                       10
## 201        Nvidia GeForce GTX 1060          Windows                       10
## 202          Intel HD Graphics 520          Windows                       10
## 203           Nvidia GeForce 940MX          Windows                       10
## 204        Nvidia GeForce GTX 1060          Windows                       10
## 205            Nvidia Quadro M1200          Windows                       10
## 206        Nvidia GeForce GTX 1060            No OS                         
## 207          Intel HD Graphics 620          Windows                       10
## 208         Intel UHD Graphics 620          Windows                       10
## 209         Intel UHD Graphics 620          Windows                       10
## 210          Intel HD Graphics 620          Windows                       10
## 211        Nvidia GeForce GTX 1050            Linux                         
## 212        Nvidia GeForce GTX 1050          Windows                       10
## 213          Intel HD Graphics 520            No OS                         
## 214          Intel HD Graphics 620            No OS                         
## 215          Intel HD Graphics 620          Windows                       10
## 216                 AMD Radeon 530          Windows                       10
## 217       Nvidia GeForce GTX 940MX            No OS                         
## 218           Nvidia GeForce 930MX          Windows                       10
## 219         Intel UHD Graphics 620          Windows                       10
## 220         Intel UHD Graphics 620          Windows                       10
## 221                 AMD Radeon 520            Linux                         
## 222         Intel UHD Graphics 620          Windows                       10
## 223          Intel HD Graphics 520          Windows                       10
## 224         Intel UHD Graphics 620          Windows                       10
## 225        Nvidia GeForce GTX 1060          Windows                       10
## 226           Nvidia GeForce 940MX          Windows                       10
## 227             AMD Radeon R7 M445          Windows                       10
## 228          Nvidia GeForce 920MX           Windows                       10
## 229        Nvidia GeForce GTX 950M          Windows                       10
## 230            AMD FirePro W4190M           Windows                       10
## 231          Intel HD Graphics 620          Windows                       10
## 232                  AMD Radeon R2          Windows                       10
## 233        Nvidia GeForce GTX 1060          Windows                       10
## 234          Intel HD Graphics 620          Windows                       10
## 235          Intel HD Graphics 520          Windows                       10
## 236             AMD Radeon R7 M445            Linux                         
## 237          Intel HD Graphics 520            Linux                         
## 238             AMD Radeon R5 M430          Windows                       10
## 239        Nvidia GeForce GTX 1080          Windows                       10
## 240        Nvidia GeForce GTX 1050          Windows                       10
## 241          Intel HD Graphics 520          Windows                       10
## 242           Nvidia GeForce 150MX          Windows                       10
## 243        Nvidia GeForce GTX 950M            No OS                         
## 244        Nvidia GeForce GTX 1050          Windows                       10
## 245          Intel HD Graphics 620          Windows                       10
## 246                 AMD Radeon 530          Windows                       10
## 247          Intel HD Graphics 620          Windows                       10
## 248        Nvidia GeForce GTX 1080          Windows                       10
## 249         Intel UHD Graphics 620          Windows                       10
## 250   Intel Iris Plus Graphics 650            macOS                         
## 251         Intel UHD Graphics 620          Windows                       10
## 252        Nvidia GeForce GTX 980M          Windows                       10
## 253             AMD Radeon R5 M420          Windows                       10
## 254         Intel UHD Graphics 620          Windows                       10
## 255           Nvidia GeForce MX130          Windows                       10
## 256         Intel UHD Graphics 620          Windows                       10
## 257         AMD Radeon R4 Graphics          Windows                       10
## 258           Nvidia GeForce MX150          Windows                       10
## 259        Nvidia GeForce GTX 1070          Windows                       10
## 260       Nvidia GeForce GTX 1050M          Windows                       10
## 261                 AMD Radeon 530          Windows                       10
## 262          Intel HD Graphics 520            No OS                         
## 263          Intel HD Graphics 620          Windows                       10
## 264          Intel HD Graphics 620          Windows                       10
## 265             AMD Radeon R5 M430          Windows                       10
## 266         Intel UHD Graphics 620          Windows                       10
## 267         Intel UHD Graphics 620          Windows                       10
## 268          Intel HD Graphics 620            No OS                         
## 269          Nvidia GeForce 930MX           Windows                       10
## 270         Intel UHD Graphics 620          Windows                       10
## 271        Intel Iris Graphics 550            macOS                         
## 272              AMD Radeon RX 580          Windows                       10
## 273                 AMD Radeon 520            Linux                         
## 274          Intel HD Graphics 520          Windows                       10
## 275            Nvidia GeForce 930M          Windows                       10
## 276          Intel HD Graphics 620          Windows                       10
## 277                 AMD Radeon 530            Linux                         
## 278           Nvidia GeForce MX130          Windows                       10
## 279          Intel HD Graphics 520          Windows                       10
## 280           Nvidia GeForce MX150            No OS                         
## 281           Nvidia GeForce 940MX          Windows                       10
## 282             AMD Radeon R5 M430            Linux                         
## 283        Nvidia GeForce GTX 1050          Windows                       10
## 284          Intel HD Graphics 620          Windows                       10
## 285           Nvidia GeForce MX150          Windows                       10
## 286          Intel HD Graphics 620          Windows                       10
## 287          Intel HD Graphics 630          Windows                       10
## 288           Nvidia GeForce 940MX          Windows                       10
## 289     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 290           Nvidia GeForce 940MX            No OS                         
## 291              Intel HD Graphics        Chrome OS                         
## 292        Nvidia GeForce GTX 1050          Windows                       10
## 293          Intel HD Graphics 520          Windows                       10
## 294        Nvidia GeForce GTX 1050          Windows                       10
## 295         Intel UHD Graphics 620          Windows                       10
## 296        Nvidia GeForce GTX 1060          Windows                       10
## 297     Nvidia GeForce GTX 1050 Ti            Linux                         
## 298            Nvidia Quadro M1200          Windows                       10
## 299              AMD Radeon R5 430          Windows                       10
## 300           Nvidia GeForce 940MX          Windows                       10
## 301          Intel HD Graphics 620          Windows                       10
## 302        Nvidia GeForce GTX 1070          Windows                       10
## 303        Nvidia GeForce GTX 940M          Windows                       10
## 304           Nvidia GeForce 940MX            No OS                         
## 305     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 306          Intel HD Graphics 505            No OS                         
## 307          Intel HD Graphics 620          Windows                       10
## 308            Nvidia GeForce 930M          Windows                       10
## 309           Nvidia GeForce 940MX          Windows                       10
## 310          Intel HD Graphics 520          Windows                       10
## 311          Intel HD Graphics 620          Windows                       10
## 312         Intel UHD Graphics 620          Windows                       10
## 313        Nvidia GeForce GTX 1070          Windows                       10
## 314                  AMD Radeon R5          Windows                       10
## 315          Intel HD Graphics 500          Windows                       10
## 316                 AMD Radeon 530          Windows                       10
## 317         Intel UHD Graphics 620          Windows                       10
## 318          Intel HD Graphics 510        Chrome OS                         
## 319          Intel HD Graphics 620          Windows                       10
## 320          Intel HD Graphics 405          Windows                       10
## 321          Intel HD Graphics 620          Windows                       10
## 322           Nvidia GeForce 920MX          Windows                       10
## 323          Intel HD Graphics 620          Windows                       10
## 324         Intel UHD Graphics 620          Windows                       10
## 325              AMD Radeon RX 540          Windows                       10
## 326          Intel HD Graphics 500          Windows                       10
## 327          Intel HD Graphics 620          Windows                       10
## 328           Nvidia GeForce 940MX          Windows                       10
## 329          Intel HD Graphics 620          Windows                       10
## 330        Nvidia GeForce GTX 1050          Windows                       10
## 331     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 332          Intel HD Graphics 620          Windows                       10
## 333          Intel HD Graphics 620          Windows                       10
## 334          Intel HD Graphics 520          Windows                       10
## 335        Nvidia GeForce GTX 1050          Windows                       10
## 336          Intel HD Graphics 620          Windows                       10
## 337           Nvidia GeForce 940MX          Windows                       10
## 338          Intel HD Graphics 620          Windows                       10
## 339          Intel HD Graphics 500            Linux                         
## 340           Nvidia GeForce 940MX          Windows                       10
## 341              Intel HD Graphics            Linux                         
## 342                 AMD Radeon 530          Windows                       10
## 343          Nvidia GeForce 930MX           Windows                       10
## 344         Intel UHD Graphics 620          Windows                       10
## 345         Intel UHD Graphics 620          Windows                       10
## 346     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 347          Intel HD Graphics 400          Windows                       10
## 348         Intel UHD Graphics 620          Windows                       10
## 349          Intel HD Graphics 500          Windows                       10
## 350                 AMD Radeon 530          Windows                       10
## 351        Nvidia GeForce GTX 1050          Windows                       10
## 352          Intel HD Graphics 620          Windows                       10
## 353        Nvidia GeForce GTX 1060          Windows                       10
## 354            Nvidia Quadro M1200          Windows                       10
## 355            Nvidia GeForce 930M          Windows                       10
## 356                 AMD Radeon 530          Windows                       10
## 357          Intel HD Graphics 500            No OS                         
## 358        Nvidia GeForce GTX 1050          Windows                       10
## 359          Intel HD Graphics 620          Windows                       10
## 360          Intel HD Graphics 620          Windows                       10
## 361          Intel HD Graphics 520          Windows                       10
## 362          Intel HD Graphics 620          Windows                       10
## 363       Nvidia GeForce GTX 940MX          Windows                       10
## 364          Intel HD Graphics 620          Windows                       10
## 365          Nvidia GeForce 920MX             No OS                         
## 366          Intel HD Graphics 405          Windows                       10
## 367                 AMD Radeon 530          Windows                       10
## 368        Nvidia GeForce GTX 1050            No OS                         
## 369             AMD Radeon R7 M445          Windows                       10
## 370          Intel HD Graphics 620          Windows                       10
## 371        Nvidia GeForce GT 940MX          Windows                       10
## 372                  AMD Radeon R5          Windows                       10
## 373              AMD Radeon RX 580          Windows                       10
## 374                  AMD Radeon R5          Windows                       10
## 375         Intel UHD Graphics 620          Windows                       10
## 376                  AMD Radeon R5          Windows                       10
## 377          Intel HD Graphics 500          Windows                       10
## 378          Intel HD Graphics 400          Windows                       10
## 379          Intel HD Graphics 500          Windows                       10
## 380        Nvidia GeForce GTX 1050            Linux                         
## 381        Nvidia GeForce GTX 1050          Windows                       10
## 382          Intel HD Graphics 520            No OS                         
## 383        Nvidia GeForce GTX 1060          Windows                       10
## 384           Nvidia GeForce 940MX          Windows                       10
## 385          Intel HD Graphics 620          Windows                       10
## 386          Intel HD Graphics 620          Windows                       10
## 387          Intel HD Graphics 620          Windows                       10
## 388             AMD FirePro W5130M          Windows                       10
## 389            Nvidia Quadro M1200          Windows                       10
## 390          Intel HD Graphics 620          Windows                       10
## 391        Nvidia GeForce GTX 1050          Windows                       10
## 392     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 393           Nvidia GeForce MX130          Windows                       10
## 394     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 395             AMD Radeon R7 M445            Linux                         
## 396                 AMD Radeon 520          Windows                       10
## 397              AMD Radeon RX 550          Windows                       10
## 398          Intel HD Graphics 620          Windows                       10
## 399            Nvidia Quadro M1200          Windows                       10
## 400          Intel HD Graphics 620          Windows                       10
## 401          Intel HD Graphics 500          Windows                       10
## 402        Nvidia GeForce GTX 1050          Windows                       10
## 403              AMD Radeon RX 550          Windows                       10
## 404        Nvidia GeForce GTX 1050            Linux                         
## 405        Nvidia GeForce GTX 1070          Windows                       10
## 406          Intel HD Graphics 620          Windows                       10
## 407          Intel HD Graphics 520          Windows                       10
## 408              Intel HD Graphics          Windows                       10
## 409          Intel HD Graphics 520          Windows                       10
## 410          Intel HD Graphics 500          Windows                       10
## 411            Nvidia Quadro M1200          Windows                       10
## 412        Nvidia GeForce GT 940MX          Windows                       10
## 413                 AMD Radeon 520          Windows                       10
## 414          Intel HD Graphics 520          Windows                       10
## 415          Intel HD Graphics 620          Windows                       10
## 416             AMD Radeon R5 M430            Linux                         
## 417          Intel HD Graphics 520          Windows                       10
## 418          Intel HD Graphics 520          Windows                       10
## 419          Intel HD Graphics 620          Windows                       10
## 420              AMD Radeon RX 550          Windows                       10
## 421        Nvidia GeForce GTX 1050          Windows                       10
## 422          Intel HD Graphics 500          Windows                       10
## 423          Intel HD Graphics 630          Windows                       10
## 424           Nvidia GeForce 940MX            Linux                         
## 425        Nvidia GeForce GTX 1070          Windows                       10
## 426     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 427                 AMD Radeon 530          Windows                       10
## 428          Intel HD Graphics 620            Linux                         
## 429        Nvidia GeForce GTX 1070          Windows                       10
## 430          Intel HD Graphics 500          Windows                       10
## 431          Intel HD Graphics 400        Chrome OS                         
## 432          Intel HD Graphics 620          Windows                       10
## 433          Intel HD Graphics 620          Windows                       10
## 434           Nvidia GeForce 940MX          Windows                       10
## 435           Nvidia Quadro M2200M          Windows                       10
## 436              AMD Radeon RX 580          Windows                       10
## 437          Intel HD Graphics 400          Windows                       10
## 438          Intel HD Graphics 615        Chrome OS                         
## 439          Intel HD Graphics 620          Windows                       10
## 440          Intel HD Graphics 620            Linux                         
## 441                  AMD Radeon R4          Windows                       10
## 442                 AMD Radeon 530          Windows                       10
## 443          Intel HD Graphics 620          Windows                       10
## 444          Intel HD Graphics 505          Windows                       10
## 445        Nvidia GeForce GTX 1050          Windows                       10
## 446           Nvidia GeForce 930MX          Windows                       10
## 447          Intel HD Graphics 620            Linux                         
## 448             Nvidia Quadro M620          Windows                       10
## 449        Nvidia GeForce GTX 1050          Windows                       10
## 450   Intel Iris Plus Graphics 640          Windows                     10 S
## 451          Intel HD Graphics 620          Windows                       10
## 452             Nvidia Quadro M620          Windows                       10
## 453          Intel HD Graphics 620          Windows                       10
## 454          Intel HD Graphics 620          Windows                       10
## 455                 AMD Radeon 530          Windows                       10
## 456          Intel HD Graphics 405          Windows                       10
## 457        Nvidia GeForce GTX 1060          Windows                       10
## 458          Intel HD Graphics 615          Windows                     10 S
## 459   Intel Iris Plus Graphics 640          Windows                     10 S
## 460          Intel HD Graphics 520          Windows                       10
## 461           Nvidia GeForce 940MX          Windows                       10
## 462          Intel HD Graphics 400          Windows                       10
## 463          Intel HD Graphics 620          Windows                       10
## 464             AMD Radeon R7 M460            No OS                         
## 465           Nvidia Quadro M2200M          Windows                       10
## 466          Intel HD Graphics 500          Windows                       10
## 467       Nvidia GeForce GTX 940MX          Windows                       10
## 468                 AMD Radeon 530          Windows                       10
## 469        Nvidia GeForce GTX 1060          Windows                       10
## 470          Intel HD Graphics 520          Windows                       10
## 471         Intel UHD Graphics 620          Windows                       10
## 472            AMD FirePro W4190M           Windows                       10
## 473          Intel HD Graphics 615        Chrome OS                         
## 474         Intel UHD Graphics 620          Windows                       10
## 475          Intel HD Graphics 530          Windows                       10
## 476          Intel HD Graphics 520          Windows                       10
## 477            Nvidia Quadro M1200          Windows                       10
## 478          Intel HD Graphics 620          Windows                       10
## 479                 AMD Radeon 520          Windows                       10
## 480          Intel HD Graphics 620          Windows                       10
## 481           Nvidia GeForce 940MX          Windows                       10
## 482          Intel HD Graphics 620          Windows                       10
## 483         Intel UHD Graphics 620          Windows                       10
## 484              Intel HD Graphics          Windows                       10
## 485          Intel HD Graphics 520          Windows                       10
## 486         Intel UHD Graphics 620          Windows                       10
## 487             Nvidia Quadro M620          Windows                       10
## 488        Nvidia GeForce GTX 1050          Windows                       10
## 489          Intel HD Graphics 620          Windows                       10
## 490          Intel HD Graphics 620          Windows                       10
## 491           Nvidia GeForce 940MX          Windows                       10
## 492          Intel HD Graphics 620          Windows                       10
## 493        Nvidia GeForce GTX 1050          Windows                       10
## 494              AMD Radeon RX 540          Windows                       10
## 495        Nvidia GeForce GTX 965M          Windows                       10
## 496          Intel HD Graphics 520          Windows                       10
## 497         Intel UHD Graphics 620          Windows                       10
## 498          Intel HD Graphics 620          Windows                       10
## 499          Intel HD Graphics 620          Windows                       10
## 500          Intel HD Graphics 620          Windows                       10
## 501          Intel HD Graphics 500          Windows                     10 S
## 502                 AMD Radeon 520          Windows                       10
## 503         Intel UHD Graphics 620          Windows                       10
## 504          Intel HD Graphics 500          Windows                       10
## 505          Intel HD Graphics 400        Chrome OS                         
## 506          Intel HD Graphics 620          Windows                       10
## 507          Intel HD Graphics 620          Windows                       10
## 508           Nvidia GeForce MX150          Windows                       10
## 509          Intel HD Graphics 620          Windows                       10
## 510        Nvidia GeForce GTX 1060            No OS                         
## 511          Intel HD Graphics 620          Windows                       10
## 512           Nvidia GeForce 940MX          Windows                       10
## 513          Intel HD Graphics 620          Windows                       10
## 514                 AMD Radeon 530          Windows                       10
## 515           Nvidia GeForce MX150            No OS                         
## 516          Intel HD Graphics 500          Windows                       10
## 517         Intel UHD Graphics 620          Windows                       10
## 518         Nvidia GeForce GTX1080          Windows                       10
## 519           Nvidia GeForce 930MX          Windows                       10
## 520      Nvidia GeForce GTX1050 Ti          Windows                       10
## 521        Nvidia GeForce GTX 1060          Windows                       10
## 522          Intel HD Graphics 620          Windows                       10
## 523          Intel HD Graphics 620          Windows                       10
## 524          Intel HD Graphics 520          Windows                       10
## 525                 AMD Radeon 530            Linux                         
## 526          Intel HD Graphics 520          Windows                        7
## 527           Nvidia GeForce 920MX          Windows                       10
## 528          Nvidia GeForce 920MX             No OS                         
## 529             AMD Radeon R5 M430          Windows                       10
## 530          Intel HD Graphics 620          Windows                       10
## 531        Nvidia GeForce GTX 1070          Windows                       10
## 532          Intel HD Graphics 620          Windows                       10
## 533        Nvidia GeForce GTX 960M          Windows                       10
## 534          Intel HD Graphics 500          Windows                       10
## 535        Nvidia GeForce GTX 1060          Windows                       10
## 536           Nvidia GeForce 930MX          Windows                       10
## 537                 AMD Radeon 530          Windows                       10
## 538          Intel HD Graphics 405          Windows                       10
## 539        Nvidia GeForce GTX 1060          Windows                       10
## 540           Nvidia GeForce 940MX          Windows                       10
## 541         Intel UHD Graphics 620          Windows                       10
## 542          Intel HD Graphics 520          Windows                       10
## 543          Intel HD Graphics 620          Windows                       10
## 544        Nvidia GeForce GTX 1050            Linux                         
## 545         AMD Radeon R2 Graphics          Windows                       10
## 546          Intel HD Graphics 620          Windows                       10
## 547          Intel HD Graphics 620          Windows                       10
## 548          Intel HD Graphics 520            No OS                         
## 549          Intel HD Graphics 520          Windows                       10
## 550          Intel HD Graphics 620          Windows                       10
## 551          Intel HD Graphics 520          Windows                       10
## 552          Intel HD Graphics 620          Windows                       10
## 553        Nvidia GeForce GTX 1070          Windows                       10
## 554          Intel HD Graphics 520          Windows                       10
## 555           Nvidia GeForce 930MX          Windows                       10
## 556          Intel HD Graphics 500            Linux                         
## 557              Intel HD Graphics          Windows                       10
## 558           Nvidia GeForce 940MX          Windows                       10
## 559                 AMD Radeon 530          Windows                       10
## 560             AMD Radeon R5 M420          Windows                       10
## 561          Intel HD Graphics 500          Windows                       10
## 562          Intel HD Graphics 620          Windows                       10
## 563          Intel HD Graphics 515          Windows                       10
## 564            Nvidia Quadro M620M          Windows                       10
## 565        Nvidia GeForce GTX 1050          Windows                       10
## 566         Intel UHD Graphics 620          Windows                       10
## 567          Intel HD Graphics 620          Windows                       10
## 568          Intel HD Graphics 620          Windows                       10
## 569          Intel HD Graphics 505          Windows                       10
## 570          Intel HD Graphics 620          Windows                       10
## 571            Nvidia Quadro M1200          Windows                       10
## 572          Intel HD Graphics 405          Windows                       10
## 573                 AMD Radeon 530          Windows                       10
## 574          Intel HD Graphics 620          Windows                       10
## 575          Intel HD Graphics 620          Windows                       10
## 576              Intel HD Graphics          Windows                       10
## 577          Intel HD Graphics 620          Windows                       10
## 578        Nvidia GeForce GTX 1070          Windows                       10
## 579        Nvidia GeForce GTX 1070          Windows                       10
## 580             AMD Radeon R5 M430            Linux                         
## 581          Intel HD Graphics 500          Windows                       10
## 582          Intel HD Graphics 620          Windows                       10
## 583          Intel HD Graphics 620          Windows                       10
## 584           Nvidia GeForce 930MX          Windows                       10
## 585          Intel HD Graphics 400        Chrome OS                         
## 586        Nvidia GeForce GTX 980M          Windows                       10
## 587        Nvidia GeForce GTX 1050          Windows                       10
## 588          Intel HD Graphics 520          Windows                       10
## 589          Intel HD Graphics 620          Windows                       10
## 590        Nvidia GeForce GTX 1060          Windows                       10
## 591          Intel HD Graphics 520          Windows                       10
## 592                 AMD Radeon 530          Windows                       10
## 593          Intel HD Graphics 615          Windows                       10
## 594        Nvidia GeForce GTX 1050          Windows                       10
## 595          Intel HD Graphics 520            No OS                         
## 596          Intel HD Graphics 520          Windows                       10
## 597          Intel HD Graphics 620          Windows                       10
## 598          Intel HD Graphics 630          Windows                       10
## 599          Intel HD Graphics 620          Windows                       10
## 600             Nvidia Quadro M620          Windows                       10
## 601          Intel HD Graphics 620          Windows                       10
## 602          Intel HD Graphics 620          Windows                       10
## 603          Intel HD Graphics 500          Windows                       10
## 604        Nvidia GeForce GTX 970M          Windows                       10
## 605             AMD Radeon R5 M420            Linux                         
## 606        Nvidia GeForce GTX 1060          Windows                       10
## 607          Intel HD Graphics 520          Windows                       10
## 608          Intel HD Graphics 620          Windows                       10
## 609          Intel HD Graphics 630          Windows                       10
## 610          Intel HD Graphics 405          Windows                       10
## 611           Nvidia Quadro M2200M          Windows                       10
## 612 Nvidia GeForce GTX 960<U+039C>          Windows                       10
## 613          Intel HD Graphics 520            Linux                         
## 614          Intel HD Graphics 520            Linux                         
## 615          Intel HD Graphics 620            Linux                         
## 616        Nvidia GeForce GTX 1050          Windows                       10
## 617             AMD Radeon R5 M420            Linux                         
## 618          Intel HD Graphics 620          Windows                       10
## 619        Nvidia GeForce GTX 1070          Windows                       10
## 620          Intel HD Graphics 400        Chrome OS                         
## 621          Intel HD Graphics 620          Windows                       10
## 622          Intel HD Graphics 520          Windows                        7
## 623                 AMD Radeon 530          Windows                       10
## 624          Intel HD Graphics 620          Windows                       10
## 625          Intel HD Graphics 520          Windows                        7
## 626           Nvidia GeForce 920MX          Windows                       10
## 627              Intel HD Graphics          Windows                       10
## 628          Intel HD Graphics 620            No OS                         
## 629          Intel HD Graphics 620          Windows                       10
## 630        Nvidia GeForce GTX 1050          Windows                       10
## 631          Intel HD Graphics 620          Windows                       10
## 632     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 633         Intel UHD Graphics 620          Windows                       10
## 634          Nvidia GeForce 920MX           Windows                       10
## 635          Intel HD Graphics 500          Windows                       10
## 636        Nvidia GeForce GTX 1050          Windows                       10
## 637         Intel UHD Graphics 620          Windows                       10
## 638          Intel HD Graphics 400          Windows                       10
## 639          Intel HD Graphics 620          Windows                       10
## 640        Nvidia GeForce GTX 1050          Windows                       10
## 641       Nvidia GeForce GTX 1050M          Windows                       10
## 642                  AMD Radeon R5          Windows                       10
## 643          Intel HD Graphics 620          Windows                       10
## 644     Nvidia GeForce GTX 1050 Ti            No OS                         
## 645          Intel HD Graphics 520          Windows                       10
## 646              Intel HD Graphics          Windows                       10
## 647             Intel Graphics 620          Windows                       10
## 648        Nvidia GeForce GTX 1060          Windows                       10
## 649          Intel HD Graphics 520          Windows                       10
## 650          Intel HD Graphics 620          Windows                       10
## 651        Nvidia GeForce GTX 1080          Windows                       10
## 652        Nvidia GeForce GTX 1050            Linux                         
## 653         Intel UHD Graphics 620          Windows                       10
## 654     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 655          Intel HD Graphics 520            No OS                         
## 656          Intel HD Graphics 620          Windows                       10
## 657                 AMD Radeon 530          Windows                       10
## 658                 AMD Radeon 530          Windows                       10
## 659         Nvidia GeForce GTX 960          Windows                       10
## 660        Nvidia GeForce GTX 1070          Windows                       10
## 661          Intel HD Graphics 520          Windows                       10
## 662          Intel HD Graphics 500          Windows                       10
## 663          Intel HD Graphics 520          Windows                       10
## 664             AMD Radeon R5 M430          Windows                       10
## 665        Nvidia GeForce GTX 1060          Windows                       10
## 666          Intel HD Graphics 520          Windows                       10
## 667          Intel HD Graphics 620          Windows                       10
## 668                 AMD Radeon 530          Windows                       10
## 669          Intel HD Graphics 620          Windows                       10
## 670          Intel HD Graphics 520            Linux                         
## 671   Intel Iris Plus Graphics 640          Windows                     10 S
## 672             AMD Radeon R5 M430          Windows                       10
## 673          Intel HD Graphics 620          Windows                       10
## 674         AMD Radeon R2 Graphics          Windows                       10
## 675           Nvidia GeForce 940MX          Windows                       10
## 676        Nvidia GeForce GTX 1050          Windows                       10
## 677          Intel HD Graphics 620          Windows                       10
## 678          Intel HD Graphics 500        Chrome OS                         
## 679          Intel HD Graphics 620          Windows                       10
## 680     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 681        Nvidia GeForce GTX 1050          Windows                       10
## 682          Intel HD Graphics 500          Windows                       10
## 683        Nvidia GeForce GTX 1060          Windows                       10
## 684              AMD Radeon R5 520          Windows                       10
## 685         Intel UHD Graphics 620          Windows                       10
## 686        Nvidia GeForce GTX 1070          Windows                       10
## 687                 AMD Radeon 520          Windows                       10
## 688             AMD Radeon R5 M430          Windows                       10
## 689             AMD Radeon R7 M440          Windows                       10
## 690          Intel HD Graphics 510          Windows                       10
## 691          Intel HD Graphics 510        Chrome OS                         
## 692          Intel HD Graphics 620          Windows                       10
## 693            Nvidia Quadro M1200          Windows                       10
## 694          Intel HD Graphics 620          Windows                       10
## 695          Intel HD Graphics 620          Windows                       10
## 696              Intel HD Graphics          Windows                       10
## 697          Intel HD Graphics 620          Windows                       10
## 698          Intel HD Graphics 515        Chrome OS                         
## 699          Intel HD Graphics 520          Windows                       10
## 700                 AMD Radeon 530          Windows                       10
## 701        Nvidia GeForce GTX 1050          Windows                       10
## 702                 AMD Radeon 530          Windows                       10
## 703                  AMD Radeon R7          Windows                       10
## 704          Intel HD Graphics 620          Windows                       10
## 705          Intel HD Graphics 520            No OS                         
## 706          Intel HD Graphics 620          Windows                       10
## 707         Intel UHD Graphics 620          Windows                       10
## 708            Nvidia Quadro M520M          Windows                        7
## 709          Intel HD Graphics 520          Windows                       10
## 710                 AMD Radeon 530          Windows                       10
## 711     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 712           Nvidia GeForce 930MX            Linux                         
## 713          Intel HD Graphics 620            Linux                         
## 714          Intel HD Graphics 500          Windows                       10
## 715          Intel HD Graphics 620          Windows                       10
## 716           Nvidia GeForce 920MX          Windows                       10
## 717          Intel HD Graphics 620          Windows                       10
## 718                  AMD Radeon R4          Windows                       10
## 719          Intel HD Graphics 400          Windows                       10
## 720           Nvidia GeForce 930MX          Windows                       10
## 721          Intel HD Graphics 520          Windows                       10
## 722          Intel HD Graphics 620          Windows                       10
## 723          Intel HD Graphics 620          Windows                       10
## 724        Nvidia GeForce GTX 1070          Windows                       10
## 725     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 726          Intel HD Graphics 620            No OS                         
## 727                 AMD Radeon 530          Windows                       10
## 728          Intel HD Graphics 620          Windows                       10
## 729             AMD Radeon R7 M445            Linux                         
## 730                 AMD Radeon 520          Windows                       10
## 731        Nvidia GeForce GTX 1060          Windows                       10
## 732          Intel HD Graphics 620          Windows                       10
## 733                 AMD Radeon 520          Windows                       10
## 734          Intel HD Graphics 620          Windows                       10
## 735          Intel HD Graphics 620          Windows                       10
## 736          Intel HD Graphics 620          Windows                       10
## 737            Nvidia Quadro M2200          Windows                       10
## 738         Intel UHD Graphics 620          Windows                       10
## 739        Nvidia GeForce GTX 1060          Windows                       10
## 740          Intel HD Graphics 520          Windows                       10
## 741           Nvidia GeForce 940MX          Windows                       10
## 742          Intel HD Graphics 520          Windows                       10
## 743          Intel HD Graphics 620          Windows                       10
## 744          Intel HD Graphics 620          Windows                       10
## 745            Nvidia Quadro M520M          Windows                       10
## 746          Intel HD Graphics 400        Chrome OS                         
## 747          Intel HD Graphics 620          Windows                       10
## 748          Intel HD Graphics 520          Windows                       10
## 749          Intel HD Graphics 620          Windows                       10
## 750           Nvidia Quadro M2000M          Windows                        7
## 751          Intel HD Graphics 400          Windows                       10
## 752          Intel HD Graphics 520          Windows                       10
## 753        Nvidia GeForce GTX 950M            No OS                         
## 754          Intel HD Graphics 520          Windows                       10
## 755          Intel HD Graphics 620          Windows                       10
## 756          Intel HD Graphics 540          Windows                       10
## 757        Nvidia GeForce GTX 1050          Windows                       10
## 758           Nvidia Quadro M1000M          Windows                        7
## 759        Nvidia GeForce GTX 1070          Windows                       10
## 760          Intel HD Graphics 620          Windows                       10
## 761        Nvidia GeForce GTX 1050          Windows                       10
## 762          Intel HD Graphics 620          Windows                       10
## 763          Intel HD Graphics 615        Chrome OS                         
## 764          Intel HD Graphics 620          Windows                       10
## 765          Intel HD Graphics 520          Windows                       10
## 766          Intel HD Graphics 520          Windows                       10
## 767           Nvidia GeForce 920MX          Windows                       10
## 768        Nvidia GeForce GTX 960M          Windows                       10
## 769          Intel HD Graphics 620          Windows                       10
## 770          Intel HD Graphics 505            Linux                         
## 771             AMD Radeon R7 M445          Windows                       10
## 772                 AMD Radeon 540          Windows                       10
## 773          Intel HD Graphics 520          Windows                       10
## 774        Nvidia GeForce GTX 1050          Windows                       10
## 775          Intel HD Graphics 520          Windows                       10
## 776           Nvidia GeForce 940MX          Windows                       10
## 777           Nvidia Quadro M2000M          Windows                        7
## 778          Intel HD Graphics 620          Windows                       10
## 779        Nvidia GeForce GTX 1060          Windows                       10
## 780          Intel HD Graphics 505          Windows                       10
## 781       Nvidia GeForce GTX 1070M          Windows                       10
## 782        Nvidia GeForce GTX 1070          Windows                       10
## 783            Nvidia GeForce 930M          Windows                       10
## 784          Intel HD Graphics 405            No OS                         
## 785          Intel HD Graphics 620          Windows                       10
## 786        Nvidia GeForce GTX 1060          Windows                       10
## 787        Nvidia GeForce GTX 1050          Windows                       10
## 788        Nvidia GeForce GTX 1050          Windows                       10
## 789        Nvidia GeForce GTX 1060          Windows                       10
## 790        Nvidia GeForce GTX 1050          Windows                       10
## 791         Nvidia GeForce GTX1060          Windows                       10
## 792          Intel HD Graphics 500          Windows                       10
## 793          Intel HD Graphics 620          Windows                       10
## 794             AMD Radeon R7 M460          Windows                       10
## 795         Intel HD Graphics 5300           Mac OS                        X
## 796          Intel HD Graphics 620          Windows                       10
## 797          Intel HD Graphics 500          Windows                       10
## 798          Intel HD Graphics 620          Windows                       10
## 799          Intel HD Graphics 620          Windows                       10
## 800            AMD Radeon R5 M420X          Windows                       10
## 801            Nvidia Quadro M2200          Windows                       10
## 802          Intel HD Graphics 620          Windows                       10
## 803          Intel HD Graphics 620          Windows                       10
## 804        Nvidia GeForce GTX 1050          Windows                       10
## 805          Intel HD Graphics 505          Windows                       10
## 806          Intel HD Graphics 620          Windows                       10
## 807          Intel HD Graphics 520          Windows                       10
## 808         AMD Radeon R7 Graphics          Windows                       10
## 809     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 810            Nvidia GeForce 920M          Windows                       10
## 811              AMD Radeon RX 580          Windows                       10
## 812        Nvidia GeForce GTX 1070          Windows                       10
## 813          Intel HD Graphics 620          Windows                       10
## 814        Nvidia GeForce GT 940MX          Windows                       10
## 815             AMD Radeon R5 M420          Windows                       10
## 816          Intel HD Graphics 620          Windows                       10
## 817          Intel HD Graphics 620          Windows                       10
## 818          Intel HD Graphics 400        Chrome OS                         
## 819        Nvidia GeForce GTX 1060          Windows                       10
## 820          Intel HD Graphics 520          Windows                       10
## 821          Intel HD Graphics 520          Windows                       10
## 822          Intel HD Graphics 620          Windows                       10
## 823          Intel HD Graphics 620          Windows                       10
## 824        Nvidia GeForce GTX 1050          Windows                       10
## 825          Intel HD Graphics 620          Windows                       10
## 826          Intel HD Graphics 510          Windows                       10
## 827          Intel HD Graphics 620          Windows                       10
## 828          Intel HD Graphics 520          Windows                       10
## 829          Intel HD Graphics 400        Chrome OS                         
## 830          Intel HD Graphics 620          Windows                       10
## 831        Nvidia GeForce GTX 1080          Windows                       10
## 832          Intel HD Graphics 520          Windows                       10
## 833             Nvidia GeForce 920            Linux                         
## 834          Intel HD Graphics 520          Windows                       10
## 835          Intel HD Graphics 620          Windows                       10
## 836        Nvidia GeForce GTX 1070          Windows                       10
## 837        Nvidia GeForce GTX 1070          Windows                       10
## 838          Intel HD Graphics 620          Windows                       10
## 839          Intel HD Graphics 400        Chrome OS                         
## 840          Intel HD Graphics 620          Windows                       10
## 841        Nvidia GeForce GTX 1060          Windows                       10
## 842        Nvidia GeForce GTX 1070          Windows                       10
## 843           Nvidia GeForce 930MX          Windows                       10
## 844          Intel HD Graphics 620          Windows                       10
## 845          Intel HD Graphics 520          Windows                        7
## 846             AMD Radeon R5 M420          Windows                       10
## 847          Intel HD Graphics 500        Chrome OS                         
## 848            Nvidia GeForce 940M          Windows                       10
## 849          Intel HD Graphics 620          Windows                       10
## 850          Intel HD Graphics 520          Windows                       10
## 851          Intel HD Graphics 400            No OS                         
## 852        Nvidia GeForce GTX 1060          Windows                       10
## 853             AMD Radeon R7 M445            Linux                         
## 854        Nvidia GeForce GT 940MX          Windows                       10
## 855       Nvidia GeForce GTX 930MX          Windows                       10
## 856          Intel HD Graphics 620          Windows                       10
## 857          Intel HD Graphics 505          Windows                       10
## 858          Intel HD Graphics 620          Windows                       10
## 859          Intel HD Graphics 520          Windows                       10
## 860          Intel HD Graphics 520            No OS                         
## 861          Intel HD Graphics 620          Windows                       10
## 862             AMD Radeon R7 M465          Windows                       10
## 863          Intel HD Graphics 620          Windows                       10
## 864        Nvidia GeForce GTX 1050            No OS                         
## 865   Intel Iris Plus Graphics 640          Windows                       10
## 866          Intel HD Graphics 520          Windows                       10
## 867          Intel HD Graphics 520          Windows                       10
## 868          Intel HD Graphics 620          Windows                       10
## 869          Intel HD Graphics 620          Windows                       10
## 870             Nvidia Quadro M620          Windows                       10
## 871          Intel HD Graphics 620          Windows                       10
## 872             AMD Radeon R5 M430            No OS                         
## 873          Intel HD Graphics 620          Windows                       10
## 874          Intel HD Graphics 620          Windows                       10
## 875           Nvidia GeForce 940MX          Windows                       10
## 876          Intel HD Graphics 620          Windows                       10
## 877          Intel HD Graphics 505            Linux                         
## 878           Nvidia GeForce 940MX          Windows                       10
## 879           Nvidia GeForce 940MX          Windows                       10
## 880          Intel HD Graphics 620          Windows                       10
## 881          Intel HD Graphics 620          Windows                       10
## 882          Intel HD Graphics 620          Windows                       10
## 883          Intel HD Graphics 500          Windows                       10
## 884           Nvidia GeForce 940MX          Windows                       10
## 885              Intel HD Graphics          Windows                       10
## 886          Intel HD Graphics 620          Windows                       10
## 887            AMD Radeon R5 M420X            Linux                         
## 888        Nvidia GeForce GTX 1050          Windows                       10
## 889          Intel HD Graphics 400        Chrome OS                         
## 890                  AMD Radeon R3          Windows                       10
## 891          Intel HD Graphics 620          Windows                       10
## 892          Intel HD Graphics 620          Windows                       10
## 893          Intel HD Graphics 620          Windows                       10
## 894          Intel HD Graphics 620          Windows                       10
## 895        Nvidia GeForce GTX 1060          Windows                       10
## 896          Intel HD Graphics 620          Windows                       10
## 897      Nvidia GeForce GTX 1050Ti            Linux                         
## 898           Nvidia GeForce 930MX          Windows                       10
## 899            AMD Radeon R5 M420X          Windows                       10
## 900          Intel HD Graphics 620          Windows                       10
## 901          Intel HD Graphics 615          Windows                       10
## 902        Nvidia GeForce GTX 980M          Windows                       10
## 903          Intel HD Graphics 615          Windows                       10
## 904          Intel HD Graphics 620          Windows                       10
## 905          Intel HD Graphics 620          Windows                       10
## 906          Intel HD Graphics 620          Windows                       10
## 907          Intel HD Graphics 620          Windows                       10
## 908              Intel HD Graphics        Chrome OS                         
## 909        Nvidia GeForce GTX 960M          Windows                       10
## 910          Intel HD Graphics 620          Windows                       10
## 911          Intel HD Graphics 620          Windows                       10
## 912          Intel HD Graphics 515          Windows                       10
## 913           Nvidia GeForce 940MX          Windows                       10
## 914           Nvidia GeForce 930MX          Windows                       10
## 915          Intel HD Graphics 620          Windows                       10
## 916          Intel HD Graphics 620          Windows                       10
## 917          Intel HD Graphics 620          Windows                       10
## 918     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 919     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 920        Nvidia GeForce GTX 1050          Windows                       10
## 921             AMD Radeon R5 M420          Windows                       10
## 922            AMD Radeon R7 M365X          Windows                       10
## 923          Intel HD Graphics 620          Windows                       10
## 924            Nvidia GeForce 930M          Windows                       10
## 925          Intel HD Graphics 620          Windows                       10
## 926          Intel HD Graphics 520          Windows                       10
## 927          Intel HD Graphics 620          Windows                       10
## 928          Intel HD Graphics 520          Windows                       10
## 929          Intel HD Graphics 620          Windows                       10
## 930          Intel HD Graphics 520          Windows                       10
## 931          Intel HD Graphics 505          Windows                       10
## 932          Intel HD Graphics 520          Windows                       10
## 933          Intel HD Graphics 400            No OS                         
## 934        Intel Iris Graphics 540          Windows                       10
## 935          Intel HD Graphics 520          Windows                       10
## 936          Intel HD Graphics 520          Windows                       10
## 937          Intel HD Graphics 520          Windows                       10
## 938        Nvidia GeForce GTX 1050          Windows                       10
## 939          Intel HD Graphics 620          Windows                       10
## 940        Nvidia GeForce GTX 1080          Windows                       10
## 941        Nvidia GeForce GTX 965M          Windows                       10
## 942           Nvidia GeForce 920MX          Windows                       10
## 943          Intel HD Graphics 620          Windows                       10
## 944          Intel HD Graphics 520          Windows                       10
## 945          Intel HD Graphics 515          Windows                       10
## 946             AMD Radeon R9 M385          Windows                       10
## 947              Intel HD Graphics          Windows                       10
## 948           Nvidia GeForce 920MX            No OS                         
## 949             AMD Radeon R7 M445          Windows                       10
## 950          Intel HD Graphics 400        Chrome OS                         
## 951           Nvidia Quadro M1000M          Windows                       10
## 952          Intel HD Graphics 620          Windows                       10
## 953          Intel HD Graphics 520          Windows                        7
## 954          Intel HD Graphics 515        Chrome OS                         
## 955          Intel HD Graphics 520          Windows                       10
## 956        Nvidia GeForce GTX 1070          Windows                       10
## 957          Intel HD Graphics 615          Windows                       10
## 958          Intel HD Graphics 505          Windows                       10
## 959          Intel HD Graphics 520          Windows                       10
## 960          Intel HD Graphics 400        Chrome OS                         
## 961          Intel HD Graphics 520          Windows                       10
## 962          Intel HD Graphics 620          Windows                       10
## 963        Nvidia GeForce GTX 950M          Windows                       10
## 964          Intel HD Graphics 620          Windows                       10
## 965           Nvidia GeForce 930MX          Windows                       10
## 966             AMD Radeon R5 M430            Linux                         
## 967          Intel HD Graphics 620          Windows                       10
## 968          Intel HD Graphics 620          Windows                       10
## 969        Nvidia GeForce GTX 1070          Windows                       10
## 970           Nvidia GeForce 920MX          Windows                       10
## 971          Intel HD Graphics 615          Windows                       10
## 972          Intel HD Graphics 520          Windows                       10
## 973        Nvidia GeForce GTX 1070          Windows                       10
## 974          Intel HD Graphics 520          Windows                       10
## 975        Nvidia GeForce GTX 1060          Windows                       10
## 976           Nvidia GeForce 930MX          Windows                       10
## 977          Intel HD Graphics 520          Windows                        7
##      Weight    Price
## 1    1.37kg 11912523
## 2    1.34kg  7993374
## 3    1.86kg  5112900
## 4    1.83kg 22563005
## 5    1.37kg 16037611
## 6     2.1kg  3556800
## 7    2.04kg 19028613
## 8    1.34kg 10303160
## 9     1.3kg 13293540
## 10    1.6kg  6846840
## 11   1.86kg  3502559
## 12   1.86kg  3067651
## 13   1.83kg 21696213
## 14    2.2kg  4436219
## 15   0.92kg 11225261
## 16   1.37kg 13502947
## 17    2.2kg  6624540
## 18   1.83kg 25413336
## 19    2.2kg  4437108
## 20   1.22kg  8705268
## 21   0.98kg  1706375
## 22    2.5kg  8883108
## 23   1.86kg  2294136
## 24   1.62kg  7282548
## 25   1.91kg  5859828
## 26    2.3kg  3722547
## 27   1.35kg  9772308
## 28    2.2kg  7113600
## 29   1.88kg 11541816
## 30    2.5kg  7967232
## 31   1.89kg  2178451
## 32   1.65kg  1769508
## 33   2.71kg  3903588
## 34    1.2kg 16619148
## 35   1.35kg  8874216
## 36   1.44kg  2214108
## 37    2.1kg  3263364
## 38    2.8kg  8705268
## 39   1.86kg  4345431
## 40    2.1kg  7816068
## 41      2kg  3458988
## 42   2.65kg 13329108
## 43    2.3kg  4650427
## 44    2.2kg  6064344
## 45   2.77kg  8883108
## 46   1.37kg 12617748
## 47    2.2kg  3281148
## 48    3.2kg 11550708
## 49    2.3kg  5681988
## 50    2.8kg  4143672
## 51   0.69kg  2836548
## 52    2.2kg  7478172
## 53   1.86kg  3543373
## 54   1.49kg  9807876
## 55    2.4kg  3414528
## 56   2.13kg  6827278
## 57   1.91kg  3903588
## 58      2kg  5212401
## 59   2.43kg 21776508
## 60      2kg  3690180
## 61    2.8kg 11550708
## 62    1.7kg  7816068
## 63    1.7kg  5326308
## 64    1.4kg  8367372
## 65   1.86kg  6135480
## 66    1.8kg 17632836
## 67   1.86kg  3900831
## 68   1.44kg  2036268
## 69    1.9kg  4881708
## 70      3kg  8438508
## 71  1.252kg  9683388
## 72    1.4kg  8491860
## 73    2.2kg  7736040
## 74    2.7kg  9736740
## 75    2.1kg  3458988
## 76    2.2kg  8438508
## 77    2.2kg  4614948
## 78   2.02kg  7602660
## 79    2.2kg  4712760
## 80    2.5kg  8687484
## 81   1.88kg  9747055
## 82   0.92kg 13426920
## 83   1.63kg  7647120
## 84    2.2kg  3547908
## 85    2.1kg  3512340
## 86   2.65kg 11995308
## 87   1.83kg  6215508
## 88   1.96kg  5326219
## 89    2.2kg 12884508
## 90   1.21kg 14662908
## 91   2.45kg  6215508
## 92    2.2kg  6126588
## 93   1.49kg 10643724
## 94   2.65kg 10625940
## 95   1.25kg  9327708
## 96    1.5kg  7531524
## 97    2.2kg  5334311
## 98    2.2kg  4312620
## 99      2kg  5130684
## 100  2.62kg 11106108
## 101  1.91kg  6393348
## 102   2.1kg  3103308
## 103   2.2kg  5753124
## 104  1.38kg  9950148
## 105 1.252kg 11915280
## 106  1.58kg  5859828
## 107  1.85kg  3689291
## 108   1.3kg 10608156
## 109   2.2kg 11550708
## 110  1.58kg 13160160
## 111   1.5kg 11221704
## 112  1.23kg 12262068
## 113  1.37kg 12439908
## 114  1.63kg  6420024
## 115  1.21kg 14485068
## 116  1.26kg 12439819
## 117  1.63kg  9638928
## 118  2.16kg 10050894
## 119     2kg  5015088
## 120   1.7kg  9941256
## 121   2.1kg  4259268
## 122   1.8kg 19931418
## 123   2.2kg  5593068
## 124   2.5kg 11301732
## 125   2.1kg  4010292
## 126  1.86kg  2303028
## 127  1.63kg  7220304
## 128  1.65kg  2471887
## 129   2.8kg 12413232
## 130   2.5kg  8251776
## 131  2.36kg  5681899
## 132   2.2kg  3992508
## 133   1.6kg  7860528
## 134   2.2kg  5086224
## 135  2.05kg  5317416
## 136  1.63kg  8785296
## 137   1.9kg  2243985
## 138     3kg  8340696
## 139   2.2kg  4437108
## 140  1.32kg  6215508
## 141     3kg  5824260
## 142  1.75kg  9923650
## 143   2.4kg  7727148
## 144   2.1kg  5352984
## 145  1.86kg  3281148
## 146  1.25kg  9772308
## 147  0.97kg 17908488
## 148     2kg  3058848
## 149   2.9kg 18041868
## 150   2.1kg  3974724
## 151  2.56kg 11108420
## 152  2.62kg  7993908
## 153   1.9kg  4428216
## 154   2.8kg 16805880
## 155  1.48kg  9621144
## 156  1.91kg  5504148
## 157  1.74kg  5593068
## 158   1.1kg 11692980
## 159  1.56kg  9327708
## 160   2.1kg  3974724
## 161  2.03kg  3583476
## 162     3kg  7158060
## 163  2.13kg  6473376
## 164   2.5kg  9594468
## 165   2.1kg  3094416
## 166   2.4kg 15996708
## 167   2.1kg  3232331
## 168  2.56kg  9429877
## 169     3kg  7593768
## 170  1.49kg  6704568
## 171  1.05kg 11995308
## 172  2.71kg  6215508
## 173   2.2kg  2747628
## 174     2kg  4348188
## 175   2.5kg  8207316
## 176   2.3kg  4081428
## 177   2.1kg  3992508
## 178   4.4kg 24888708
## 179  1.90kg  7229196
## 180  1.29kg 13329108
## 181  2.02kg  9327708
## 182  1.23kg 12439908
## 183   1.4kg 16441308
## 184   2.0kg  7051356
## 185  1.95kg 10661508
## 186  2.77kg 13773708
## 187  2.06kg 21314124
## 188   2.4kg  6926868
## 189  1.12kg  8794188
## 190   2.8kg  9647820
## 191  1.42kg 25111008
## 192   1.3kg  2311920
## 193   1.3kg  8891111
## 194   2.8kg  6206616
## 195  1.62kg  7460388
## 196   2.5kg  8127288
## 197  3.49kg 54232308
## 198  1.49kg  8527428
## 199  3.35kg 12262068
## 200   2.5kg  9292140
## 201  2.65kg 16405740
## 202   2.1kg  4383756
## 203  2.23kg  6597864
## 204   3.2kg 15552108
## 205   2.8kg 27165060
## 206   2.4kg 12431016
## 207   2.3kg  3903588
## 208  1.21kg 17330508
## 209   1.2kg 12884508
## 210   2.2kg  5308524
## 211   2.4kg  6926868
## 212   2.9kg 12511044
## 213   2.1kg  3103308
## 214   2.2kg  4881708
## 215  1.05kg 13329108
## 216   1.4kg  8286277
## 217   2.8kg  5237388
## 218  1.63kg  9167652
## 219   1.6kg 10216908
## 220  1.62kg 11372868
## 221   2.2kg  6022996
## 222  1.74kg  7993908
## 223   1.2kg 12119796
## 224   2.1kg  7060248
## 225  4.42kg 21841775
## 226   2.2kg  7398144
## 227   2.3kg  7638317
## 228     2kg  6837948
## 229  2.69kg  7922772
## 230   1.9kg 11283948
## 231  2.37kg  3547819
## 232   2.1kg  2934360
## 233   3.2kg 13329108
## 234   1.6kg  7638228
## 235   1.6kg  6126588
## 236  2.36kg  7993908
## 237   2.1kg  3467880
## 238   2.2kg  5112900
## 239   4.7kg 34589880
## 240   2.5kg  7522632
## 241   2.2kg  5237388
## 242   2.1kg 10181340
## 243  2.69kg  7904988
## 244  2.56kg  7816068
## 245  1.38kg  9594468
## 246   2.2kg  8758620
## 247  2.04kg  4970628
## 248   3.6kg 26667108
## 249  1.49kg  6002100
## 250  1.37kg 18139680
## 251  2.08kg  7282548
## 252   4.3kg 15996708
## 253  1.68kg  4170348
## 254  1.37kg 16441308
## 255     3kg  6242184
## 256  1.41kg  8438508
## 257  1.91kg  3964943
## 258   2.9kg  9416628
## 259  4.14kg 22221108
## 260     2kg 15107508
## 261   2.8kg 10154664
## 262   2.2kg  3948048
## 263   2.1kg  6420024
## 264  2.18kg  5842044
## 265  2.24kg  5023980
## 266  2.67kg  7104708
## 267   1.1kg 13329108
## 268   2.2kg  4152564
## 269   2.5kg  9052056
## 270  2.05kg  7824960
## 271  1.37kg 17418539
## 272   3.2kg 13773708
## 273  2.14kg  6536242
## 274  1.36kg 22221108
## 275   2.2kg  7220304
## 276   2.3kg  6340618
## 277   2.8kg  9772308
## 278   2.2kg  6624540
## 279   2.8kg  4348188
## 280   2.8kg  7549308
## 281   2.8kg  7638228
## 282  2.25kg  3805776
## 283   2.5kg  7371468
## 284   2.2kg  5148468
## 285     3kg  8456292
## 286  2.15kg  5859828
## 287  1.95kg  9754524
## 288   1.7kg  8687484
## 289   2.5kg 10483668
## 290   2.2kg  5859917
## 291  2.19kg  1769508
## 292     3kg 10554804
## 293  2.54kg  4348188
## 294     2kg 16263468
## 295  2.05kg  6571188
## 296   3.2kg 11550708
## 297   2.5kg  8705268
## 298  3.42kg 25652175
## 299   2.4kg  4437108
## 300  1.63kg 13053456
## 301   1.3kg  4526028
## 302   2.9kg 18868824
## 303   2.8kg  5770908
## 304   2.2kg  4881708
## 305   2.5kg 11248380
## 306   2.2kg  3201031
## 307  1.28kg 17561700
## 308   2.2kg  9274356
## 309   2.3kg  7282548
## 310  1.86kg  4170348
## 311   1.1kg  8883108
## 312  1.21kg 22221108
## 313   2.8kg 18664308
## 314  2.23kg  4170348
## 315   1.1kg  2445300
## 316  2.33kg  7504848
## 317  1.29kg 21776508
## 318  1.45kg  4089431
## 319  1.95kg  8714160
## 320   1.4kg  4312620
## 321  1.48kg 11488464
## 322  2.79kg  5237388
## 323     2kg  9727848
## 324   2.1kg  8020584
## 325   2.2kg  5859828
## 326  1.44kg  2596464
## 327  2.23kg  4881708
## 328   1.7kg  9335711
## 329  1.26kg 11870820
## 330  2.06kg 23465988
## 331   2.7kg 10661508
## 332   2.0kg  8385156
## 333     2kg 11861928
## 334  1.85kg  3992508
## 335   2.5kg  8883108
## 336  1.48kg 11275056
## 337   1.9kg  9327708
## 338  1.84kg 10172448
## 339     2kg  2445211
## 340     2kg 10161333
## 341   2.2kg  2444411
## 342   2.2kg  7993908
## 343   2.1kg  6366672
## 344   1.4kg 18664308
## 345   1.2kg 14040468
## 346   2.4kg 10039068
## 347  1.44kg  2480868
## 348  1.88kg 14297980
## 349   1.5kg  3334500
## 350   1.9kg  5895396
## 351  2.06kg 18027819
## 352  1.84kg 11595168
## 353   2.7kg 12528828
## 354   2.6kg 15456697
## 355   2.4kg 12475476
## 356  2.02kg  8633243
## 357   2.2kg  2863135
## 358  2.65kg  8883108
## 359  2.36kg  4956134
## 360  1.36kg 12688884
## 361  1.86kg  3903588
## 362     2kg  8402940
## 363   2.8kg  6393348
## 364  1.86kg  5681988
## 365   2.2kg  4437108
## 366  2.04kg  3458988
## 367   2.8kg  9647820
## 368   2.4kg  7193628
## 369  2.33kg  7993908
## 370  1.36kg 15561000
## 371  2.26kg  9772308
## 372   2.1kg  3787992
## 373  3.25kg 19553508
## 374   2.6kg  4348188
## 375  1.62kg  7727237
## 376  1.91kg  4348099
## 377  1.59kg  4917276
## 378   1.8kg  2747628
## 379   1.5kg  2543112
## 380   2.4kg  7522632
## 381  3.35kg 10590372
## 382  1.85kg  3587922
## 383   2.3kg 14716260
## 384   1.5kg  9772308
## 385   1.1kg 15551219
## 386  1.13kg 20291544
## 387   1.5kg  4881708
## 388  2.23kg 12173148
## 389     2kg 18984420
## 390  1.42kg 22310028
## 391     3kg  9238788
## 392     3kg 14147172
## 393   2.2kg  6170959
## 394   2.7kg 11995308
## 395  2.33kg  6925712
## 396  1.91kg  4437108
## 397   2.1kg 10933248
## 398   1.9kg  8340696
## 399  1.78kg 24115104
## 400  1.13kg 23341500
## 401   2.2kg  2720952
## 402   2.9kg 13595868
## 403   2.1kg 10176894
## 404   2.5kg  7816068
## 405   2.8kg 19998108
## 406  1.10kg 16654716
## 407   1.2kg 15534324
## 408  1.36kg 14938560
## 409   2.2kg  3636828
## 410  1.15kg  2707169
## 411  2.67kg 17117100
## 412   1.7kg 17277156
## 413   2.1kg  4170348
## 414   1.6kg  7015877
## 415  1.27kg  8251776
## 416   2.3kg  5325419
## 417  1.65kg  6126588
## 418  1.43kg 13338000
## 419  2.14kg  4801235
## 420  1.75kg 10807159
## 421     2kg 16885908
## 422   1.4kg  3992508
## 423  2.31kg 12688884
## 424   2.3kg  5308524
## 425  4.42kg 24888708
## 426  2.62kg 10305828
## 427  2.02kg 10158221
## 428   1.6kg  9772308
## 429  3.35kg 17775108
## 430  1.16kg  2658708
## 431  1.15kg  2391948
## 432   1.4kg  8980920
## 433   1.7kg  5326308
## 434   2.3kg 21740940
## 435   2.5kg 21776508
## 436   3.2kg 15071940
## 437   2.1kg  3085524
## 438   1.1kg 19553508
## 439  1.32kg 21180744
## 440     2kg  4970628
## 441   2.8kg  4614948
## 442   2.2kg  6660108
## 443  1.36kg 12706668
## 444   2.2kg  3103308
## 445   2.2kg  9772308
## 446  1.64kg 10483668
## 447   2.4kg  3928486
## 448  2.23kg 17721756
## 449   2.2kg  9138664
## 450  1.25kg 23021388
## 451  1.91kg  5237388
## 452  2.17kg 17561700
## 453  2.31kg 13640328
## 454  1.65kg 11959740
## 455  2.36kg  8705268
## 456  1.47kg  4259268
## 457  4.42kg 18193032
## 458 1.252kg  8794188
## 459  1.25kg 15996708
## 460   2.5kg  5689991
## 461  2.23kg  4837248
## 462   1.4kg  3868020
## 463  2.37kg  6660108
## 464   1.5kg  7104708
## 465  2.67kg 18584280
## 466     2kg  2703168
## 467   2.2kg  4170348
## 468  2.02kg  6749028
## 469  3.78kg 15107508
## 470   1.4kg 16521336
## 471  1.29kg 17775108
## 472   1.9kg 10261368
## 473   1.1kg 11337300
## 474  1.42kg 16377730
## 475  2.06kg 11550708
## 476  1.79kg  6580080
## 477  1.78kg 21411936
## 478   1.7kg 12128688
## 479   2.2kg  6002100
## 480  1.05kg 14867424
## 481  2.16kg 11221704
## 482  2.18kg  5216047
## 483  1.49kg  6455592
## 484  1.89kg  2213219
## 485   2.3kg  5023980
## 486  1.75kg  9327708
## 487  2.17kg 20789496
## 488  2.06kg 16885908
## 489  1.36kg 15987816
## 490  0.91kg 17339400
## 491   2.3kg  8998615
## 492  1.05kg 24888708
## 493  1.99kg 12004200
## 494   2.2kg  5148468
## 495  4.33kg 11283948
## 496   1.3kg  9772308
## 497  2.17kg  7993019
## 498  1.48kg 15552108
## 499   1.4kg  8438508
## 500   2.3kg  8100612
## 501   1.2kg  3023280
## 502  1.91kg  5504059
## 503   1.4kg 14218308
## 504   2.1kg  2658708
## 505  1.25kg  2356380
## 506  1.44kg  8438508
## 507     2kg 10883808
## 508   2.2kg  5450796
## 509  1.34kg 11764116
## 510   2.4kg 10216908
## 511  1.29kg  7993908
## 512   2.2kg  5681988
## 513  2.18kg  7433712
## 514   2.2kg 10841482
## 515  1.95kg 12448355
## 516   1.1kg  2178540
## 517  2.04kg  4636911
## 518  2.24kg 26391456
## 519  2.04kg  7904988
## 520     3kg 13373568
## 521   3.2kg 12439908
## 522  1.32kg 12439908
## 523  1.64kg 11379359
## 524  1.63kg  6126588
## 525   2.8kg  7904988
## 526  2.02kg 11915280
## 527   2.2kg  7104708
## 528   2.2kg  4081428
## 529   2.3kg  5201820
## 530   1.9kg 12244284
## 531  4.42kg 26789551
## 532   2.0kg  7647120
## 533     2kg 11550708
## 534   1.2kg  3281148
## 535   2.3kg 14662908
## 536  1.93kg 12173148
## 537   2.2kg  7090570
## 538  1.86kg  3547819
## 539  2.62kg 15996708
## 540  1.87kg  7638228
## 541   1.2kg 12439908
## 542   1.6kg  6543356
## 543  1.34kg 10181340
## 544   2.4kg  7095816
## 545     2kg  3103308
## 546   2.1kg  6273306
## 547  1.87kg  6980220
## 548  2.15kg  4111216
## 549  1.86kg  3530124
## 550  1.99kg 15374268
## 551   2.2kg  4437108
## 552   1.9kg  9932275
## 553  4.42kg 23999508
## 554  2.65kg  4838582
## 555  2.63kg 11381760
## 556     2kg  1991808
## 557  1.35kg  2267460
## 558   2.8kg  8438508
## 559  1.91kg  5058659
## 560  2.18kg  5494367
## 561  1.25kg  3103308
## 562  2.05kg  5601960
## 563  1.16kg 17472780
## 564   3.4kg 26667108
## 565   2.5kg  7460388
## 566  1.21kg 14218308
## 567  1.93kg  8527428
## 568   2.2kg  6571188
## 569   2.2kg  3058848
## 570  2.02kg  8803080
## 571  3.14kg 16547923
## 572  1.94kg  3458988
## 573  1.95kg  5770908
## 574   2.3kg  7380360
## 575  2.05kg  6091020
## 576   1.4kg  2214108
## 577  1.24kg 16583580
## 578   4.6kg 23679396
## 579  4.14kg 24266268
## 580   2.2kg  6660197
## 581  1.45kg  3458988
## 582   1.9kg  8967760
## 583  1.49kg  6393348
## 584  1.93kg 13670472
## 585  1.26kg  2623140
## 586   4.5kg 20887308
## 587  3.78kg 13320216
## 588   1.4kg 14876316
## 589   2.2kg  5415228
## 590  2.73kg 15738840
## 591   2.2kg  6571188
## 592   2.2kg  8438508
## 593  1.39kg  5361876
## 594   2.5kg 15107508
## 595   2.8kg  4703868
## 596  2.29kg  4081428
## 597  1.37kg 18006300
## 598   1.7kg 13106808
## 599  1.34kg 14849640
## 600  2.06kg 15676596
## 601  1.84kg 10839348
## 602   2.1kg  5944124
## 603   1.6kg  2925468
## 604  4.14kg 19553508
## 605  2.18kg  4134780
## 606   1.8kg 20442708
## 607   2.2kg 12439908
## 608   2.4kg  5015088
## 609     2kg 11550708
## 610   1.6kg  3103308
## 611   2.5kg 43561908
## 612  2.59kg  7816157
## 613  2.18kg  3947159
## 614  2.25kg  3192228
## 615  1.93kg  7727148
## 616     3kg 10385856
## 617  2.18kg  5059548
## 618  1.84kg 12350988
## 619  2.94kg 20165811
## 620  1.25kg  3370068
## 621  2.31kg  9994608
## 622  1.65kg 13026780
## 623   2.2kg  6900192
## 624   2.2kg  7104708
## 625  1.88kg  8287344
## 626   2.2kg  7993908
## 627   1.4kg  2125188
## 628   2.2kg  4161456
## 629   1.5kg  5682077
## 630     2kg 16183440
## 631   1.1kg 16894800
## 632  2.62kg 13151268
## 633   1.8kg  7371468
## 634   2.2kg  5148468
## 635     2kg  3547908
## 636  1.99kg  8061665
## 637  1.23kg 16619148
## 638  1.42kg  2214108
## 639  1.37kg 15626979
## 640  2.06kg 21331908
## 641   2.5kg  9861228
## 642   2.6kg  4631843
## 643  1.14kg 21785400
## 644   2.5kg 10394748
## 645   2.4kg  4001400
## 646  1.43kg  2436408
## 647   1.8kg  8171748
## 648  1.95kg 23110308
## 649   1.2kg 10785996
## 650  1.36kg 14084928
## 651   3.8kg 24888708
## 652   2.4kg  6304428
## 653   1.2kg 12892511
## 654   2.2kg 10597486
## 655  1.86kg  3244691
## 656   2.0kg  9461088
## 657   2.2kg  8171748
## 658   2.2kg 10092420
## 659  3.31kg 10634832
## 660  4.42kg 27986414
## 661  1.56kg 10928268
## 662   2.2kg  3725748
## 663   2.2kg  4757220
## 664  2.04kg  4792788
## 665   2.7kg 13220359
## 666   2.1kg  4428216
## 667  2.06kg  8491860
## 668   2.1kg  6624540
## 669   2.0kg 11186136
## 670   2.1kg  3663504
## 671 1.252kg 16608922
## 672  1.90kg  7273211
## 673   1.3kg  9194328
## 674   2.2kg  3103308
## 675  1.63kg  6215508
## 676   2.4kg 11506248
## 677   1.1kg 10092420
## 678   1.4kg  4401540
## 679  1.09kg 20442708
## 680   2.5kg 11550708
## 681   2.2kg  8873327
## 682  1.86kg  3725748
## 683  3.21kg 18237492
## 684   2.5kg  6215508
## 685  1.19kg 13329108
## 686  3.49kg 25019865
## 687  1.86kg  5447328
## 688   2.2kg  4852098
## 689  2.65kg  5059548
## 690   2.1kg  2827656
## 691  1.45kg  3334500
## 692   1.7kg  6215508
## 693  3.14kg 16965847
## 694  1.42kg 23030280
## 695   1.5kg  8651916
## 696   1.4kg  2391948
## 697  1.38kg 15552108
## 698   1.2kg  5948748
## 699  1.36kg 16690284
## 700   2.1kg  6126588
## 701  2.56kg  7282548
## 702   2.2kg  3547908
## 703   2.2kg  3814668
## 704   2.1kg  5525933
## 705  1.90kg  4001400
## 706  2.18kg  7069140
## 707   1.6kg  8883108
## 708  2.18kg 16494660
## 709   1.8kg 10590372
## 710  2.71kg  5824349
## 711   2.5kg 11106108
## 712  1.64kg  9683388
## 713  1.98kg  6455592
## 714   1.5kg  2649816
## 715  1.93kg 12685861
## 716  1.87kg  7621066
## 717   1.9kg 10483668
## 718  2.19kg  2649816
## 719   1.4kg  2356380
## 720  2.63kg 10670400
## 721  1.17kg 14997603
## 722  1.58kg  7439047
## 723  1.32kg 13329108
## 724  4.36kg 32539385
## 725   2.7kg 11990684
## 726   1.9kg  4356191
## 727   2.2kg  6393348
## 728  1.71kg  5770908
## 729  2.32kg  5242012
## 730   2.1kg  4348188
## 731   4.2kg 17206020
## 732  2.25kg  5770908
## 733   2.1kg  5779800
## 734   2.4kg  4970628
## 735  1.44kg  8536320
## 736  1.85kg  6926868
## 737   2.6kg 21509748
## 738  1.55kg  5859828
## 739   1.8kg 18624116
## 740   2.4kg  3652834
## 741   2.0kg 10732644
## 742     2kg  5913180
## 743  1.25kg 13649220
## 744   1.7kg  8883108
## 745   2.5kg 29334708
## 746  1.68kg  2934360
## 747  0.81kg 14662908
## 748  1.86kg  4792788
## 749   1.6kg 10018705
## 750     3kg 39026988
## 751   1.4kg  4223700
## 752  1.84kg 16894800
## 753  2.45kg  5148468
## 754   1.7kg  9745632
## 755  2.37kg  7557311
## 756   1.3kg 10661508
## 757   2.2kg  9772308
## 758  2.59kg 13880412
## 759  4.42kg 25511059
## 760   2.1kg  5326308
## 761   2.5kg  9318816
## 762  1.18kg 16530228
## 763   1.1kg 13862628
## 764   1.2kg 10039068
## 765  1.65kg  7549308
## 766   1.6kg  5824260
## 767   2.8kg  4182263
## 768  2.72kg  9772308
## 769  1.31kg 14218308
## 770   2.1kg  2649816
## 771   2.3kg 10503853
## 772  1.71kg 15996708
## 773  1.75kg  9069840
## 774  2.62kg  9772308
## 775  1.26kg 11061648
## 776   2.3kg  7460388
## 777   2.5kg 21074040
## 778   1.8kg  5655312
## 779  1.95kg 25777908
## 780     2kg  5174255
## 781  4.42kg 31911610
## 782   4.3kg 20896200
## 783  1.47kg 15685488
## 784   2.2kg  2925468
## 785   1.7kg 20442708
## 786   1.6kg 16814772
## 787   2.2kg  9683388
## 788   2.4kg  8883108
## 789   4.2kg 20442708
## 790  2.62kg  8758620
## 791  2.24kg 11906388
## 792  1.22kg  1804187
## 793  1.37kg 17517240
## 794  2.08kg  8527428
## 795 0.920kg 10359180
## 796  1.42kg 20718360
## 797  1.63kg  2658708
## 798  1.95kg  7202520
## 799  1.38kg 11995308
## 800     2kg  6571188
## 801  3.14kg 18361091
## 802  2.37kg  9772308
## 803  1.29kg 13329108
## 804  2.06kg 15552108
## 805  1.63kg  6615648
## 806  1.26kg 12350988
## 807   2.1kg  6935760
## 808  2.04kg  5593068
## 809  2.62kg 14929668
## 810   2.4kg  5415228
## 811  3.74kg 15552108
## 812   2.9kg 21474180
## 813  0.81kg 13329108
## 814  1.98kg  8545212
## 815  2.18kg  7022991
## 816  1.32kg 16530228
## 817  1.29kg 15996708
## 818  1.23kg  3423420
## 819  4.36kg 22274638
## 820  1.76kg  6713460
## 821   2.1kg  4356191
## 822  1.25kg  9692280
## 823  1.13kg 22221108
## 824   2.4kg 10661508
## 825  1.13kg 16672500
## 826  1.75kg  4437108
## 827   1.1kg 12075336
## 828  1.76kg  5201820
## 829  1.35kg  3156660
## 830   1.5kg  5504148
## 831  3.49kg 48897108
## 832   1.1kg 18664308
## 833   2.1kg  4614948
## 834   1.7kg 10545912
## 835  1.32kg 14671800
## 836  3.21kg 24672010
## 837   2.9kg 21509748
## 838   2.0kg  5948748
## 839   1.5kg  2889900
## 840   2.3kg  5246280
## 841  2.73kg 15996708
## 842  4.42kg 27324138
## 843  2.63kg  8091720
## 844  2.18kg  6348799
## 845  1.54kg 16628040
## 846  2.18kg  6571188
## 847   1.4kg  5468580
## 848  1.45kg  9123192
## 849  1.28kg 20247084
## 850  1.54kg 13053456
## 851  1.86kg  2658708
## 852   2.1kg 16885908
## 853  2.83kg  7691580
## 854  1.96kg 16921476
## 855   2.3kg  6998004
## 856   1.9kg  8402940
## 857     2kg  3992508
## 858  1.28kg 22754628
## 859  1.62kg  5770908
## 860   2.2kg  4170348
## 861   2.3kg  7564069
## 862  1.84kg 11995308
## 863  1.05kg 11426220
## 864   2.5kg  9043164
## 865  1.29kg 19918080
## 866  2.07kg  8091720
## 867   1.2kg  9736740
## 868  1.37kg 17339400
## 869  1.56kg  8020584
## 870  2.23kg 15809976
## 871  2.38kg  9381060
## 872   2.2kg  4259268
## 873   2.0kg 12342096
## 874  1.44kg  6535620
## 875  1.23kg 16441308
## 876   1.6kg 15027480
## 877     2kg  3547819
## 878  1.28kg  8314020
## 879  2.18kg  8113950
## 880  2.04kg  7460388
## 881  1.28kg 15116400
## 882   2.3kg  6089242
## 883  1.65kg  3094416
## 884   2.2kg  5948748
## 885   2.2kg  3281148
## 886  1.28kg 15996708
## 887  2.18kg  4052084
## 888   2.2kg 12181151
## 889  1.25kg  2640924
## 890   2.8kg  3370068
## 891  1.95kg 11248380
## 892  1.42kg 12439908
## 893  1.17kg 15107508
## 894  1.32kg 15996708
## 895  2.43kg 23554908
## 896  1.05kg 13115700
## 897  2.62kg  8260668
## 898  2.04kg  8002800
## 899  2.18kg  5459688
## 900   1.9kg  8314020
## 901  1.24kg 17900485
## 902  3.58kg 11372868
## 903  1.22kg 14662908
## 904  1.13kg 18219708
## 905  1.95kg 17454907
## 906  1.08kg 18664308
## 907  1.26kg 13186836
## 908  2.20kg  3192228
## 909   2.6kg  7015788
## 910  0.98kg 16885908
## 911   1.6kg 10714860
## 912  1.09kg 27565200
## 913   2.2kg  7015788
## 914  2.04kg  9060859
## 915   2.4kg  4437108
## 916  1.44kg  7833852
## 917  1.49kg  8536320
## 918   2.7kg 14218308
## 919   2.6kg 11995308
## 920   2.2kg  9958240
## 921  2.18kg  6090931
## 922  1.84kg 11532835
## 923  1.39kg 10216908
## 924   2.4kg 17561700
## 925  1.37kg 16227900
## 926  1.95kg  6490271
## 927  1.36kg 14671800
## 928  2.31kg 10359180
## 929  2.18kg  6296070
## 930  1.95kg 10216908
## 931   2.2kg  2747628
## 932  1.26kg 14040468
## 933  1.86kg  2568899
## 934   1.3kg 15996708
## 935  1.47kg  9825660
## 936  1.26kg 14840748
## 937  2.18kg  4967071
## 938   2.2kg 10661508
## 939  1.36kg 14573988
## 940  4.36kg 24524136
## 941  2.75kg 12439908
## 942   2.8kg  4712760
## 943  2.23kg  5504148
## 944   2.2kg  9950148
## 945   1.1kg 11550708
## 946   2.5kg  8883108
## 947  1.36kg 13090802
## 948   2.2kg  6091020
## 949  2.36kg  5859828
## 950  1.68kg  3103308
## 951   2.0kg 19998108
## 952  1.36kg 15783300
## 953   1.2kg 12982320
## 954   1.2kg 10305828
## 955   1.7kg 13240099
## 956  4.36kg 28045368
## 957  1.24kg 16885908
## 958  1.45kg  6891300
## 959   1.3kg 11275056
## 960  1.25kg  3458988
## 961   1.2kg 13649220
## 962  1.36kg 15649920
## 963   2.4kg  8972028
## 964   1.1kg 15916680
## 965  2.04kg  7527078
## 966  2.25kg  4140293
## 967   1.9kg  7335900
## 968  2.04kg  6091020
## 969  4.42kg 28000908
## 970   2.4kg  6179940
## 971  1.22kg 16885908
## 972   1.5kg 17454818
## 973  4.42kg 24897600
## 974  1.95kg 10492560
## 975  2.73kg 18227711
## 976  2.04kg  8705268
## 977  1.70kg  8909784
laptops_train <- read.csv("C:/Users/josse/OneDrive/Documentos/R/laptops_test.csv",header = TRUE,sep=",")
laptops_train
##     Manufacturer                                  Model.Name           Category
## 1             HP           15-bs053od (i7-7500U/6GB/1TB/W10)           Notebook
## 2           Asus                            Rog GL753VE-DS74             Gaming
## 3           Dell                               Inspiron 7579 2 in 1 Convertible
## 4        Toshiba                           Portege Z30-C-1CV           Notebook
## 5         Lenovo                           IdeaPad 320-15ABR           Notebook
## 6        Fujitsu                               LifeBook A556           Notebook
## 7        Toshiba                             Tecra A40-C-1KF           Notebook
## 8           Dell                               Inspiron 3567           Notebook
## 9             HP                                 Probook 450           Notebook
## 10        Lenovo                          Legion Y520-15IKBN             Gaming
## 11          Dell                               Inspiron 5567           Notebook
## 12          Dell                               Latitude 5480           Notebook
## 13            HP                             EliteBook Folio            Netbook
## 14            HP                15-bs005nv (i3-6006U/4GB/1TB           Notebook
## 15        Lenovo              V110-15IAP (N3350/4GB/128GB/No           Notebook
## 16        Lenovo                               ThinkPad T560           Notebook
## 17          Dell                               Inspiron 5378 2 in 1 Convertible
## 18          Asus                      ZenBook UX310UA-FB485T           Notebook
## 19            HP                           Spectre 13-V111dx          Ultrabook
## 20          Acer                              Aspire ES1-533           Notebook
## 21          Asus                            Rog GL553VE-DS74             Gaming
## 22            HP                               EliteBook 840          Ultrabook
## 23          Acer                                     Nitro 5             Gaming
## 24            HP                                      ENVY -           Notebook
## 25          Dell                                 Vostro 3568           Notebook
## 26            HP                                 Probook 440           Notebook
## 27       Toshiba                           Portege Z30-C-16H           Notebook
## 28            HP                               EliteBook 840           Notebook
## 29            HP                                 ProBook 640           Notebook
## 30            HP                              EliteBook 1040          Ultrabook
## 31            HP                                 ProBook 440           Notebook
## 32            HP                                 Probook 440           Notebook
## 33          Dell                               Inspiron 7567             Gaming
## 34            HP                               EliteBook 820          Ultrabook
## 35            HP                               Elitebook 840           Notebook
## 36            HP                               EliteBook 840          Ultrabook
## 37            HP                                 Probook 430           Notebook
## 38       Toshiba                           Portege A30-C-1CZ           Notebook
## 39            HP                                 ProBook 450           Notebook
## 40        Lenovo                                ThinkPad P70           Notebook
## 41       Toshiba                             Tecra Z40-C-12Z           Notebook
## 42            HP                              EliteBook 1040           Notebook
## 43          Dell                               Inspiron 5568 2 in 1 Convertible
## 44       Toshiba                         Portégé Z30-C-16K          Ultrabook
## 45            HP                           Spectre 13-V100nv           Notebook
## 46            HP                                 ProBook 440           Notebook
## 47          Dell                              Latitude E5570           Notebook
## 48            HP                               Elitebook 820          Ultrabook
## 49            HP                                 ProBook 650           Notebook
## 50            HP                                 ProBook 640           Notebook
## 51          Dell                                      XPS 13          Ultrabook
## 52            HP                                 Probook 470           Notebook
## 53            HP                                 ProBook 440           Notebook
## 54          Acer                                    Aspire 3           Notebook
## 55           MSI                                  GL72M 7RDX             Gaming
## 56            HP                                 Probook 640           Notebook
## 57            HP                               EliteBook 850           Notebook
## 58            HP                               EliteBook 820          Ultrabook
## 59            HP                                 ProBook 450           Notebook
## 60       Toshiba                             Tecra Z40-C-136          Ultrabook
## 61          Dell                              Latitude E5570           Notebook
## 62            HP                                 ProBook 440           Notebook
## 63        Lenovo                              Yoga 500-15ISK 2 in 1 Convertible
## 64          Vero                V142 (X5-Z8350/2GB/32GB/W10)           Notebook
## 65       Toshiba                             Tecra A50-C-218           Notebook
## 66        Lenovo                               Thinkpad L560           Notebook
## 67            HP                               EliteBook 840           Notebook
## 68            HP                               EliteBook 850           Notebook
## 69            HP                              EliteBook 1040           Notebook
## 70           MSI                             GT72S Dominator             Gaming
## 71        Lenovo                          IdeaPad Y900-17ISK             Gaming
## 72          Asus                           Chromebook C202SA            Netbook
## 73        Lenovo                                 ThinkPad X1           Notebook
## 74            HP                                   Noteb Pav           Notebook
## 75          Dell                               Inspiron 5578 2 in 1 Convertible
## 76            HP                                 ProBook 450           Notebook
## 77          Dell                                      XPS 13          Ultrabook
## 78            HP                                 ProBook 650           Notebook
## 79            HP                                      250 G5           Notebook
## 80          Acer                              Aspire ES1-523           Notebook
## 81          Dell                               Inspiron 7378 2 in 1 Convertible
## 82           MSI                                  GT62VR 6RD             Gaming
## 83            HP                                 ProBook 450           Notebook
## 84          Asus                           Rog G752VL-GC088D             Gaming
## 85          Dell                               Inspiron 3567           Notebook
## 86          Dell                               Inspiron 5567           Notebook
## 87           MSI                                  GS63VR 6RF             Gaming
## 88          Dell                                      XPS 13          Ultrabook
## 89          Asus                                  ROG G701VO             Gaming
## 90          Dell                               Inspiron 5368 2 in 1 Convertible
## 91          Dell                                Alienware 15             Gaming
## 92         Apple                                 MacBook 12"          Ultrabook
## 93          Dell                               Latitude 3570           Notebook
## 94            HP                                 ProBook 650           Notebook
## 95            HP                               EliteBook 820          Ultrabook
## 96            HP                                 ProBook 430           Notebook
## 97        Lenovo                               ThinkPad Yoga          Ultrabook
## 98        Lenovo                           IdeaPad 300-17ISK           Notebook
## 99        Lenovo                           Ideapad 700-15ISK           Notebook
## 100          MSI                            GT72VR Dominator             Gaming
## 101       Lenovo         V110-15ISK (i5-6200U/4GB/500GB/W10)           Notebook
## 102           HP                                 Probook 650           Notebook
## 103       Lenovo                             Yoga 900S-12ISK          Ultrabook
## 104       Lenovo                          IdeaPad Y900-17ISK             Gaming
## 105       Lenovo                                   Yoga Book 2 in 1 Convertible
## 106           HP                                Spectre x360          Ultrabook
## 107         Dell                                 Vostro 3568           Notebook
## 108           HP                               EliteBook 840           Notebook
## 109           HP                                   ZBook 15u        Workstation
## 110       Lenovo                               ThinkPad T460           Notebook
## 111           HP                               Chromebook 13           Notebook
## 112         Acer                              Aspire ES1-523           Notebook
## 113         Dell                               Inspiron 3552           Notebook
## 114           HP                                      250 G6           Notebook
## 115         Asus                          Rog GL702VM-GC354T             Gaming
## 116         Dell                               Inspiron 5370          Ultrabook
## 117           HP                               Elitebook 820            Netbook
## 118         Acer                              Aspire F5-573G           Notebook
## 119         Dell                               Inspiron 5567           Notebook
## 120          MSI                                GS70 Stealth             Gaming
## 121           HP                                      250 G5           Notebook
## 122         Asus           G752VY-GC162T (i7-6700HQ/16GB/1TB             Gaming
## 123         Dell                              Latitude E5270          Ultrabook
## 124         Dell                              Latitude E5270          Ultrabook
## 125         Acer                               Chromebook 15           Notebook
## 126           HP                                    ZBook 17        Workstation
## 127       Lenovo                          Legion Y520-15IKBN             Gaming
## 128         Dell                              Latitude E5270          Ultrabook
## 129          MSI                                 GE72 Apache             Gaming
## 130       Lenovo                              Yoga 500-15ISK 2 in 1 Convertible
## 131           HP        15-bw011nv (A6-9220/4GB/1TB/FHD/W10)           Notebook
## 132         Asus                          Rog GL552VW-CN470T             Gaming
## 133           HP                              EliteBook 1030           Notebook
## 134         Dell                                 Vostro 3559           Notebook
## 135       Lenovo         V110-15ISK (i3-6006U/4GB/128GB/W10)           Notebook
## 136           HP                                 Spectre Pro          Ultrabook
## 137       Lenovo                                   Yoga Book 2 in 1 Convertible
## 138         Dell                                      XPS 13          Ultrabook
## 139       Lenovo                          IdeaPad Y900-17ISK             Gaming
## 140        Razer                               Blade Stealth          Ultrabook
## 141      Toshiba                           Portege X30-D-10K          Ultrabook
## 142         Asus                          Rog GL752VW-T4308T             Gaming
## 143         Vero            V131 (X5-Z8350/4GB/32GB/FHD/W10)           Notebook
## 144           HP                                 Spectre Pro           Notebook
## 145           HP                              EliteBook 1040           Notebook
## 146         Dell                              Latitude E5570           Notebook
## 147         Asus                                VivoBook Max           Notebook
## 148       Lenovo                               ThinkPad Yoga 2 in 1 Convertible
## 149       Lenovo                                   Yoga Book 2 in 1 Convertible
## 150           HP                               EliteBook 820          Ultrabook
## 151       Lenovo                          Legion Y520-15IKBN             Gaming
## 152           HP                                      Omen -             Gaming
## 153           HP           15-bs078cl (i7-7500U/8GB/2TB/W10)           Notebook
## 154       Lenovo                                ThinkPad P40 2 in 1 Convertible
## 155         Asus         L403NA-GA013TS (N3350/4GB/32GB/W10)           Notebook
## 156           HP                                      250 G6          Ultrabook
## 157         Acer                              Aspire E5-576G           Notebook
## 158       Lenovo                           IdeaPad 500-15ISK           Notebook
## 159           HP                                    ZBook 17        Workstation
## 160         Dell                               Inspiron 5567           Notebook
## 161          MSI                             GT72S Dominator             Gaming
## 162           HP                               EliteBook 850          Ultrabook
## 163       Lenovo                                 ThinkPad X1 2 in 1 Convertible
## 164          MSI                                  GP62M 7RDX             Gaming
## 165           HP                                 Spectre Pro 2 in 1 Convertible
## 166           HP                                    ZBook 15        Workstation
## 167           HP                                 Spectre Pro 2 in 1 Convertible
## 168           HP                                ZBook Studio        Workstation
## 169           HP                               EliteBook 820          Ultrabook
## 170         Dell                                 Vostro 5568           Notebook
## 171           HP                               EliteBook 850           Notebook
## 172       Lenovo                                 ThinkPad X1 2 in 1 Convertible
## 173       Lenovo             V110-15ISK (i3-6006U/4GB/1TB/No           Notebook
## 174           HP          15-BA015wm (E2-7110/4GB/500GB/W10)           Notebook
## 175       Lenovo             B51-80 (i5-6200U/8GB/1TB/Radeon           Notebook
## 176         Dell                               Inspiron 7567             Gaming
## 177         Dell                                      XPS 15           Notebook
## 178           HP        15-bw002nv (A6-9220/4GB/256GB/Radeon           Notebook
## 179          MSI                                  GP72M 7REX             Gaming
## 180       Lenovo                              ThinkPad T460s          Ultrabook
## 181       Lenovo          B51-80 (i5-6200U/8GB/1008GB/Radeon           Notebook
## 182           HP                                 Spectre Pro 2 in 1 Convertible
## 183       Lenovo                               ThinkPad T460          Ultrabook
## 184          MSI                                GS40 Phantom             Gaming
## 185           HP                         Pavilion 15-cb003nv             Gaming
## 186       Lenovo                           IdeaPad 310-15ISK           Notebook
## 187           HP                                      250 G4           Notebook
## 188         Dell                               Inspiron 7567             Gaming
## 189       Lenovo                               ThinkPad T570           Notebook
## 190       Lenovo         320-15ISK (i3-6006U/4GB/1TB/GeForce           Notebook
## 191           HP                           Stream 14-AX000nv           Notebook
## 192          MSI                                    PL60 7RD             Gaming
## 193           HP                                      250 G5           Notebook
## 194           HP                                 ProBook 450           Notebook
## 195         Asus         X553SA-XX021T (N3050/4GB/500GB/W10)           Notebook
## 196       Lenovo           V110-15ISK (i5-6200U/4GB/500GB/No           Notebook
## 197       Lenovo                           IdeaPad 510-15IKB           Notebook
## 198         Asus UX410UA-GV097T (i3-7100U/4GB/256GB/FHD/W10)           Notebook
## 199       Lenovo         B51-80 (i7-6500U/4GB/1008GB/FHD/W7)           Notebook
## 200       Lenovo                          IdeaPad Y700-15ISK             Gaming
## 201          MSI                                  GS60 Ghost             Gaming
## 202           HP                                 ProBook 450           Notebook
## 203       Lenovo                                 ThinkPad X1 2 in 1 Convertible
## 204       Lenovo                           IdeaPad 310-15IKB          Ultrabook
## 205         Dell                                 Vostro 5568           Notebook
## 206         Acer                                    Aspire 3           Notebook
## 207           HP                         Pavilion 15-BC000nv           Notebook
## 208         Asus                          Rog GL552VW-DM201T             Gaming
## 209         Dell                               Inspiron 5578 2 in 1 Convertible
## 210         Acer                              Aspire E5-576G           Notebook
## 211         Dell                                      XPS 13          Ultrabook
## 212         Acer                             Predator G9-793             Gaming
## 213       Lenovo                          Legion Y520-15IKBN             Gaming
## 214      Samsung                             Chromebook Plus 2 in 1 Convertible
## 215           HP                                      250 G6           Notebook
## 216        Apple                                 MacBook 12"          Ultrabook
## 217         Dell                               Inspiron 7378 2 in 1 Convertible
## 218           HP                              Pavilion Power           Notebook
## 219       Lenovo         V110-15ISK (i3-6006U/4GB/1TB/Radeon           Notebook
## 220         Asus                           Rog G752VY-GC229T             Gaming
## 221         Acer                                    Aspire 3           Notebook
## 222          MSI                                  GS73VR 7RF             Gaming
## 223         Dell                               Inspiron 5567           Notebook
## 224       Lenovo                           IdeaPad 310-15ISK           Notebook
## 225         Dell                               Inspiron 5579 2 in 1 Convertible
## 226         Dell                                      XPS 13          Ultrabook
## 227         Asus   FX502VM-DM105T (i7-6700HQ/8GB/1TB/GeForce             Gaming
## 228         Dell                               Inspiron 5567           Notebook
## 229           HP         15-bs025nv (i5-7200U/8GB/256GB/W10)           Notebook
## 230       Lenovo                           IdeaPad 320-15AST           Notebook
## 231         Acer                              Aspire E5-774G           Notebook
## 232         Asus                                   Rog Strix             Gaming
## 233        Apple                                 MacBook 12"          Ultrabook
## 234         Asus            FX502VM-AS73 (i7-7700HQ/16GB/1TB           Notebook
## 235          MSI                              GS73VR Stealth             Gaming
## 236         Dell                               Inspiron 7579 2 in 1 Convertible
## 237         Asus                                   ROG Strix             Gaming
## 238         Acer            C740-C9QX (3205U/2GB/32GB/Chrome            Netbook
## 239         Acer                                     E5 774G           Notebook
## 240       Lenovo                           IdeaPad 320-17IKB           Notebook
## 241       Lenovo                          IdeaPad Y700-15ISK             Gaming
## 242         Acer        SP714-51 (i7-7Y75/8GB/256GB/FHD/W10) 2 in 1 Convertible
## 243       Lenovo                               Thinkpad T560           Notebook
## 244          MSI                                 GP62MVR 6RF             Gaming
## 245           HP        15-bw009nv (A12-9720P/6GB/1TB/Radeon           Notebook
## 246         Dell                              Latitude E7270          Ultrabook
## 247         Dell                               Inspiron 5578 2 in 1 Convertible
## 248         Asus          X540SA-RBPDN09 (N3710/4GB/1TB/W10)           Notebook
## 249         Dell                                      XPS 13          Ultrabook
## 250         Dell                                 Vostro 3568           Notebook
## 251       Lenovo                          IdeaPad Y700-15ISK             Gaming
## 252          MSI                                  GL62M 7RDX             Gaming
## 253       Lenovo                               ThinkPad Yoga            Netbook
## 254        Razer                                   Blade Pro             Gaming
## 255         Dell                               Inspiron 3567           Notebook
## 256          MSI                               GE72VR Apache             Gaming
## 257        Apple                                 MacBook Air          Ultrabook
## 258           HP       15-bs023nv (i3-6006U/4GB/1TB/FHD/W10)           Notebook
## 259           HP                               EliteBook 840          Ultrabook
## 260         Dell                                 Vostro 3559           Notebook
## 261          MSI                                    GL62 6QF             Gaming
## 262       Lenovo                                 ThinkPad 13           Notebook
## 263       Lenovo                           IdeaPad 320-15ABR           Notebook
## 264         Asus                        ZenBook UX310UA-WB71          Ultrabook
## 265         Acer                              Aspire ES1-572           Notebook
## 266         Dell                               Inspiron 7779 2 in 1 Convertible
## 267           HP                               EliteBook 840           Notebook
## 268         Asus                          Rog GL553VE-FY052T             Gaming
## 269         Dell                               Latitude 5480           Notebook
## 270         Asus                                 Rog GL502VS             Gaming
## 271       Lenovo       V510-15IKB (i5-7200U/8GB/256GB/FHD/No           Notebook
## 272         Dell                                      XPS 13 2 in 1 Convertible
## 273         Dell                               Inspiron 3552           Notebook
## 274           HP                                      255 G6           Notebook
## 275       Lenovo                           IdeaPad 310-15ISK           Notebook
## 276       Lenovo                               ThinkPad L460           Notebook
## 277         Dell                               Inspiron 3552           Notebook
## 278         Asus           X541NA-GO020T (N3350/4GB/1TB/W10)           Notebook
## 279         Asus                           Rog G752VT-GC073T             Gaming
## 280         Dell                                 Vostro 3568           Notebook
## 281       Lenovo          B51-80 (i7-6500U/8GB/1008GB/Radeon           Notebook
## 282          MSI                                 GE62 Apache             Gaming
## 283       Lenovo                              Yoga 500-14IBD 2 in 1 Convertible
## 284         Asus                        ZenBook UX305CA-UBM1          Ultrabook
## 285         Dell                               Inspiron 3567           Notebook
## 286         Acer                              Aspire ES1-531           Notebook
## 287         Dell                               Inspiron 3552           Notebook
## 288       Lenovo                          IdeaPad Y700-15ISK           Notebook
## 289           HP                         Pavilion 15-AW003nv           Notebook
## 290         Dell                               Inspiron 3567           Notebook
## 291           HP                            Stream 11-Y000na            Netbook
## 292         Asus   X556UJ-XO044T (i7-6500U/4GB/500GB/GeForce           Notebook
## 293       Lenovo                              Yoga 500-14ISK 2 in 1 Convertible
## 294       Lenovo                              Yoga 900-13ISK 2 in 1 Convertible
## 295       Lenovo                          IdeaPad 100S-14IBR           Notebook
## 296           HP         15-AC110nv (i7-6500U/6GB/1TB/Radeon           Notebook
## 297         Asus         X553SA-XX031T (N3050/4GB/500GB/W10)           Notebook
## 298         Asus                        ZenBook UX305CA-UBM1          Ultrabook
## 299         Dell                               Inspiron 3567           Notebook
## 300         Acer                              Aspire ES1-531           Notebook
## 301         Dell                               Inspiron 3552           Notebook
## 302       Lenovo                          IdeaPad Y700-15ISK           Notebook
## 303           HP                         Pavilion 15-AW003nv           Notebook
## 304         Dell                               Inspiron 3567           Notebook
## 305           HP                            Stream 11-Y000na            Netbook
## 306         Asus   X556UJ-XO044T (i7-6500U/4GB/500GB/GeForce           Notebook
## 307       Lenovo                              Yoga 500-14ISK 2 in 1 Convertible
## 308       Lenovo                              Yoga 900-13ISK 2 in 1 Convertible
## 309       Lenovo                          IdeaPad 100S-14IBR           Notebook
## 310           HP         15-AC110nv (i7-6500U/6GB/1TB/Radeon           Notebook
## 311         Asus         X553SA-XX031T (N3050/4GB/500GB/W10)           Notebook
## 312         Asus                        ZenBook UX305CA-UBM1          Ultrabook
## 313         Dell                               Inspiron 3567           Notebook
## 314         Acer                              Aspire ES1-531           Notebook
## 315         Dell                               Inspiron 3552           Notebook
## 316       Lenovo                          IdeaPad Y700-15ISK           Notebook
## 317           HP                         Pavilion 15-AW003nv           Notebook
## 318         Dell                               Inspiron 3567           Notebook
## 319           HP                            Stream 11-Y000na            Netbook
## 320         Asus   X556UJ-XO044T (i7-6500U/4GB/500GB/GeForce           Notebook
## 321       Lenovo                              Yoga 500-14ISK 2 in 1 Convertible
## 322       Lenovo                              Yoga 900-13ISK 2 in 1 Convertible
## 323       Lenovo                          IdeaPad 100S-14IBR           Notebook
## 324           HP         15-AC110nv (i7-6500U/6GB/1TB/Radeon           Notebook
## 325         Asus         X553SA-XX031T (N3050/4GB/500GB/W10)           Notebook
##     Screen.Size                                        Screen
## 1         15.6"                                      1366x768
## 2         17.3"                             Full HD 1920x1080
## 3         15.6"     IPS Panel Full HD / Touchscreen 1920x1080
## 4         13.3"                             Full HD 1920x1080
## 5         15.6"                             Full HD 1920x1080
## 6         15.6"                                      1366x768
## 7         14.0"                                      1366x768
## 8         15.6"                                      1366x768
## 9         15.6"                             Full HD 1920x1080
## 10        15.6"                   IPS Panel Full HD 1920x1080
## 11        15.6"                                      1366x768
## 12        14.0"                             Full HD 1920x1080
## 13        12.5"                             Full HD 1920x1080
## 14        15.6"                             Full HD 1920x1080
## 15        15.6"                                      1366x768
## 16        15.6"                             Full HD 1920x1080
## 17        13.3"               Full HD / Touchscreen 1920x1080
## 18        13.3"                            Quad HD+ 3200x1800
## 19        13.3"     IPS Panel Full HD / Touchscreen 1920x1080
## 20        15.6"                                      1366x768
## 21        15.6"                             Full HD 1920x1080
## 22        14.0"                             Full HD 1920x1080
## 23        15.6"                   IPS Panel Full HD 1920x1080
## 24        13.3"                   IPS Panel Full HD 1920x1080
## 25        15.6"                                      1366x768
## 26        14.0"                                      1366x768
## 27        13.3"                             Full HD 1920x1080
## 28        14.0"                                      1366x768
## 29        14.0"                             Full HD 1920x1080
## 30        14.0"                             Full HD 1920x1080
## 31        14.0"                             Full HD 1920x1080
## 32        14.0"                                      1366x768
## 33        15.6"                             Full HD 1920x1080
## 34        12.5"                             Full HD 1920x1080
## 35        14.0"                             Full HD 1920x1080
## 36        14.0"                             Full HD 1920x1080
## 37        13.3"                                      1366x768
## 38        13.3"                                      1366x768
## 39        15.6"                                      1366x768
## 40        17.3"               IPS Panel 4K Ultra HD 3840x2160
## 41        14.0"                   IPS Panel Full HD 1920x1080
## 42        14.0"                             Full HD 1920x1080
## 43        15.6"     IPS Panel Full HD / Touchscreen 1920x1080
## 44        13.3"                             Full HD 1920x1080
## 45        13.3"                   IPS Panel Full HD 1920x1080
## 46        14.0"                             Full HD 1920x1080
## 47        15.6"                             Full HD 1920x1080
## 48        12.5"                                      1366x768
## 49        14.0"                                      1366x768
## 50        14.0"                                      1366x768
## 51        13.3"              Quad HD+ / Touchscreen 3200x1800
## 52        17.3"                             Full HD 1920x1080
## 53        14.0"                                      1366x768
## 54        15.6"                                      1366x768
## 55        17.3"                             Full HD 1920x1080
## 56        14.0"                             Full HD 1920x1080
## 57        15.6"                             Full HD 1920x1080
## 58        12.5"                             Full HD 1920x1080
## 59        15.6"                                      1366x768
## 60        14.0"                   IPS Panel Full HD 1920x1080
## 61        15.6"                             Full HD 1920x1080
## 62        14.0"                             Full HD 1920x1080
## 63        15.6"     IPS Panel Full HD / Touchscreen 1920x1080
## 64        14.0"                                      1366x768
## 65        15.6"                   IPS Panel Full HD 1920x1080
## 66        15.6"                             Full HD 1920x1080
## 67        14.0"                             Full HD 1920x1080
## 68        15.6"                             Full HD 1920x1080
## 69        14.0"                             Full HD 1920x1080
## 70        17.3"                   IPS Panel Full HD 1920x1080
## 71        17.3"                   IPS Panel Full HD 1920x1080
## 72        11.6"                                      1366x768
## 73        14.0"                           IPS Panel 2560x1440
## 74        15.6"                   IPS Panel Full HD 1920x1080
## 75        15.6"     IPS Panel Full HD / Touchscreen 1920x1080
## 76        15.6"                                      1366x768
## 77        13.3"              Quad HD+ / Touchscreen 3200x1800
## 78        15.6"                                      1366x768
## 79        15.6"                                      1366x768
## 80        15.6"                                      1366x768
## 81        13.3"     IPS Panel Full HD / Touchscreen 1920x1080
## 82        15.6"                             Full HD 1920x1080
## 83        15.6"                             Full HD 1920x1080
## 84        17.3"                   IPS Panel Full HD 1920x1080
## 85        15.6"                             Full HD 1920x1080
## 86        15.6"                             Full HD 1920x1080
## 87        15.6"                             Full HD 1920x1080
## 88        13.3"                             Full HD 1920x1080
## 89        17.3"                   IPS Panel Full HD 1920x1080
## 90        13.3"               Full HD / Touchscreen 1920x1080
## 91        15.6"                         4K Ultra HD 3840x2160
## 92        12.0"            IPS Panel Retina Display 2304x1440
## 93        15.6"                                      1366x768
## 94        15.6"                                      1366x768
## 95        12.5"                             Full HD 1920x1080
## 96        13.3"                             Full HD 1920x1080
## 97        12.5"     IPS Panel Full HD / Touchscreen 1920x1080
## 98        17.3"                                      1600x900
## 99        15.6"                   IPS Panel Full HD 1920x1080
## 100       17.3"                             Full HD 1920x1080
## 101       15.6"                                      1366x768
## 102       15.6"                             Full HD 1920x1080
## 103       12.5"               IPS Panel Touchscreen 2560x1440
## 104       17.3"                   IPS Panel Full HD 1920x1080
## 105       10.1"               IPS Panel Touchscreen 1920x1200
## 106       13.3"               IPS Panel 4K Ultra HD 3840x2160
## 107       15.6"                             Full HD 1920x1080
## 108       14.0"                             Full HD 1920x1080
## 109       15.6"                             Full HD 1920x1080
## 110       14.0"                             Full HD 1920x1080
## 111       13.3"                            Quad HD+ 3200x1800
## 112       15.6"                                      1366x768
## 113       15.6"                                      1366x768
## 114       15.6"                                      1366x768
## 115       17.3"                   IPS Panel Full HD 1920x1080
## 116       13.3"                   IPS Panel Full HD 1920x1080
## 117       12.5"                                      1366x768
## 118       15.6"                             Full HD 1920x1080
## 119       15.6"                             Full HD 1920x1080
## 120       17.3"                             Full HD 1920x1080
## 121       15.6"                                      1366x768
## 122       17.3"                   IPS Panel Full HD 1920x1080
## 123       12.5"                                      1366x768
## 124       12.5"                                      1366x768
## 125       15.6"                                      1366x768
## 126       17.3"                   IPS Panel Full HD 1920x1080
## 127       15.6"                             Full HD 1920x1080
## 128       12.5"                                      1366x768
## 129       17.3"                             Full HD 1920x1080
## 130       15.6"     IPS Panel Full HD / Touchscreen 1920x1080
## 131       15.6"                             Full HD 1920x1080
## 132       15.6"                   IPS Panel Full HD 1920x1080
## 133       13.3"              Quad HD+ / Touchscreen 3200x1800
## 134       15.6"                                      1366x768
## 135       15.6"                                      1366x768
## 136       13.3"                             Full HD 1920x1080
## 137       10.1"               IPS Panel Touchscreen 1920x1200
## 138       13.3"                             Full HD 1920x1080
## 139       17.3"                   IPS Panel Full HD 1920x1080
## 140       12.5"           Touchscreen / 4K Ultra HD 3840x2160
## 141       13.3"                             Full HD 1920x1080
## 142       17.3"                             Full HD 1920x1080
## 143       13.3"                             Full HD 1920x1080
## 144       13.3"                             Full HD 1920x1080
## 145       14.0"                             Full HD 1920x1080
## 146       15.6"                                      1366x768
## 147       15.6"                                      1366x768
## 148       14.0"     IPS Panel Full HD / Touchscreen 1920x1080
## 149       10.1"               IPS Panel Touchscreen 1920x1200
## 150       12.5"                                      1366x768
## 151       15.6"                   IPS Panel Full HD 1920x1080
## 152       17.3"                   IPS Panel Full HD 1920x1080
## 153       15.6"                                      1366x768
## 154       14.0"     IPS Panel Full HD / Touchscreen 1920x1080
## 155       14.0"                                      1366x768
## 156       15.6"                             Full HD 1920x1080
## 157       15.6"                             Full HD 1920x1080
## 158       15.6"                             Full HD 1920x1080
## 159       17.3"                   IPS Panel Full HD 1920x1080
## 160       15.6"                                      1366x768
## 161       17.3"                             Full HD 1920x1080
## 162       15.6"                             Full HD 1920x1080
## 163       14.0"               IPS Panel Touchscreen 2560x1440
## 164       15.6"                             Full HD 1920x1080
## 165       13.3"               Full HD / Touchscreen 1920x1080
## 166       15.6"                   IPS Panel Full HD 1920x1080
## 167       13.3"                         Touchscreen 2560x1440
## 168       15.6"                             Full HD 1920x1080
## 169       12.5"                             Full HD 1920x1080
## 170       15.6"                             Full HD 1920x1080
## 171       15.6"                             Full HD 1920x1080
## 172       14.0"               IPS Panel Touchscreen 2560x1440
## 173       15.6"                                      1366x768
## 174       15.6"                                      1366x768
## 175       15.6"                             Full HD 1920x1080
## 176       15.6"                             Full HD 1920x1080
## 177       15.6" IPS Panel Touchscreen / 4K Ultra HD 3840x2160
## 178       15.6"                             Full HD 1920x1080
## 179       17.3"                             Full HD 1920x1080
## 180       14.0"                             Full HD 1920x1080
## 181       15.6"                             Full HD 1920x1080
## 182       13.3"                         Touchscreen 2560x1440
## 183       14.0"                             Full HD 1920x1080
## 184       14.0"                             Full HD 1920x1080
## 185       15.6"                   IPS Panel Full HD 1920x1080
## 186       15.6"                                      1366x768
## 187       15.6"                                      1366x768
## 188       15.6"                         4K Ultra HD 3840x2160
## 189       15.6"                   IPS Panel Full HD 1920x1080
## 190       15.6"                             Full HD 1920x1080
## 191       14.0"                                      1366x768
## 192       15.6"                   IPS Panel Full HD 1920x1080
## 193       15.6"                             Full HD 1920x1080
## 194       15.6"                             Full HD 1920x1080
## 195       15.6"                                      1366x768
## 196       15.6"                                      1366x768
## 197       15.6"                             Full HD 1920x1080
## 198       14.0"                             Full HD 1920x1080
## 199       15.6"                             Full HD 1920x1080
## 200       15.6"                   IPS Panel Full HD 1920x1080
## 201       15.6"                             Full HD 1920x1080
## 202       15.6"                                      1366x768
## 203       14.0"               IPS Panel Touchscreen 2560x1440
## 204       15.6"                             Full HD 1920x1080
## 205       15.6"                             Full HD 1920x1080
## 206       15.6"                                      1366x768
## 207       15.6"                   IPS Panel Full HD 1920x1080
## 208       15.6"                   IPS Panel Full HD 1920x1080
## 209       15.6"               Full HD / Touchscreen 1920x1080
## 210       15.6"                             Full HD 1920x1080
## 211       13.3"              Quad HD+ / Touchscreen 3200x1800
## 212       17.3"                   IPS Panel Full HD 1920x1080
## 213       15.6"                   IPS Panel Full HD 1920x1080
## 214       12.3"               IPS Panel Touchscreen 2400x1600
## 215       15.6"                                      1366x768
## 216       12.0"            IPS Panel Retina Display 2304x1440
## 217       13.3"     IPS Panel Full HD / Touchscreen 1920x1080
## 218       15.6"                   IPS Panel Full HD 1920x1080
## 219       15.6"                                      1366x768
## 220       17.3"                   IPS Panel Full HD 1920x1080
## 221       15.6"                                      1366x768
## 222       17.3"                             Full HD 1920x1080
## 223       15.6"                                      1366x768
## 224       15.6"                                      1366x768
## 225       15.6"               Full HD / Touchscreen 1920x1080
## 226       13.3"              Quad HD+ / Touchscreen 3200x1800
## 227       15.6"                             Full HD 1920x1080
## 228       15.6"                             Full HD 1920x1080
## 229       15.6"                                      1366x768
## 230       15.6"                                      1366x768
## 231       17.3"                                      1600x900
## 232       15.6"                             Full HD 1920x1080
## 233       12.0"            IPS Panel Retina Display 2304x1440
## 234       15.6"                             Full HD 1920x1080
## 235       17.3"                   IPS Panel Full HD 1920x1080
## 236       15.6"     IPS Panel Full HD / Touchscreen 1920x1080
## 237       17.3"                             Full HD 1920x1080
## 238       11.6"                                      1366x768
## 239       17.3"                                      1600x900
## 240       17.3"                                      1600x900
## 241       15.6"                   IPS Panel Full HD 1920x1080
## 242       14.0"     IPS Panel Full HD / Touchscreen 1920x1080
## 243       15.6"                   IPS Panel Full HD 1920x1080
## 244       15.6"                             Full HD 1920x1080
## 245       15.6"                             Full HD 1920x1080
## 246       12.5"               Full HD / Touchscreen 1920x1080
## 247       15.0"               Full HD / Touchscreen 1920x1080
## 248       15.6"                                      1366x768
## 249       13.3"              Quad HD+ / Touchscreen 3200x1800
## 250       15.6"                                      1366x768
## 251       15.6"     IPS Panel Full HD / Touchscreen 1920x1080
## 252       15.6"                             Full HD 1920x1080
## 253       12.5"     IPS Panel Full HD / Touchscreen 1920x1080
## 254       14.0"                             Full HD 1920x1080
## 255       15.6"                          Touchscreen 1366x768
## 256       17.3"                             Full HD 1920x1080
## 257       11.6"                                      1366x768
## 258       15.6"                             Full HD 1920x1080
## 259       14.0"                                     2560x1440
## 260       15.6"                                      1366x768
## 261       15.6"                             Full HD 1920x1080
## 262       13.3"                   IPS Panel Full HD 1920x1080
## 263       15.6"                             Full HD 1920x1080
## 264       13.3"                             Full HD 1920x1080
## 265       15.6"                                      1366x768
## 266       17.3"               Full HD / Touchscreen 1920x1080
## 267       14.0"                             Full HD 1920x1080
## 268       15.6"                   IPS Panel Full HD 1920x1080
## 269       14.0"                                      1366x768
## 270       15.6"                   IPS Panel Full HD 1920x1080
## 271       15.6"                   IPS Panel Full HD 1920x1080
## 272       13.3"              Quad HD+ / Touchscreen 3200x1800
## 273       15.6"                                      1366x768
## 274       15.6"                                      1366x768
## 275       15.6"                             Full HD 1920x1080
## 276       14.0"                   IPS Panel Full HD 1920x1080
## 277       15.6"                                      1366x768
## 278       15.6"                                      1366x768
## 279       17.3"                   IPS Panel Full HD 1920x1080
## 280       15.6"                                      1366x768
## 281       15.6"                             Full HD 1920x1080
## 282       15.6"                             Full HD 1920x1080
## 283       14.0"               Full HD / Touchscreen 1920x1080
## 284       13.3"                   IPS Panel Full HD 1920x1080
## 285       15.6"                                      1366x768
## 286       15.6"                                      1366x768
## 287       15.6"                                      1366x768
## 288       15.6"                   IPS Panel Full HD 1920x1080
## 289       15.6"                             Full HD 1920x1080
## 290       15.6"                                      1366x768
## 291       11.6"                                      1366x768
## 292       15.6"                                      1366x768
## 293       14.0"     IPS Panel Full HD / Touchscreen 1920x1080
## 294       13.3"    IPS Panel Quad HD+ / Touchscreen 3200x1800
## 295       14.0"                                      1366x768
## 296       15.6"                                      1366x768
## 297       15.6"                                      1366x768
## 298       13.3"                   IPS Panel Full HD 1920x1080
## 299       15.6"                                      1366x768
## 300       15.6"                                      1366x768
## 301       15.6"                                      1366x768
## 302       15.6"                   IPS Panel Full HD 1920x1080
## 303       15.6"                             Full HD 1920x1080
## 304       15.6"                                      1366x768
## 305       11.6"                                      1366x768
## 306       15.6"                                      1366x768
## 307       14.0"     IPS Panel Full HD / Touchscreen 1920x1080
## 308       13.3"    IPS Panel Quad HD+ / Touchscreen 3200x1800
## 309       14.0"                                      1366x768
## 310       15.6"                                      1366x768
## 311       15.6"                                      1366x768
## 312       13.3"                   IPS Panel Full HD 1920x1080
## 313       15.6"                                      1366x768
## 314       15.6"                                      1366x768
## 315       15.6"                                      1366x768
## 316       15.6"                   IPS Panel Full HD 1920x1080
## 317       15.6"                             Full HD 1920x1080
## 318       15.6"                                      1366x768
## 319       11.6"                                      1366x768
## 320       15.6"                                      1366x768
## 321       14.0"     IPS Panel Full HD / Touchscreen 1920x1080
## 322       13.3"    IPS Panel Quad HD+ / Touchscreen 3200x1800
## 323       14.0"                                      1366x768
## 324       15.6"                                      1366x768
## 325       15.6"                                      1366x768
##                                      CPU  RAM                 Storage
## 1             Intel Core i7 7500U 2.7GHz  6GB                 1TB HDD
## 2            Intel Core i7 7700HQ 2.8GHz 16GB    256GB SSD +  1TB HDD
## 3             Intel Core i7 7500U 2.7GHz 12GB               512GB SSD
## 4             Intel Core i5 6200U 2.3GHz  4GB               128GB SSD
## 5            AMD A12-Series 9720P 3.6GHz  6GB               256GB SSD
## 6             Intel Core i5 6200U 2.3GHz  4GB               256GB SSD
## 7             Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 8             Intel Core i5 7200U 2.5GHz  4GB               500GB HDD
## 9             Intel Core i5 7200U 2.5GHz  8GB                 1TB HDD
## 10           Intel Core i7 7700HQ 2.8GHz  8GB    128GB SSD +  1TB HDD
## 11            Intel Core i7 7500U 2.7GHz  8GB                 1TB HDD
## 12            Intel Core i5 7200U 2.5GHz  8GB               128GB SSD
## 13              Intel Core M 6Y75 1.2GHz  8GB               512GB SSD
## 14              Intel Core i3 6006U 2GHz  4GB    128GB SSD +  1TB HDD
## 15  Intel Celeron Dual Core N3350 1.1GHz  4GB               128GB SSD
## 16            Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 17            Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 18            Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 19            Intel Core i7 7500U 2.7GHz  8GB               256GB SSD
## 20  Intel Pentium Quad Core N4200 1.1GHz  4GB               500GB HDD
## 21           Intel Core i7 7700HQ 2.8GHz 16GB    256GB SSD +  1TB HDD
## 22            Intel Core i7 7500U 2.7GHz  8GB               512GB SSD
## 23           Intel Core i7 7700HQ 2.8GHz  8GB    128GB SSD +  1TB HDD
## 24            Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 25            Intel Core i3 7100U 2.4GHz  4GB               128GB SSD
## 26            Intel Core i5 7200U 2.5GHz  4GB               500GB HDD
## 27            Intel Core i5 6200U 2.3GHz  4GB               128GB SSD
## 28            Intel Core i5 6300U 2.4GHz  4GB               256GB SSD
## 29            Intel Core i5 7200U 2.5GHz  4GB               256GB SSD
## 30            Intel Core i7 6600U 2.6GHz  8GB               256GB SSD
## 31            Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 32            Intel Core i3 7100U 2.4GHz  4GB               500GB HDD
## 33           Intel Core i5 7300HQ 2.5GHz  8GB              1TB Hybrid
## 34            Intel Core i5 7200U 2.5GHz  4GB               500GB HDD
## 35            Intel Core i5 7200U 2.5GHz  4GB               256GB SSD
## 36            Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 37            Intel Core i3 7100U 2.4GHz  4GB               500GB HDD
## 38            Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 39            Intel Core i3 7100U 2.4GHz  4GB               256GB SSD
## 40           Intel Core i7 6820HQ 2.7GHz 16GB               512GB SSD
## 41            Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 42            Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 43            Intel Core i3 6100U 2.3GHz  4GB                 1TB HDD
## 44            Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 45            Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 46            Intel Core i7 7500U 2.7GHz  8GB               256GB SSD
## 47            Intel Core i5 6300U 2.4GHz  8GB               500GB HDD
## 48            Intel Core i5 7200U 2.5GHz  4GB               256GB SSD
## 49            Intel Core i5 7200U 2.5GHz  4GB               500GB HDD
## 50            Intel Core i5 7200U 2.5GHz  4GB               500GB HDD
## 51            Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 52            Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 53            Intel Core i5 7200U 2.5GHz  4GB               256GB SSD
## 54               AMD A9-Series 9420 3GHz  6GB                 1TB HDD
## 55           Intel Core i7 7700HQ 2.8GHz  8GB    128GB SSD +  1TB HDD
## 56            Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 57            Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 58            Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 59            Intel Core i5 7200U 2.5GHz  4GB               500GB HDD
## 60            Intel Core i7 6600U 2.6GHz  8GB               256GB SSD
## 61            Intel Core i5 6300U 2.4GHz  8GB               256GB SSD
## 62            Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 63            Intel Core i7 6500U 2.5GHz  4GB               256GB SSD
## 64           Intel Atom X5-Z8350 1.44GHz  2GB      32GB Flash Storage
## 65            Intel Core i7 6500U 2.5GHz 16GB               256GB SSD
## 66            Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 67            Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 68            Intel Core i5 6300U 2.4GHz  8GB  256GB SSD +  500GB HDD
## 69            Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 70           Intel Core i7 6820HK 2.7GHz 16GB    256GB SSD +  1TB HDD
## 71           Intel Core i7 6700HQ 2.6GHz 16GB    128GB SSD +  1TB HDD
## 72  Intel Celeron Dual Core N3060 1.6GHz  4GB      16GB Flash Storage
## 73            Intel Core i7 6600U 2.6GHz 16GB               256GB SSD
## 74            Intel Core i7 7500U 2.7GHz  8GB                 1TB HDD
## 75            Intel Core i5 7200U 2.7GHz  8GB               256GB SSD
## 76            Intel Core i5 7200U 2.5GHz  4GB               256GB SSD
## 77            Intel Core i7 7500U 2.7GHz 16GB                 1TB SSD
## 78            Intel Core i3 6100U 2.3GHz  4GB               500GB HDD
## 79            Intel Core i5 7200U 2.5GHz  4GB               500GB HDD
## 80             AMD A8-Series 7410 2.2GHz  8GB                 1TB HDD
## 81            Intel Core i7 7500U 2.7GHz 12GB               256GB SSD
## 82           Intel Core i7 6700HQ 2.6GHz 16GB    256GB SSD +  1TB HDD
## 83            Intel Core i7 7500U 2.7GHz  8GB               256GB SSD
## 84           Intel Core i7 6700HQ 2.6GHz 16GB                 1TB HDD
## 85            Intel Core i5 7200U 2.5GHz  4GB                 1TB HDD
## 86            Intel Core i7 7500U 2.7GHz 16GB                 2TB HDD
## 87           Intel Core i7 6700HQ 2.6GHz 16GB    256GB SSD +  1TB HDD
## 88            Intel Core i7 7500U 2.7GHz  8GB               256GB SSD
## 89           Intel Core i7 6820HK 2.7GHz 64GB                 1TB SSD
## 90            Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 91           Intel Core i7 6700HQ 2.6GHz 16GB    256GB SSD +  1TB HDD
## 92                   Intel Core M 1.1GHz  8GB     256GB Flash Storage
## 93            Intel Core i3 6100U 2.3GHz  4GB               500GB HDD
## 94            Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 95            Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 96            Intel Core i7 7500U 2.7GHz  8GB               256GB SSD
## 97            Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 98            Intel Core i5 6200U 2.3GHz  8GB                 1TB HDD
## 99           Intel Core i5 6300HQ 2.3GHz  4GB                 1TB HDD
## 100          Intel Core i7 7700HQ 2.8GHz 16GB    256GB SSD +  1TB HDD
## 101           Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 102           Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 103             Intel Core M 6Y75 1.2GHz  8GB               512GB SSD
## 104          Intel Core i7 6820HK 2.7GHz 32GB 512GB SSD +  1TB Hybrid
## 105          Intel Atom x5-Z8550 1.44GHz  4GB      64GB Flash Storage
## 106           Intel Core i7 7500U 2.7GHz 16GB               512GB SSD
## 107           Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 108           Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 109           Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 110           Intel Core i5 6200U 2.3GHz  8GB                 1GB SSD
## 111 Intel Pentium Dual Core 4405Y 1.5GHz  4GB      32GB Flash Storage
## 112            AMD A8-Series 7410 2.2GHz  4GB               500GB HDD
## 113 Intel Pentium Quad Core N3700 1.6GHz  4GB               500GB HDD
## 114             Intel Core i3 6006U 2GHz  4GB                 1TB HDD
## 115          Intel Core i7 7700HQ 2.8GHz  8GB    256GB SSD +  1TB HDD
## 116           Intel Core i5 8250U 1.6GHz  4GB               256GB SSD
## 117           Intel Core i5 6200U 2.3GHz  4GB               128GB SSD
## 118           Intel Core i5 7200U 2.5GHz  8GB    256GB SSD +  1TB HDD
## 119           Intel Core i5 7200U 2.5GHz  8GB                 1TB HDD
## 120          Intel Core i7 6700HQ 2.6GHz  8GB               256GB SSD
## 121 Intel Pentium Quad Core N3710 1.6GHz  4GB                 1TB HDD
## 122          Intel Core i7 6700HQ 2.6GHz 16GB    128GB SSD +  1TB HDD
## 123           Intel Core i3 6100U 2.3GHz  4GB               500GB HDD
## 124           Intel Core i3 6100U 2.3GHz  4GB               128GB SSD
## 125 Intel Celeron Dual Core 3205U 1.5GHz  4GB                16GB SSD
## 126          Intel Core i7 6700HQ 2.6GHz  8GB                 1TB HDD
## 127          Intel Core i7 7700HQ 2.8GHz 16GB               512GB SSD
## 128           Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 129          Intel Core i7 6700HQ 2.6GHz  8GB    128GB SSD +  1TB HDD
## 130           Intel Core i5 6200U 2.3GHz  4GB               256GB SSD
## 131            AMD A6-Series 9220 2.5GHz  4GB                 1TB HDD
## 132          Intel Core i7 6700HQ 2.6GHz 16GB    128GB SSD +  1TB HDD
## 133             Intel Core M 6Y54 1.1GHz  8GB               256GB SSD
## 134           Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 135           Intel Core i3 6006U 2.0GHz  4GB               128GB SSD
## 136           Intel Core i7 6500U 2.5GHz  8GB               512GB SSD
## 137          Intel Atom x5-Z8550 1.44GHz  4GB      64GB Flash Storage
## 138           Intel Core i7 7560U 2.4GHz  8GB               256GB SSD
## 139          Intel Core i7 6820HK 2.7GHz 16GB 256GB SSD +  1TB Hybrid
## 140           Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 141           Intel Core i7 7500U 2.7GHz 16GB               512GB SSD
## 142          Intel Core i7 6700HQ 2.6GHz  8GB    128GB SSD +  1TB HDD
## 143          Intel Atom X5-Z8350 1.44GHz  4GB      32GB Flash Storage
## 144           Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 145           Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 146           Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 147           Intel Core i3 7100U 2.4GHz  4GB                 1TB HDD
## 148           Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 149          Intel Atom x5-Z8550 1.44GHz  4GB      64GB Flash Storage
## 150           Intel Core i5 6300U 2.4GHz  8GB               256GB SSD
## 151          Intel Core i5 7300HQ 2.5GHz  8GB    128GB SSD +  1TB HDD
## 152          Intel Core i5 6300HQ 2.3GHz  8GB    128GB SSD +  1TB HDD
## 153           Intel Core i7 7500U 2.7GHz  8GB                 2TB HDD
## 154           Intel Core i7 6600U 2.6GHz  8GB               512GB SSD
## 155 Intel Celeron Dual Core N3350 1.1GHz  4GB      32GB Flash Storage
## 156           Intel Core i7 7500U 2.7GHz  8GB               256GB SSD
## 157           Intel Core i5 7200U 2.5GHz  4GB                 1TB HDD
## 158           Intel Core i7 6500U 2.5GHz 16GB              1TB Hybrid
## 159          Intel Core i7 6700HQ 2.6GHz  8GB               256GB SSD
## 160           Intel Core i5 7200U 2.5GHz  8GB                 1TB HDD
## 161          Intel Core i7 6820HQ 2.7GHz 16GB    256GB SSD +  1TB HDD
## 162           Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 163           Intel Core i7 6600U 2.6GHz 16GB               512GB SSD
## 164          Intel Core i7 7700HQ 2.8GHz  8GB    128GB SSD +  1TB HDD
## 165           Intel Core i5 6300U 2.4GHz  8GB               256GB SSD
## 166          Intel Core i7 6700HQ 2.6GHz  8GB               256GB SSD
## 167           Intel Core i7 6600U 2.6GHz  8GB               256GB SSD
## 168          Intel Core i7 6700HQ 2.6GHz  8GB               256GB SSD
## 169          Intel Core i7 6500U 2.50GHz  8GB               256GB SSD
## 170           Intel Core i7 7500U 2.7GHz  8GB               256GB SSD
## 171           Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 172           Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 173           Intel Core i3 6006U 2.0GHz  4GB                 1TB HDD
## 174             AMD E-Series 7110 1.8GHz  4GB               500GB HDD
## 175           Intel Core i5 6200U 2.3GHz  8GB                 1TB HDD
## 176          Intel Core i7 7700HQ 2.8GHz  8GB                 1TB HDD
## 177          Intel Core i5 6300HQ 2.3GHz  8GB               256GB SSD
## 178         AMD A6-Series A6-9220 2.5GHz  4GB               256GB SSD
## 179          Intel Core i7 7700HQ 2.8GHz 16GB    256GB SSD +  1TB HDD
## 180           Intel Core i7 6600U 2.6GHz 12GB               512GB SSD
## 181           Intel Core i5 6200U 2.3GHz  8GB              1TB Hybrid
## 182           Intel Core i7 6600U 2.6GHz  8GB               512GB SSD
## 183           Intel Core i7 6600U 2.6GHz  8GB               256GB SSD
## 184          Intel Core i7 6700HQ 2.6GHz 16GB    256GB SSD +  1TB HDD
## 185          Intel Core i7 7700HQ 2.8GHz  8GB                 1TB HDD
## 186           Intel Core i3 6006U 2.0GHz  8GB                 1TB HDD
## 187           Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 188          Intel Core i7 7700HQ 2.8GHz  8GB    128GB SSD +  1TB HDD
## 189           Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 190             Intel Core i3 6006U 2GHz  4GB                 1TB HDD
## 191 Intel Celeron Dual Core N3060 1.6GHz  2GB      32GB Flash Storage
## 192           Intel Core i7 7500U 2.7GHz  8GB                 1TB HDD
## 193           Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 194           Intel Core i7 8550U 1.8GHz 16GB               512GB SSD
## 195 Intel Celeron Dual Core N3050 1.6GHz  4GB               500GB HDD
## 196           Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 197           Intel Core i7 7500U 2.7GHz  8GB                 1TB HDD
## 198           Intel Core i3 7100U 2.4GHz  4GB               256GB SSD
## 199           Intel Core i7 6500U 2.5GHz  4GB              1TB Hybrid
## 200          Intel Core i7 6700HQ 2.6GHz 16GB               512GB SSD
## 201          Intel Core i7 6700HQ 2.6GHz 16GB    128GB SSD +  1TB HDD
## 202           Intel Core i3 6100U 2.3GHz  4GB               500GB HDD
## 203           Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 204           Intel Core i7 7500U 2.7GHz  6GB               256GB SSD
## 205           Intel Core i7 7500U 2.7GHz  8GB               256GB SSD
## 206   Intel Celeron Dual Core N3350 2GHz  4GB               500GB HDD
## 207          Intel Core i7 6700HQ 2.6GHz  6GB                 1TB HDD
## 208          Intel Core i7 6700HQ 2.6GHz  8GB    256GB SSD +  1TB HDD
## 209           Intel Core i7 7500U 2.7GHz 16GB               512GB SSD
## 210           Intel Core i5 7200U 2.5GHz  4GB               256GB SSD
## 211           Intel Core i5 6300U 2.4GHz  8GB               256GB SSD
## 212          Intel Core i7 7700HQ 2.8GHz 16GB    256GB SSD +  1TB HDD
## 213          Intel Core i5 7300HQ 2.5GHz  8GB                 1TB HDD
## 214        Samsung Cortex A72&A53 2.0GHz  4GB      32GB Flash Storage
## 215           Intel Core i5 7200U 2.5GHz  4GB               500GB HDD
## 216                  Intel Core M 1.1GHz  8GB     256GB Flash Storage
## 217           Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 218          Intel Core i7 7700HQ 2.8GHz 12GB    128GB SSD +  1TB HDD
## 219             Intel Core i3 6006U 2GHz  4GB                 1TB HDD
## 220          Intel Core i7 6700HQ 2.6GHz 16GB    512GB SSD +  1TB HDD
## 221   Intel Celeron Dual Core N3350 2GHz  4GB                 1TB HDD
## 222          Intel Core i7 7700HQ 2.8GHz 16GB    256GB SSD +  1TB HDD
## 223           Intel Core i3 6006U 2.0GHz  4GB               128GB SSD
## 224           Intel Core i7 6500U 2.5GHz  8GB               500GB HDD
## 225           Intel Core i7 8550U 1.8GHz 16GB               512GB SSD
## 226           Intel Core i7 7500U 2.7GHz 16GB               512GB SSD
## 227          Intel Core i7 6700HQ 2.6GHz  8GB                 1TB HDD
## 228           Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 229           Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 230             AMD E-Series 9000 2.2GHz  4GB               500GB HDD
## 231           Intel Core i3 6006U 2.0GHz  8GB                 1TB HDD
## 232          Intel Core i7 7700HQ 2.8GHz 16GB    256GB SSD +  1TB HDD
## 233                  Intel Core M 1.2GHz  8GB     512GB Flash Storage
## 234          Intel Core i7 7700HQ 2.8GHz 16GB    128GB SSD +  1TB HDD
## 235          Intel Core i7 6700HQ 2.6GHz 16GB    256GB SSD +  1TB HDD
## 236           Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 237          Intel Core i7 7700HQ 2.8GHz 16GB    256GB SSD +  1TB HDD
## 238 Intel Celeron Dual Core 3205U 1.5GHz  2GB                32GB SSD
## 239             Intel Core i3 6006U 2GHz  4GB                 1TB HDD
## 240           Intel Core i5 7200U 2.5GHz  8GB                 1TB HDD
## 241          Intel Core i7 6700HQ 2.6GHz  8GB    128GB SSD +  1TB HDD
## 242            Intel Core i7 7Y75 1.3GHz  8GB               256GB SSD
## 243           Intel Core i7 6600U 2.6GHz  8GB               256GB SSD
## 244          Intel Core i7 6700HQ 2.6GHz  8GB    128GB SSD +  1TB HDD
## 245          AMD A12-Series 9720P 2.7GHz  6GB                 1TB HDD
## 246           Intel Core i5 6300U 2.4GHz  8GB               256GB SSD
## 247           Intel Core i3 7100U 2.4GHz  4GB               500GB HDD
## 248 Intel Pentium Quad Core N3710 1.6GHz  4GB                 1TB HDD
## 249           Intel Core i7 7500U 2.7GHz  8GB               256GB SSD
## 250           Intel Core i5 7200U 2.5GHz  4GB                 1TB HDD
## 251          Intel Core i7 6700HQ 2.6GHz 16GB    128GB SSD +  1TB HDD
## 252          Intel Core i7 7700HQ 2.8GHz  8GB    128GB SSD +  1TB HDD
## 253          Intel Core i7 6500U 2.50GHz 16GB               512GB SSD
## 254          Intel Core i7 7700HQ 2.8GHz 16GB                 1TB SSD
## 255           Intel Core i3 7100U 2.4GHz  8GB                 1TB HDD
## 256          Intel Core i7 7700HQ 2.8GHz 16GB    256GB SSD +  1TB HDD
## 257                 Intel Core i5 1.6GHz  4GB     256GB Flash Storage
## 258             Intel Core i3 6006U 2GHz  4GB                 1TB HDD
## 259           Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 260           Intel Core i5 6200U 2.3GHz  4GB               500GB HDD
## 261          Intel Core i7 6700HQ 2.6GHz  8GB    128GB SSD +  1TB HDD
## 262           Intel Core i7 7500U 2.7GHz 16GB               512GB SSD
## 263          AMD A12-Series 9720P 3.6GHz  6GB               256GB SSD
## 264           Intel Core i7 6500U 2.5GHz  8GB               256GB SSD
## 265           Intel Core i3 6006U 2.0GHz  4GB               500GB HDD
## 266           Intel Core i7 7500U 2.7GHz 16GB               512GB SSD
## 267           Intel Core i5 6200U 2.3GHz  4GB               256GB SSD
## 268          Intel Core i7 7700HQ 2.8GHz 16GB    256GB SSD +  1TB HDD
## 269           Intel Core i5 7200U 2.5GHz  4GB               500GB HDD
## 270          Intel Core i7 6700HQ 2.6GHz 16GB    256GB SSD +  1TB HDD
## 271           Intel Core i5 7200U 2.5GHz  8GB               256GB SSD
## 272            Intel Core i5 7Y54 1.2GHz  8GB               256GB SSD
## 273 Intel Pentium Quad Core N3710 1.6GHz  4GB               500GB HDD
## 274            AMD A6-Series 9220 2.5GHz  4GB               500GB HDD
## 275           Intel Core i3 6100U 2.3GHz  6GB               128GB SSD
## 276           Intel Core i5 6200U 2.3GHz  8GB               256GB SSD
## 277 Intel Pentium Quad Core N3700 1.6GHz  4GB               500GB HDD
## 278 Intel Celeron Dual Core N3350 1.1GHz  4GB                 1TB HDD
## 279          Intel Core i7 6700HQ 2.6GHz 16GB    128GB SSD +  1TB HDD
## 280             Intel Core i3 6006U 2GHz  4GB               500GB HDD
## 281           Intel Core i7 6500U 2.5GHz  8GB              1TB Hybrid
## 282          Intel Core i7 6700HQ 2.6GHz  8GB    128GB SSD +  1TB HDD
## 283           Intel Core i5 6200U 2.3GHz  4GB               128GB SSD
## 284             Intel Core M 6Y30 0.9GHz  8GB               512GB SSD
## 285           Intel Core i3 7100U 2.4GHz  6GB                 1TB HDD
## 286 Intel Celeron Dual Core N3060 1.6GHz  4GB               500GB HDD
## 287 Intel Celeron Dual Core N3050 1.6GHz  2GB               500GB HDD
## 288          Intel Core i7 6700HQ 2.6GHz  8GB                 1TB HDD
## 289            AMD A9-Series 9410 2.9GHz  6GB              1TB Hybrid
## 290           Intel Core i7 7500U 2.7GHz  8GB                 1TB HDD
## 291 Intel Celeron Dual Core N3060 1.6GHz  2GB      32GB Flash Storage
## 292           Intel Core i7 6500U 2.5GHz  4GB               500GB HDD
## 293           Intel Core i7 6500U 2.5GHz  4GB               128GB SSD
## 294           Intel Core i7 6500U 2.5GHz 16GB               512GB SSD
## 295 Intel Celeron Dual Core N3050 1.6GHz  2GB      64GB Flash Storage
## 296           Intel Core i7 6500U 2.5GHz  6GB                 1TB HDD
## 297 Intel Celeron Dual Core N3050 1.6GHz  4GB               500GB HDD
## 298             Intel Core M 6Y30 0.9GHz  8GB               512GB SSD
## 299           Intel Core i3 7100U 2.4GHz  6GB                 1TB HDD
## 300 Intel Celeron Dual Core N3060 1.6GHz  4GB               500GB HDD
## 301 Intel Celeron Dual Core N3050 1.6GHz  2GB               500GB HDD
## 302          Intel Core i7 6700HQ 2.6GHz  8GB                 1TB HDD
## 303            AMD A9-Series 9410 2.9GHz  6GB              1TB Hybrid
## 304           Intel Core i7 7500U 2.7GHz  8GB                 1TB HDD
## 305 Intel Celeron Dual Core N3060 1.6GHz  2GB      32GB Flash Storage
## 306           Intel Core i7 6500U 2.5GHz  4GB               500GB HDD
## 307           Intel Core i7 6500U 2.5GHz  4GB               128GB SSD
## 308           Intel Core i7 6500U 2.5GHz 16GB               512GB SSD
## 309 Intel Celeron Dual Core N3050 1.6GHz  2GB      64GB Flash Storage
## 310           Intel Core i7 6500U 2.5GHz  6GB                 1TB HDD
## 311 Intel Celeron Dual Core N3050 1.6GHz  4GB               500GB HDD
## 312             Intel Core M 6Y30 0.9GHz  8GB               512GB SSD
## 313           Intel Core i3 7100U 2.4GHz  6GB                 1TB HDD
## 314 Intel Celeron Dual Core N3060 1.6GHz  4GB               500GB HDD
## 315 Intel Celeron Dual Core N3050 1.6GHz  2GB               500GB HDD
## 316          Intel Core i7 6700HQ 2.6GHz  8GB                 1TB HDD
## 317            AMD A9-Series 9410 2.9GHz  6GB              1TB Hybrid
## 318           Intel Core i7 7500U 2.7GHz  8GB                 1TB HDD
## 319 Intel Celeron Dual Core N3060 1.6GHz  2GB      32GB Flash Storage
## 320           Intel Core i7 6500U 2.5GHz  4GB               500GB HDD
## 321           Intel Core i7 6500U 2.5GHz  4GB               128GB SSD
## 322           Intel Core i7 6500U 2.5GHz 16GB               512GB SSD
## 323 Intel Celeron Dual Core N3050 1.6GHz  2GB      64GB Flash Storage
## 324           Intel Core i7 6500U 2.5GHz  6GB                 1TB HDD
## 325 Intel Celeron Dual Core N3050 1.6GHz  4GB               500GB HDD
##                                GPU Operating.System Operating.System.Version
## 1            Intel HD Graphics 620          Windows                       10
## 2       Nvidia GeForce GTX 1050 Ti          Windows                       10
## 3            Intel HD Graphics 620          Windows                       10
## 4            Intel HD Graphics 520          Windows                        7
## 5                   AMD Radeon 530          Windows                       10
## 6            Intel HD Graphics 520          Windows                       10
## 7            Intel HD Graphics 520          Windows                       10
## 8               AMD Radeon R5 M430          Windows                       10
## 9            Intel HD Graphics 620          Windows                       10
## 10         Nvidia GeForce GTX 1060          Windows                       10
## 11              AMD Radeon R7 M445          Windows                       10
## 12          Intel HD Graphics 620           Windows                       10
## 13           Intel HD Graphics 515          Windows                       10
## 14                  AMD Radeon 520          Windows                       10
## 15           Intel HD Graphics 500            No OS                         
## 16           Intel HD Graphics 520          Windows                       10
## 17           Intel HD Graphics 620          Windows                       10
## 18           Intel HD Graphics 620          Windows                       10
## 19           Intel HD Graphics 620          Windows                       10
## 20           Intel HD Graphics 505          Windows                       10
## 21      Nvidia GeForce GTX 1050 Ti          Windows                       10
## 22           Intel HD Graphics 620          Windows                       10
## 23         Nvidia GeForce GTX 1050          Windows                       10
## 24           Intel HD Graphics 620          Windows                       10
## 25           Intel HD Graphics 620          Windows                       10
## 26           Intel HD Graphics 620          Windows                       10
## 27           Intel HD Graphics 520          Windows                       10
## 28           Intel HD Graphics 520          Windows                       10
## 29           Intel HD Graphics 620          Windows                       10
## 30           Intel HD Graphics 520          Windows                        7
## 31            Nvidia GeForce 930MX          Windows                       10
## 32           Intel HD Graphics 620          Windows                       10
## 33         Nvidia GeForce GTX 1050          Windows                       10
## 34           Intel HD Graphics 620          Windows                       10
## 35           Intel HD Graphics 620          Windows                       10
## 36           Intel HD Graphics 520          Windows                       10
## 37           Intel HD Graphics 620          Windows                       10
## 38           Intel HD Graphics 520          Windows                       10
## 39           Intel HD Graphics 620          Windows                       10
## 40             Nvidia Quadro 3000M          Windows                        7
## 41           Intel HD Graphics 520          Windows                       10
## 42           Intel HD Graphics 520          Windows                       10
## 43           Intel HD Graphics 520          Windows                       10
## 44           Intel HD Graphics 520          Windows                       10
## 45           Intel HD Graphics 620          Windows                       10
## 46            Nvidia GeForce 930MX          Windows                       10
## 47           Intel HD Graphics 520          Windows                       10
## 48           Intel HD Graphics 620          Windows                       10
## 49           Intel HD Graphics 620          Windows                       10
## 50           Intel HD Graphics 620          Windows                       10
## 51           Intel HD Graphics 620          Windows                       10
## 52            Nvidia GeForce 930MX          Windows                       10
## 53           Intel HD Graphics 620          Windows                       10
## 54                   AMD Radeon R5          Windows                       10
## 55         Nvidia GeForce GTX 1050          Windows                       10
## 56           Intel HD Graphics 520          Windows                        7
## 57           Intel HD Graphics 520          Windows                       10
## 58           Intel HD Graphics 520          Windows                       10
## 59           Intel HD Graphics 620          Windows                       10
## 60           Intel HD Graphics 520          Windows                       10
## 61           Intel HD Graphics 520          Windows                        7
## 62           Intel HD Graphics 620          Windows                       10
## 63           Intel HD Graphics 520          Windows                       10
## 64           Intel HD Graphics 400          Windows                       10
## 65             Nvidia GeForce 930M          Windows                       10
## 66           Intel HD Graphics 520          Windows                       10
## 67           Intel HD Graphics 520          Windows                       10
## 68           Intel HD Graphics 520          Windows                       10
## 69           Intel HD Graphics 520          Windows                        7
## 70         Nvidia GeForce GTX 980M          Windows                       10
## 71         Nvidia GeForce GTX 980M          Windows                       10
## 72           Intel HD Graphics 400        Chrome OS                         
## 73           Intel HD Graphics 520          Windows                        7
## 74            Nvidia GeForce 940MX          Windows                       10
## 75           Intel HD Graphics 620          Windows                       10
## 76           Intel HD Graphics 620          Windows                       10
## 77           Intel HD Graphics 620          Windows                       10
## 78           Intel HD Graphics 520          Windows                       10
## 79           Intel HD Graphics 620            No OS                         
## 80                   AMD Radeon R5          Windows                       10
## 81           Intel HD Graphics 620          Windows                       10
## 82         Nvidia GeForce GTX 1060          Windows                       10
## 83           Intel HD Graphics 620          Windows                       10
## 84         Nvidia GeForce GTX 965M            No OS                         
## 85               Intel HD Graphics          Windows                       10
## 86              AMD Radeon R7 M445          Windows                       10
## 87         Nvidia GeForce GTX 1060          Windows                       10
## 88           Intel HD Graphics 620          Windows                       10
## 89         Nvidia GeForce GTX 980           Windows                       10
## 90           Intel HD Graphics 520          Windows                       10
## 91         Nvidia GeForce GTX 970M          Windows                       10
## 92           Intel HD Graphics 515           Mac OS                        X
## 93           Intel HD Graphics 520          Windows                       10
## 94           Intel HD Graphics 520          Windows                       10
## 95           Intel HD Graphics 520          Windows                        7
## 96           Intel HD Graphics 620          Windows                       10
## 97           Intel HD Graphics 520          Windows                       10
## 98              AMD Radeon R5 M330          Windows                       10
## 99         Nvidia GeForce GTX 950M          Windows                       10
## 100        Nvidia GeForce GTX 1070          Windows                       10
## 101          Intel HD Graphics 520          Windows                       10
## 102          Intel HD Graphics 520          Windows                        7
## 103          Intel HD Graphics 515          Windows                       10
## 104        Nvidia GeForce GTX 980M          Windows                       10
## 105          Intel HD Graphics 400          Windows                       10
## 106          Intel HD Graphics 620          Windows                       10
## 107          Intel HD Graphics 620          Windows                       10
## 108          Intel HD Graphics 520          Windows                        7
## 109             AMD FirePro W4190M          Windows                        7
## 110          Intel HD Graphics 520          Windows                        7
## 111          Intel HD Graphics 515        Chrome OS                         
## 112                  AMD Radeon R5          Windows                       10
## 113              Intel HD Graphics            Linux                         
## 114          Intel HD Graphics 520            No OS                         
## 115        Nvidia GeForce GTX 1060          Windows                       10
## 116                 AMD Radeon 530          Windows                       10
## 117          Intel HD Graphics 520          Windows                        7
## 118        Nvidia GeForce GTX 950M          Windows                       10
## 119             AMD Radeon R7 M445          Windows                       10
## 120        Nvidia GeForce GTX 965M          Windows                       10
## 121          Intel HD Graphics 405          Windows                       10
## 122        Nvidia GeForce GTX 980M          Windows                       10
## 123          Intel HD Graphics 520          Windows                        7
## 124          Intel HD Graphics 520          Windows                        7
## 125              Intel HD Graphics        Chrome OS                         
## 126             AMD FirePro W6150M          Windows                        7
## 127     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 128          Intel HD Graphics 520          Windows                        7
## 129        Nvidia GeForce GTX 960M          Windows                       10
## 130          Intel HD Graphics 520          Windows                       10
## 131                  AMD Radeon R4          Windows                       10
## 132        Nvidia GeForce GTX 960M          Windows                       10
## 133          Intel HD Graphics 515          Windows                       10
## 134             AMD Radeon R5 M315          Windows                        7
## 135          Intel HD Graphics 520          Windows                       10
## 136          Intel HD Graphics 520          Windows                       10
## 137          Intel HD Graphics 400          Android                         
## 138   Intel Iris Plus Graphics 640          Windows                       10
## 139        Nvidia GeForce GTX 980M          Windows                       10
## 140          Intel HD Graphics 520          Windows                       10
## 141          Intel HD Graphics 620          Windows                       10
## 142        Nvidia GeForce GTX 960M          Windows                       10
## 143          Intel HD Graphics 400          Windows                       10
## 144          Intel HD Graphics 520          Windows                       10
## 145          Intel HD Graphics 520          Windows                        7
## 146          Intel HD Graphics 520            Linux                         
## 147          Intel HD Graphics 620          Windows                       10
## 148          Intel HD Graphics 520          Windows                       10
## 149          Intel HD Graphics 400          Windows                       10
## 150          Intel HD Graphics 520          Windows                        7
## 151        Nvidia GeForce GTX 1060            No OS                         
## 152        Nvidia GeForce GTX 1060          Windows                       10
## 153          Intel HD Graphics 620          Windows                       10
## 154            Nvidia Quadro M500M          Windows                        7
## 155          Intel HD Graphics 500          Windows                       10
## 156          Intel HD Graphics 620          Windows                       10
## 157           Nvidia GeForce 940MX          Windows                       10
## 158             AMD Radeon R7 M360          Windows                       10
## 159           Nvidia Quadro M3000M          Windows                        7
## 160             AMD Radeon R7 M445          Windows                       10
## 161        Nvidia GeForce GTX 980M          Windows                       10
## 162          Intel HD Graphics 520          Windows                        7
## 163          Intel HD Graphics 520          Windows                       10
## 164        Nvidia GeForce GTX 1050          Windows                       10
## 165          Intel HD Graphics 520          Windows                       10
## 166           Nvidia Quadro M1000M          Windows                        7
## 167          Intel HD Graphics 520          Windows                       10
## 168           Nvidia Quadro M1000M          Windows                        7
## 169          Intel HD Graphics 520          Windows                        7
## 170           Nvidia GeForce 940MX          Windows                       10
## 171          Intel HD Graphics 520          Windows                        7
## 172          Intel HD Graphics 520          Windows                       10
## 173          Intel HD Graphics 520            No OS                         
## 174         AMD Radeon R2 Graphics          Windows                       10
## 175             AMD Radeon R5 M330            No OS                         
## 176      Nvidia GeForce GTX 1050Ti          Windows                       10
## 177            Nvidia GeForce 960M          Windows                       10
## 178                 AMD Radeon 520          Windows                       10
## 179     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 180          Intel HD Graphics 520          Windows                        7
## 181             AMD Radeon R5 M330          Windows                       10
## 182          Intel HD Graphics 520          Windows                       10
## 183          Intel HD Graphics 520          Windows                        7
## 184        Nvidia GeForce GTX 970M          Windows                       10
## 185        Nvidia GeForce GTX 1050          Windows                       10
## 186          Intel HD Graphics 520          Windows                       10
## 187          Intel HD Graphics 520            No OS                         
## 188     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 189          Intel HD Graphics 620          Windows                       10
## 190          Nvidia GeForce 920MX           Windows                       10
## 191          Intel HD Graphics 400          Windows                       10
## 192        Nvidia GeForce GTX 1050          Windows                       10
## 193          Intel HD Graphics 520          Windows                       10
## 194         Intel UHD Graphics 620          Windows                       10
## 195              Intel HD Graphics          Windows                       10
## 196          Intel HD Graphics 520            No OS                         
## 197           Nvidia GeForce 940MX            No OS                         
## 198          Intel HD Graphics 620          Windows                       10
## 199          Intel HD Graphics 520          Windows                        7
## 200         Nvidia GeForce GTX 960          Windows                       10
## 201        Nvidia GeForce GTX 970M          Windows                       10
## 202          Intel HD Graphics 520          Windows                       10
## 203          Intel HD Graphics 520          Windows                       10
## 204            Nvidia GeForce 920M          Windows                       10
## 205        Nvidia GeForce GT 940MX            Linux                         
## 206          Intel HD Graphics 500          Windows                       10
## 207        Nvidia GeForce GTX 960M          Windows                       10
## 208        Nvidia GeForce GTX 960M          Windows                       10
## 209          Intel HD Graphics 620          Windows                       10
## 210           Nvidia GeForce 940MX          Windows                       10
## 211          Intel HD Graphics 520            Linux                         
## 212        Nvidia GeForce GTX 1070          Windows                       10
## 213        Nvidia GeForce GTX 1050          Windows                       10
## 214              ARM Mali T860 MP4        Chrome OS                         
## 215          Intel HD Graphics 620          Windows                       10
## 216         Intel HD Graphics 5300           Mac OS                        X
## 217          Intel HD Graphics 620          Windows                       10
## 218        Nvidia GeForce GTX 1050          Windows                       10
## 219             AMD Radeon R5 M430            No OS                         
## 220        Nvidia GeForce GTX 980M          Windows                       10
## 221          Intel HD Graphics 500            Linux                         
## 222        Nvidia GeForce GTX 1060          Windows                       10
## 223             AMD Radeon R7 M440          Windows                       10
## 224           Nvidia GeForce 920MX            No OS                         
## 225         Intel UHD Graphics 620          Windows                       10
## 226          Intel HD Graphics 620          Windows                       10
## 227        Nvidia GeForce GTX 1060          Windows                       10
## 228             AMD Radeon R7 M445          Windows                       10
## 229          Intel HD Graphics 620          Windows                       10
## 230         AMD Radeon R2 Graphics          Windows                       10
## 231           Nvidia GeForce 940MX          Windows                       10
## 232        Nvidia GeForce GTX 1070          Windows                       10
## 233          Intel HD Graphics 515           Mac OS                        X
## 234        Nvidia GeForce GTX 1060          Windows                       10
## 235        Nvidia GeForce GTX 1060          Windows                       10
## 236          Intel HD Graphics 620          Windows                       10
## 237        Nvidia GeForce GTX 1060          Windows                       10
## 238              Intel HD Graphics        Chrome OS                         
## 239           Nvidia GeForce 940MX          Windows                       10
## 240          Intel HD Graphics 620            No OS                         
## 241 Nvidia GeForce GTX 960<U+039C>          Windows                       10
## 242          Intel HD Graphics 615          Windows                       10
## 243          Intel HD Graphics 520          Windows                       10
## 244        Nvidia GeForce GTX 1060          Windows                       10
## 245                 AMD Radeon 530          Windows                       10
## 246          Intel HD Graphics 520          Windows                        7
## 247          Intel HD Graphics 620          Windows                       10
## 248          Intel HD Graphics 405          Windows                       10
## 249          Intel HD Graphics 620          Windows                       10
## 250          Intel HD Graphics 520            Linux                         
## 251        Nvidia GeForce GTX 960M          Windows                       10
## 252        Nvidia GeForce GTX 1050          Windows                       10
## 253          Intel HD Graphics 520          Windows                       10
## 254        Nvidia GeForce GTX 1060          Windows                       10
## 255          Intel HD Graphics 620          Windows                       10
## 256        Nvidia GeForce GTX 1060          Windows                       10
## 257         Intel HD Graphics 6000           Mac OS                        X
## 258          Intel HD Graphics 520          Windows                       10
## 259          Intel HD Graphics 520          Windows                        7
## 260          Intel HD Graphics 520          Windows                        7
## 261        Nvidia GeForce GTX 960M          Windows                       10
## 262          Intel HD Graphics 620          Windows                       10
## 263                 AMD Radeon 530          Windows                       10
## 264          Intel HD Graphics 520          Windows                       10
## 265          Intel HD Graphics 520            Linux                         
## 266           Nvidia GeForce 940MX          Windows                       10
## 267          Intel HD Graphics 520          Windows                        7
## 268     Nvidia GeForce GTX 1050 Ti          Windows                       10
## 269          Intel HD Graphics 620          Windows                       10
## 270        Nvidia GeForce GTX 1070          Windows                       10
## 271          Intel HD Graphics 620            No OS                         
## 272          Intel HD Graphics 615          Windows                       10
## 273              Intel HD Graphics            Linux                         
## 274         AMD Radeon R4 Graphics          Windows                       10
## 275           Nvidia GeForce 920MX          Windows                       10
## 276          Intel HD Graphics 520          Windows                       10
## 277              Intel HD Graphics          Windows                       10
## 278          Intel HD Graphics 500          Windows                       10
## 279        Nvidia GeForce GTX 970M          Windows                       10
## 280          Intel HD Graphics 520          Windows                       10
## 281             AMD Radeon R5 M330          Windows                        7
## 282        Nvidia GeForce GTX 960M          Windows                       10
## 283          Intel HD Graphics 520          Windows                       10
## 284          Intel HD Graphics 515          Windows                       10
## 285          Intel HD Graphics 620          Windows                       10
## 286          Intel HD Graphics 400            Linux                         
## 287              Intel HD Graphics          Windows                       10
## 288        Nvidia GeForce GTX 960M          Windows                       10
## 289             AMD Radeon R7 M440          Windows                       10
## 290             AMD Radeon R5 M430            Linux                         
## 291          Intel HD Graphics 400          Windows                       10
## 292            Nvidia GeForce 920M          Windows                       10
## 293          Intel HD Graphics 520          Windows                       10
## 294          Intel HD Graphics 520          Windows                       10
## 295              Intel HD Graphics          Windows                       10
## 296             AMD Radeon R5 M330          Windows                       10
## 297              Intel HD Graphics          Windows                       10
## 298          Intel HD Graphics 515          Windows                       10
## 299          Intel HD Graphics 620          Windows                       10
## 300          Intel HD Graphics 400            Linux                         
## 301              Intel HD Graphics          Windows                       10
## 302        Nvidia GeForce GTX 960M          Windows                       10
## 303             AMD Radeon R7 M440          Windows                       10
## 304             AMD Radeon R5 M430            Linux                         
## 305          Intel HD Graphics 400          Windows                       10
## 306            Nvidia GeForce 920M          Windows                       10
## 307          Intel HD Graphics 520          Windows                       10
## 308          Intel HD Graphics 520          Windows                       10
## 309              Intel HD Graphics          Windows                       10
## 310             AMD Radeon R5 M330          Windows                       10
## 311              Intel HD Graphics          Windows                       10
## 312          Intel HD Graphics 515          Windows                       10
## 313          Intel HD Graphics 620          Windows                       10
## 314          Intel HD Graphics 400            Linux                         
## 315              Intel HD Graphics          Windows                       10
## 316        Nvidia GeForce GTX 960M          Windows                       10
## 317             AMD Radeon R7 M440          Windows                       10
## 318             AMD Radeon R5 M430            Linux                         
## 319          Intel HD Graphics 400          Windows                       10
## 320            Nvidia GeForce 920M          Windows                       10
## 321          Intel HD Graphics 520          Windows                       10
## 322          Intel HD Graphics 520          Windows                       10
## 323              Intel HD Graphics          Windows                       10
## 324             AMD Radeon R5 M330          Windows                       10
## 325              Intel HD Graphics          Windows                       10
##      Weight    Price
## 1    2.04kg  5148468
## 2    2.99kg 15552108
## 3    2.19kg 11550708
## 4     1.2kg 10625940
## 5     2.2kg  4881708
## 6     2.3kg  5770908
## 7    1.75kg  8136180
## 8    2.25kg  5326308
## 9    2.04kg  7166952
## 10    2.5kg 10572588
## 11   2.36kg  6660108
## 12    1.6kg  9950148
## 13   0.97kg 16965936
## 14    2.1kg  4437108
## 15    1.9kg  2406353
## 16    2.3kg 11995308
## 17   1.68kg  7904988
## 18    1.4kg 10225800
## 19   1.11kg 11995308
## 20    2.4kg  3378960
## 21    2.5kg 15996708
## 22   1.48kg 18575388
## 23    2.7kg 11203920
## 24   1.34kg 10572588
## 25   2.18kg  4863924
## 26   1.64kg  6926868
## 27    1.2kg 10625940
## 28   1.48kg  9781111
## 29   1.95kg 10714860
## 30   1.43kg 12884508
## 31   1.64kg  9330020
## 32   1.64kg  6082128
## 33   2.65kg  8438508
## 34   1.26kg 13684788
## 35   1.48kg 14138280
## 36   1.54kg 16781071
## 37   1.49kg  7113600
## 38    1.5kg 10759320
## 39   2.04kg  6846751
## 40    2.4kg 26391456
## 41   1.47kg 13249080
## 42   1.43kg 19820268
## 43   2.08kg  7077943
## 44    1.2kg 14138280
## 45   1.11kg 10216908
## 46   1.64kg 10540844
## 47   2.09kg  9304944
## 48   1.26kg 13862628
## 49   2.31kg 10572588
## 50   1.95kg  9425520
## 51   1.29kg 14440608
## 52   2.63kg  9603360
## 53   1.64kg  8651916
## 54    2.1kg  3636828
## 55    2.7kg 10597486
## 56   1.95kg 10625940
## 57   1.84kg 10928179
## 58   1.26kg 11995308
## 59   2.04kg  6597864
## 60   1.47kg 15338700
## 61   2.09kg  9451751
## 62   1.64kg  8985455
## 63    1.8kg  7531524
## 64   1.45kg  1874434
## 65    2.4kg 12671100
## 66    2.3kg  9333043
## 67   1.54kg  8892000
## 68   1.84kg 18702899
## 69   1.43kg 13062348
## 70   3.78kg 13743831
## 71    4.6kg 20362591
## 72    1.2kg  2560007
## 73    1.1kg 23297040
## 74   1.91kg  8705268
## 75    2.3kg  9727848
## 76   2.04kg  8705268
## 77    1.2kg 20042568
## 78   2.31kg  6270194
## 79   1.96kg  4437108
## 80    2.4kg  3992508
## 81    1.6kg 11550708
## 82   2.94kg 16174548
## 83   2.04kg  9514440
## 84     4kgs  8874216
## 85   2.25kg  4970628
## 86   2.32kg  8802991
## 87    1.8kg 17152668
## 88   1.29kg 12964536
## 89   3.58kg 35345700
## 90   1.62kg  7095905
## 91   3.21kg 11817468
## 92  0.920kg 11559600
## 93   2.06kg  4285766
## 94   2.31kg 10661508
## 95   1.26kg 10661508
## 96   1.49kg  9692280
## 97    1.3kg 15236353
## 98    3.0kg  5859828
## 99    2.3kg  8687484
## 100  3.78kg 22221108
## 101   2.1kg  4801680
## 102  2.31kg  8358480
## 103  0.99kg 12439908
## 104   4.6kg 28810080
## 105  0.69kg  5746633
## 106   1.3kg 18219708
## 107  2.18kg  6669000
## 108  1.54kg  9167563
## 109   1.9kg 13293540
## 110   1.7kg 10661508
## 111  1.29kg  5468580
## 112   2.4kg  3441204
## 113   2.2kg  3498913
## 114  1.86kg  3076543
## 115   2.7kg 14218308
## 116   1.4kg  7276768
## 117   2.4kg 14218308
## 118   2.4kg  7104708
## 119  2.36kg  5680210
## 120   2.6kg 14218308
## 121  1.96kg  4446000
## 122   4.3kg 20442708
## 123   1.5kg 10093754
## 124   1.5kg 10376697
## 125  2.20kg  1858428
## 126   3.0kg 25777908
## 127   2.4kg 10661508
## 128   1.5kg 12565285
## 129   2.9kg 13437501
## 130   2.1kg  7709364
## 131   2.1kg  3539016
## 132  2.59kg 11906388
## 133  1.16kg 15107508
## 134  2.24kg  6839282
## 135   2.1kg  3814668
## 136  1.16kg 17508348
## 137  0.69kg  4881708
## 138  1.23kg 12262068
## 139   4.6kg 24452911
## 140  1.25kg  9149868
## 141  1.05kg 19793592
## 142  3.52kg 11670661
## 143  1.35kg  1742832
## 144  1.16kg 15027480
## 145  1.43kg 13453596
## 146  2.09kg  4656118
## 147     2kg  3868020
## 148   1.8kg 14840748
## 149  0.69kg  4259268
## 150  1.26kg 16850340
## 151   2.4kg  8794188
## 152  3.35kg 10039068
## 153  2.04kg  5593068
## 154   1.8kg 18231979
## 155   1.5kg  2471976
## 156  1.84kg  6686784
## 157  2.23kg  5477472
## 158   2.5kg  9772308
## 159     3kg 35118065
## 160   2.5kg  6971328
## 161  3.78kg 21331908
## 162  1.88kg 19310934
## 163   2.8kg 21696480
## 164   2.4kg 10161778
## 165  1.48kg 14485068
## 166  2.59kg 19820268
## 167  1.48kg 15996708
## 168   2.0kg 16885908
## 169  1.26kg 20424479
## 170  2.18kg  8980031
## 171  1.88kg 14040468
## 172  1.27kg 20798388
## 173   1.9kg  3014388
## 174  1.86kg  2640924
## 175  2.32kg  5326308
## 176  2.62kg 10661508
## 177  2.04kg 20013047
## 178  1.91kg  4258290
## 179   2.7kg 13273978
## 180   1.4kg 20442708
## 181   2.5kg  7011253
## 182  1.48kg 18148572
## 183   1.7kg 13329108
## 184   1.7kg 15729948
## 185  2.62kg  7993908
## 186   2.2kg  4081428
## 187   2.1kg  4241395
## 188  2.62kg 13320216
## 189  1.95kg 12359880
## 190   2.2kg  4161456
## 191  1.44kg  2214108
## 192   2.2kg  7460388
## 193  1.96kg  6037668
## 194   2.1kg 10305828
## 195   2.2kg  3281148
## 196   2.1kg  3539016
## 197   2.2kg  6304428
## 198     2kg  6837948
## 199  2.32kg  7335900
## 200  3.31kg 11604060
## 201  1.91kg 19147766
## 202  2.07kg  5779800
## 203  1.36kg 14556204
## 204  1.54kg  7389252
## 205  1.98kg  7958429
## 206   2.1kg  2961036
## 207  2.18kg  7104708
## 208 2.591kg  8082828
## 209  2.09kg 10483668
## 210  2.23kg  6144372
## 211  1.23kg  9772308
## 212   4.2kg 23110308
## 213   2.4kg  7282548
## 214  1.15kg  5859828
## 215  1.86kg  4312620
## 216 0.920kg 10341396
## 217   1.6kg 10661508
## 218  2.21kg 11799684
## 219   1.9kg  3272256
## 220   4.3kg 19117800
## 221   2.1kg  2418624
## 222  2.43kg 18218819
## 223   2.3kg  4437108
## 224   2.2kg  5593068
## 225     2kg 11426220
## 226   1.2kg 23830560
## 227   2.2kg 10394748
## 228  2.36kg  7904988
## 229  1.91kg  5148468
## 230   2.2kg  2658708
## 231   3.3kg  5593068
## 232   2.2kg 21776508
## 233 0.920kg 11372868
## 234   2.2kg 15552108
## 235  2.43kg 17330419
## 236 2.191kg  8883108
## 237   2.9kg 17330508
## 238   1.3kg  1547208
## 239   3.3kg  5317416
## 240   2.8kg  4792788
## 241   2.6kg 11310624
## 242   1.2kg 10216908
## 243   2.3kg 13595868
## 244   2.2kg 13125570
## 245   2.1kg  4703868
## 246  1.26kg 15235286
## 247  2.08kg  4526028
## 248  2.65kg  2747628
## 249  1.29kg 13133484
## 250  2.18kg  4640379
## 251   2.6kg  9149868
## 252   2.2kg 10216908
## 253   1.3kg 14671800
## 254  1.95kg 31113108
## 255   2.3kg  4170437
## 256   2.7kg 14209416
## 257  1.08kg  8527428
## 258   2.1kg  4250376
## 259  1.54kg 19546305
## 260  2.24kg  6553404
## 261   2.3kg 10394748
## 262   1.4kg 13329108
## 263   2.2kg  5313592
## 264  1.45kg 11381760
## 265   2.4kg  3217126
## 266  2.77kg 15996708
## 267  1.54kg  9781111
## 268   2.5kg 14227200
## 269   1.6kg  7780500
## 270  2.34kg 20673900
## 271   2.3kg  5095116
## 272  1.24kg 16121196
## 273   2.2kg  2881008
## 274  1.86kg  3547908
## 275   2.4kg  5059548
## 276   1.9kg  9532224
## 277   2.2kg  3947959
## 278     2kg  3014388
## 279   4.0kg 16894800
## 280  2.29kg  4357080
## 281  2.32kg  7958340
## 282   2.4kg 10928268
## 283   1.8kg  7407125
## 284   1.2kg  6482268
## 285   2.3kg  4081428
## 286   2.4kg  2569788
## 287  2.20kg  3370068
## 288   2.6kg  7993908
## 289  2.04kg  4890511
## 290   2.3kg  7166863
## 291  1.17kg  1858428
## 292   2.2kg  6405085
## 293   1.8kg  5673096
## 294   1.3kg 13329108
## 295   1.5kg  2036268
## 296  2.19kg  6793488
## 297   2.2kg  3281148
## 298   1.2kg  6482268
## 299   2.3kg  4081428
## 300   2.4kg  2569788
## 301  2.20kg  3370068
## 302   2.6kg  7993908
## 303  2.04kg  4890511
## 304   2.3kg  7166863
## 305  1.17kg  1858428
## 306   2.2kg  6405085
## 307   1.8kg  5673096
## 308   1.3kg 13329108
## 309   1.5kg  2036268
## 310  2.19kg  6793488
## 311   2.2kg  3281148
## 312   1.2kg  6482268
## 313   2.3kg  4081428
## 314   2.4kg  2569788
## 315  2.20kg  3370068
## 316   2.6kg  7993908
## 317  2.04kg  4890511
## 318   2.3kg  7166863
## 319  1.17kg  1858428
## 320   2.2kg  6405085
## 321   1.8kg  5673096
## 322   1.3kg 13329108
## 323   1.5kg  2036268
## 324  2.19kg  6793488
## 325   2.2kg  3281148
#filtros 
laptops_prueba = c("Notebook","Ultrabook","Gaming")
laptops_transporte = c("Apple","HP")

  laptop_com <- laptops_test %>% filter(Category %in% laptops_prueba) %>% select(Category,Manufacturer, Price)
laptop_com
##      Category Manufacturer    Price
## 1   Ultrabook        Apple 11912523
## 2   Ultrabook        Apple  7993374
## 3    Notebook           HP  5112900
## 4   Ultrabook        Apple 22563005
## 5   Ultrabook        Apple 16037611
## 6    Notebook         Acer  3556800
## 7   Ultrabook        Apple 19028613
## 8   Ultrabook        Apple 10303160
## 9   Ultrabook         Asus 13293540
## 10  Ultrabook         Acer  6846840
## 11   Notebook           HP  3502559
## 12   Notebook           HP  3067651
## 13  Ultrabook        Apple 21696213
## 14   Notebook         Dell  4436219
## 15  Ultrabook        Apple 11225261
## 16  Ultrabook        Apple 13502947
## 17   Notebook         Dell  6624540
## 18  Ultrabook        Apple 25413336
## 19   Notebook       Lenovo  4437108
## 20  Ultrabook         Dell  8705268
## 21     Gaming       Lenovo  8883108
## 22   Notebook           HP  2294136
## 23  Ultrabook           HP  5859828
## 24   Notebook         Dell  3722547
## 25  Ultrabook        Apple  9772308
## 26   Notebook         Dell  7113600
## 27  Ultrabook         Dell 11541816
## 28   Notebook           HP  7967232
## 29   Notebook        Chuwi  2178451
## 30   Notebook         Asus  1769508
## 31   Notebook           HP  3903588
## 32  Ultrabook         Dell 16619148
## 33  Ultrabook        Apple  8874216
## 34   Notebook       Lenovo  2214108
## 35   Notebook         Acer  3263364
## 36   Notebook         Dell  8705268
## 37   Notebook           HP  4345431
## 38   Notebook           HP  7816068
## 39   Notebook         Asus  3458988
## 40     Gaming         Dell 13329108
## 41   Notebook         Asus  4650427
## 42   Notebook         Acer  6064344
## 43  Ultrabook        Apple 12617748
## 44   Notebook       Lenovo  3281148
## 45     Gaming         Asus 11550708
## 46   Notebook         Dell  5681988
## 47   Notebook         Asus  4143672
## 48   Notebook         Acer  7478172
## 49   Notebook           HP  3543373
## 50   Notebook           HP  9807876
## 51   Notebook         Acer  3414528
## 52   Notebook         Dell  6827278
## 53   Notebook           HP  3903588
## 54   Notebook         Asus  5212401
## 55     Gaming          MSI 21776508
## 56   Notebook         Asus  3690180
## 57   Notebook         Dell 11550708
## 58  Ultrabook         Dell  7816068
## 59   Notebook       Lenovo  5326308
## 60   Notebook         Asus  8367372
## 61   Notebook           HP  6135480
## 62  Ultrabook         Asus 17632836
## 63   Notebook           HP  3900831
## 64   Notebook           HP  2036268
## 65   Notebook       Lenovo  4881708
## 66     Gaming         Asus  8438508
## 67  Ultrabook    Microsoft  9683388
## 68  Ultrabook         Dell  8491860
## 69   Notebook         Dell  7736040
## 70     Gaming          MSI  9736740
## 71   Notebook         Acer  3458988
## 72     Gaming         Asus  8438508
## 73   Notebook       Lenovo  4614948
## 74   Notebook         Dell  7602660
## 75   Notebook         Acer  4712760
## 76   Notebook           HP  8687484
## 77  Ultrabook         Dell  9747055
## 78  Ultrabook        Apple 13426920
## 79   Notebook           HP  7647120
## 80   Notebook       Lenovo  3547908
## 81   Notebook         Acer  3512340
## 82     Gaming         Dell 11995308
## 83  Ultrabook           HP  6215508
## 84   Notebook           HP  5326219
## 85     Gaming         Asus 12884508
## 86  Ultrabook         Dell 14662908
## 87     Gaming         Asus  6215508
## 88   Notebook         Acer  6126588
## 89   Notebook           HP 10643724
## 90     Gaming         Dell 10625940
## 91  Ultrabook         Asus  9327708
## 92   Notebook         Dell  5334311
## 93   Notebook         Dell  4312620
## 94   Notebook         Asus  5130684
## 95     Gaming           HP 11106108
## 96   Notebook           HP  6393348
## 97   Notebook           HP  3103308
## 98   Notebook         Dell  5753124
## 99  Ultrabook           HP  9950148
## 100 Ultrabook    Microsoft 11915280
## 101  Notebook           HP  5859828
## 102  Notebook       Lenovo  3689291
## 103 Ultrabook         Asus 10608156
## 104    Gaming          MSI 11550708
## 105  Notebook       Lenovo 13160160
## 106 Ultrabook         Asus 11221704
## 107 Ultrabook         Dell 12262068
## 108  Notebook           HP  6420024
## 109 Ultrabook         Dell 14485068
## 110  Notebook           HP  9638928
## 111  Notebook         Dell 10050894
## 112  Notebook         Asus  5015088
## 113  Notebook         Asus  9941256
## 114  Notebook         Acer  4259268
## 115    Gaming          MSI 19931418
## 116  Notebook       Lenovo  5593068
## 117  Notebook           HP 11301732
## 118  Notebook         Acer  4010292
## 119  Notebook           HP  2303028
## 120  Notebook           HP  7220304
## 121  Notebook         Asus  2471887
## 122  Notebook         Dell 12413232
## 123  Notebook           HP  8251776
## 124  Notebook         Dell  5681899
## 125  Notebook         Dell  3992508
## 126 Ultrabook         Acer  7860528
## 127  Notebook         Acer  5086224
## 128  Notebook           HP  5317416
## 129  Notebook           HP  8785296
## 130  Notebook       Lenovo  2243985
## 131    Gaming         Asus  8340696
## 132  Notebook       Lenovo  4437108
## 133  Notebook           HP  6215508
## 134  Notebook         Acer  5824260
## 135  Notebook       Lenovo  9923650
## 136    Gaming       Lenovo  7727148
## 137  Notebook      Toshiba  5352984
## 138  Notebook           HP  3281148
## 139 Ultrabook         Asus  9772308
## 140 Ultrabook           HP 17908488
## 141  Notebook         Asus  3058848
## 142    Gaming          MSI 18041868
## 143  Notebook         Acer  3974724
## 144    Gaming         Dell 11108420
## 145    Gaming         Dell  7993908
## 146  Notebook       Lenovo  4428216
## 147    Gaming          MSI 16805880
## 148 Ultrabook           HP  9621144
## 149  Notebook           HP  5504148
## 150  Notebook      Toshiba  3974724
## 151  Notebook         Asus  3583476
## 152  Notebook         Acer  7158060
## 153  Notebook         Dell  6473376
## 154    Gaming       Lenovo  9594468
## 155  Notebook         Acer  3094416
## 156    Gaming          MSI 15996708
## 157  Notebook         Acer  3232331
## 158    Gaming         Dell  9429877
## 159  Notebook         Acer  7593768
## 160  Notebook           HP  6704568
## 161 Ultrabook       Huawei 11995308
## 162  Notebook           HP  6215508
## 163  Notebook       Lenovo  2747628
## 164  Notebook      Toshiba  4348188
## 165  Notebook           HP  8207316
## 166  Notebook         Dell  4081428
## 167  Notebook         Acer  3992508
## 168    Gaming          MSI 24888708
## 169  Notebook       Lenovo  7229196
## 170  Notebook         Dell  9327708
## 171 Ultrabook         Dell 12439908
## 172  Notebook      Toshiba  7051356
## 173  Notebook       Xiaomi 10661508
## 174  Notebook         Dell 13773708
## 175  Notebook         Dell 21314124
## 176    Gaming       Lenovo  6926868
## 177 Ultrabook         Acer  8794188
## 178  Notebook         Dell  9647820
## 179  Notebook         Vero  2311920
## 180 Ultrabook       Xiaomi  8891111
## 181  Notebook       Lenovo  6206616
## 182  Notebook           HP  8127288
## 183    Gaming        Razer 54232308
## 184  Notebook           HP  8527428
## 185    Gaming           HP 12262068
## 186  Notebook           HP  9292140
## 187    Gaming         Dell 16405740
## 188  Notebook       Lenovo  4383756
## 189  Notebook         Acer  6597864
## 190    Gaming       Lenovo 15552108
## 191    Gaming       Lenovo 12431016
## 192  Notebook         Dell  3903588
## 193 Ultrabook         Dell 17330508
## 194 Ultrabook         Dell 12884508
## 195  Notebook       Lenovo  5308524
## 196  Notebook         Acer  6926868
## 197    Gaming         Asus 12511044
## 198  Notebook           HP  3103308
## 199  Notebook       Lenovo  4881708
## 200 Ultrabook       Huawei 13329108
## 201 Ultrabook         Dell  8286277
## 202  Notebook       Lenovo  5237388
## 203  Notebook           HP  9167652
## 204 Ultrabook         Dell 10216908
## 205  Notebook         Dell  6022996
## 206 Ultrabook      Toshiba 12119796
## 207  Notebook           HP  7060248
## 208    Gaming         Dell 21841775
## 209  Notebook         Acer  7398144
## 210  Notebook         Dell  7638317
## 211  Notebook         Asus  6837948
## 212  Notebook         Asus  7922772
## 213  Notebook           HP 11283948
## 214  Notebook         Asus  3547819
## 215  Notebook           HP  2934360
## 216    Gaming       Lenovo 13329108
## 217  Notebook         Dell  7638228
## 218  Notebook         Dell  7993908
## 219  Notebook         Acer  3467880
## 220  Notebook         Asus  5112900
## 221    Gaming         Asus 34589880
## 222    Gaming         Acer  7522632
## 223  Notebook       Lenovo  5237388
## 224  Notebook         Asus 10181340
## 225  Notebook         Asus  7904988
## 226    Gaming         Dell  7816068
## 227  Notebook         Dell  8758620
## 228  Notebook           HP  4970628
## 229    Gaming         Asus 26667108
## 230  Notebook           HP  6002100
## 231 Ultrabook        Apple 18139680
## 232    Gaming         Asus 15996708
## 233  Notebook         Asus  4170348
## 234  Notebook         Acer  6242184
## 235 Ultrabook         Dell  8438508
## 236  Notebook           HP  3964943
## 237  Notebook           HP  9416628
## 238    Gaming          MSI 22221108
## 239  Notebook         Dell 10154664
## 240  Notebook       Lenovo  3948048
## 241  Notebook           HP  6420024
## 242  Notebook         Dell  5842044
## 243  Notebook         Dell  5023980
## 244  Notebook       Lenovo  4152564
## 245  Notebook           HP  9052056
## 246  Notebook       Lenovo  7824960
## 247 Ultrabook        Apple 17418539
## 248    Gaming         Asus 13773708
## 249  Notebook         Dell  6536242
## 250  Notebook      Toshiba  7220304
## 251  Notebook         Dell  6340618
## 252  Notebook         Dell  9772308
## 253  Notebook         Acer  6624540
## 254  Notebook       Lenovo  4348188
## 255  Notebook       Lenovo  7549308
## 256  Notebook       Lenovo  7638228
## 257  Notebook         Dell  3805776
## 258    Gaming       Lenovo  7371468
## 259  Notebook       Lenovo  5148468
## 260  Notebook         Acer  8456292
## 261  Notebook         Acer  5859828
## 262  Notebook       Lenovo  9754524
## 263 Ultrabook         Asus  8687484
## 264    Gaming       Lenovo 10483668
## 265  Notebook       Lenovo  5859917
## 266  Notebook         Acer  1769508
## 267    Gaming         Asus 10554804
## 268  Notebook           HP  4348188
## 269  Notebook         Dell 16263468
## 270  Notebook       Lenovo  6571188
## 271    Gaming       Lenovo 11550708
## 272  Notebook         Acer  8705268
## 273  Notebook       Lenovo  4437108
## 274 Ultrabook         Asus 13053456
## 275  Notebook         Asus  4526028
## 276    Gaming         Asus 18868824
## 277  Notebook       Lenovo  5770908
## 278  Notebook       Lenovo  4881708
## 279    Gaming         Asus 11248380
## 280  Notebook       Lenovo  3201031
## 281  Notebook      Toshiba  9274356
## 282  Notebook       Lenovo  7282548
## 283  Notebook           HP  4170348
## 284  Notebook       Lenovo  8883108
## 285 Ultrabook         Dell 22221108
## 286    Gaming          MSI 18664308
## 287  Notebook         Acer  4170348
## 288  Notebook         Dell  7504848
## 289  Notebook       Lenovo  4089431
## 290  Notebook           HP  8714160
## 291  Notebook         Acer  4312620
## 292  Notebook           HP 11488464
## 293  Notebook       Lenovo  5237388
## 294  Notebook         Asus  9727848
## 295  Notebook           HP  8020584
## 296  Notebook         Acer  5859828
## 297  Notebook       Lenovo  2596464
## 298  Notebook         Acer  4881708
## 299 Ultrabook         Asus  9335711
## 300 Ultrabook           HP 11870820
## 301  Notebook         Dell 23465988
## 302    Gaming          MSI 10661508
## 303  Notebook      Toshiba  8385156
## 304  Notebook         Asus 11861928
## 305  Notebook       Lenovo  3992508
## 306    Gaming         Asus  8883108
## 307  Notebook           HP 11275056
## 308 Ultrabook         Dell  9327708
## 309  Notebook           HP 10172448
## 310  Notebook         Asus  2445211
## 311  Notebook         Dell 10161333
## 312  Notebook         Dell  2444411
## 313  Notebook       Lenovo  7993908
## 314  Notebook           HP  6366672
## 315 Ultrabook         Dell 14040468
## 316    Gaming       Lenovo 10039068
## 317  Notebook           HP  2480868
## 318 Ultrabook         Dell 14297980
## 319 Ultrabook         Dell  5895396
## 320  Notebook         Dell 18027819
## 321  Notebook           HP 11595168
## 322    Gaming          MSI 12528828
## 323  Notebook      Toshiba 12475476
## 324  Notebook         Dell  8633243
## 325  Notebook       Lenovo  2863135
## 326    Gaming         Dell  8883108
## 327  Notebook         Dell  4956134
## 328  Notebook         Dell 12688884
## 329  Notebook           HP  3903588
## 330  Notebook         Asus  8402940
## 331  Notebook       Lenovo  6393348
## 332  Notebook           HP  5681988
## 333  Notebook       Lenovo  4437108
## 334  Notebook           HP  3458988
## 335  Notebook         Dell  9647820
## 336    Gaming       Lenovo  7193628
## 337  Notebook         Dell  7993908
## 338 Ultrabook           HP 15561000
## 339  Notebook         Acer  3787992
## 340    Gaming         Asus 19553508
## 341  Notebook       Lenovo  4348188
## 342  Notebook           HP  4348099
## 343  Notebook         Dell  2747628
## 344  Notebook         Asus  2543112
## 345  Notebook         Acer  7522632
## 346    Gaming           HP 10590372
## 347  Notebook       Lenovo  3587922
## 348    Gaming         Asus 14716260
## 349  Notebook       Lenovo  9772308
## 350 Ultrabook         Asus 15551219
## 351 Ultrabook       Lenovo 20291544
## 352  Notebook       Lenovo  4881708
## 353    Gaming         Asus  9238788
## 354    Gaming         Asus 14147172
## 355  Notebook         Acer  6170959
## 356    Gaming          MSI 11995308
## 357  Notebook         Dell  6925712
## 358 Ultrabook           HP  4437108
## 359  Notebook       Lenovo 10933248
## 360  Notebook       Lenovo  8340696
## 361 Ultrabook       Lenovo 23341500
## 362  Notebook       Lenovo  2720952
## 363    Gaming         Asus 13595868
## 364  Notebook       Lenovo 10176894
## 365  Notebook         Acer  7816068
## 366    Gaming          MSI 19998108
## 367 Ultrabook         Asus 16654716
## 368 Ultrabook      Toshiba 15534324
## 369 Ultrabook         Dell 14938560
## 370  Notebook       Lenovo  3636828
## 371  Notebook       Lenovo  2707169
## 372 Ultrabook       Lenovo 17277156
## 373  Notebook           HP  4170348
## 374  Notebook         Dell  5325419
## 375  Notebook         Dell  6126588
## 376 Ultrabook           HP 13338000
## 377  Notebook         Dell  4801235
## 378 Ultrabook       Lenovo 10807159
## 379  Notebook        Chuwi  3992508
## 380  Notebook           HP 12688884
## 381  Notebook         Asus  5308524
## 382    Gaming         Dell 24888708
## 383    Gaming         Dell 10305828
## 384  Notebook         Dell 10158221
## 385 Ultrabook         Dell  9772308
## 386    Gaming           HP 17775108
## 387  Notebook       Lenovo  8980920
## 388  Notebook       Lenovo  5326308
## 389  Notebook       Lenovo 21776508
## 390    Gaming         Asus 15071940
## 391  Notebook           HP  3085524
## 392 Ultrabook       Google 19553508
## 393 Ultrabook       Lenovo 21180744
## 394  Notebook         Asus  4970628
## 395  Notebook       Lenovo  4614948
## 396  Notebook         Dell  6660108
## 397 Ultrabook       Lenovo 12706668
## 398  Notebook       Lenovo  3103308
## 399    Gaming           HP  9772308
## 400  Notebook         Dell 10483668
## 401  Notebook         Acer  3928486
## 402    Gaming          MSI  9138664
## 403 Ultrabook    Microsoft 23021388
## 404  Notebook           HP  5237388
## 405  Notebook       Lenovo 11959740
## 406  Notebook         Dell  8705268
## 407  Notebook         Dell 18193032
## 408 Ultrabook    Microsoft  8794188
## 409 Ultrabook    Microsoft 15996708
## 410  Notebook           HP  5689991
## 411  Notebook         Acer  4837248
## 412  Notebook         Asus  6660108
## 413  Notebook       Lenovo  7104708
## 414  Notebook       Lenovo 18584280
## 415  Notebook         Asus  2703168
## 416  Notebook         Acer  4170348
## 417  Notebook         Dell  6749028
## 418    Gaming           HP 15107508
## 419 Ultrabook       Lenovo 16521336
## 420  Notebook           HP 10261368
## 421 Ultrabook       Google 11337300
## 422 Ultrabook         Dell 16377730
## 423  Notebook         Asus 11550708
## 424  Notebook         Dell  6580080
## 425  Notebook       Lenovo 12128688
## 426  Notebook         Dell  6002100
## 427  Notebook      Toshiba 14867424
## 428  Notebook         Dell 11221704
## 429  Notebook         Dell  5216047
## 430  Notebook           HP  6455592
## 431  Notebook        Chuwi  2213219
## 432  Notebook       Lenovo  5023980
## 433  Notebook       Lenovo  9327708
## 434  Notebook         Dell 16885908
## 435 Ultrabook       Lenovo 15987816
## 436 Ultrabook         Asus 17339400
## 437  Notebook       Lenovo  8998615
## 438 Ultrabook      Toshiba 24888708
## 439    Gaming         Asus 12004200
## 440  Notebook         Acer  5148468
## 441    Gaming         Asus 11283948
## 442 Ultrabook       Lenovo  9772308
## 443  Notebook       Lenovo  7993019
## 444  Notebook           HP 15552108
## 445  Notebook       Lenovo  8438508
## 446  Notebook       Lenovo  8100612
## 447  Notebook           HP  5504059
## 448  Notebook       Lenovo  2658708
## 449  Notebook       Lenovo  8438508
## 450  Notebook         Asus 10883808
## 451  Notebook         Acer  5450796
## 452 Ultrabook           HP 11764116
## 453    Gaming       Lenovo 10216908
## 454 Ultrabook         Dell  7993908
## 455  Notebook         Acer  5681988
## 456  Notebook         Dell  7433712
## 457  Notebook         Dell 10841482
## 458  Notebook       Xiaomi 12448355
## 459  Notebook           HP  4636911
## 460    Gaming         Asus 26391456
## 461  Notebook           HP  7904988
## 462    Gaming         Asus 13373568
## 463    Gaming       Lenovo 12439908
## 464 Ultrabook           HP 12439908
## 465  Notebook         Dell 11379359
## 466  Notebook           HP  6126588
## 467  Notebook         Dell  7904988
## 468  Notebook       Lenovo 11915280
## 469  Notebook       Lenovo  7104708
## 470  Notebook       Lenovo  4081428
## 471  Notebook         Dell  5201820
## 472  Notebook         Dell 12244284
## 473    Gaming         Dell 26789551
## 474  Notebook      Toshiba  7647120
## 475  Notebook         Asus 11550708
## 476  Notebook     Mediacom  3281148
## 477    Gaming         Asus 14662908
## 478  Notebook         Dell 12173148
## 479  Notebook         Dell  7090570
## 480  Notebook           HP  3547819
## 481    Gaming           HP 15996708
## 482  Notebook       Lenovo  7638228
## 483 Ultrabook         Dell 12439908
## 484  Notebook         Dell  6543356
## 485 Ultrabook           HP 10181340
## 486    Gaming         Acer  7095816
## 487  Notebook         Asus  3103308
## 488  Notebook           HP  6273306
## 489  Notebook       Lenovo  6980220
## 490  Notebook       Lenovo  4111216
## 491  Notebook           HP  3530124
## 492  Notebook       Lenovo 15374268
## 493  Notebook       Lenovo  4437108
## 494  Notebook         Dell  9932275
## 495    Gaming         Dell 23999508
## 496  Notebook           HP  4838582
## 497  Notebook           HP 11381760
## 498  Notebook         Asus  1991808
## 499  Notebook     Mediacom  2267460
## 500  Notebook       Lenovo  8438508
## 501  Notebook           HP  5058659
## 502  Notebook         Dell  5494367
## 503  Notebook       Lenovo  5601960
## 504 Ultrabook           HP 17472780
## 505  Notebook       Lenovo 26667108
## 506  Notebook         Asus  7460388
## 507 Ultrabook         Dell 14218308
## 508  Notebook         Dell  8527428
## 509  Notebook      Fujitsu  6571188
## 510  Notebook       Lenovo  3058848
## 511  Notebook       Lenovo  8803080
## 512  Notebook           HP  3458988
## 513  Notebook           HP  5770908
## 514  Notebook       Lenovo  7380360
## 515  Notebook       Lenovo  6091020
## 516  Notebook     Mediacom  2214108
## 517 Ultrabook      Toshiba 16583580
## 518    Gaming       Lenovo 23679396
## 519    Gaming          MSI 24266268
## 520  Notebook         Dell  6660197
## 521  Notebook     Mediacom  3458988
## 522  Notebook         Dell  8967760
## 523  Notebook           HP  6393348
## 524  Notebook         Dell 13670472
## 525    Gaming          MSI 20887308
## 526    Gaming           HP 13320216
## 527 Ultrabook       Lenovo 14876316
## 528  Notebook       Lenovo  5415228
## 529    Gaming         Asus 15738840
## 530  Notebook       Lenovo  8438508
## 531  Notebook      Samsung 15107508
## 532  Notebook       Lenovo  4703868
## 533  Notebook       Lenovo  4081428
## 534  Notebook       Lenovo 13106808
## 535  Notebook           HP 10839348
## 536  Notebook           HP  5944124
## 537  Notebook         Acer  2925468
## 538    Gaming          MSI 19553508
## 539  Notebook         Dell  4134780
## 540    Gaming          MSI 20442708
## 541  Notebook      Toshiba 12439908
## 542  Notebook       Lenovo  5015088
## 543  Notebook         Acer  3103308
## 544  Notebook       Lenovo 43561908
## 545    Gaming         Dell  7816157
## 546  Notebook         Dell  3947159
## 547  Notebook         Dell  3192228
## 548  Notebook         Dell  7727148
## 549    Gaming         Asus 10385856
## 550  Notebook         Dell  5059548
## 551 Ultrabook           HP 12350988
## 552    Gaming          MSI 20165811
## 553  Notebook           HP  9994608
## 554  Notebook       Lenovo 13026780
## 555  Notebook         Dell  6900192
## 556  Notebook      Fujitsu  7104708
## 557  Notebook           HP  8287344
## 558  Notebook       Lenovo  7993908
## 559  Notebook     Mediacom  2125188
## 560  Notebook       Lenovo  4161456
## 561  Notebook         Dell 16183440
## 562 Ultrabook         Asus 16894800
## 563    Gaming         Dell 13151268
## 564  Notebook       Lenovo  7371468
## 565  Notebook       Lenovo  5148468
## 566  Notebook         Asus  3547908
## 567  Notebook         Asus  8061665
## 568 Ultrabook         Dell 16619148
## 569  Notebook       Lenovo  2214108
## 570  Notebook         Dell 21331908
## 571    Gaming       Lenovo  9861228
## 572  Notebook           HP  4631843
## 573 Ultrabook       Lenovo 21785400
## 574    Gaming         Asus 10394748
## 575  Notebook         Acer  4001400
## 576  Notebook       Lenovo  2436408
## 577 Ultrabook         Acer  8171748
## 578    Gaming        Razer 23110308
## 579  Notebook      Toshiba 10785996
## 580 Ultrabook       Lenovo 14084928
## 581    Gaming         Asus 24888708
## 582    Gaming         Acer  6304428
## 583 Ultrabook         Dell 12892511
## 584    Gaming          MSI 10597486
## 585  Notebook           HP  3244691
## 586  Notebook      Toshiba  9461088
## 587  Notebook         Dell  8171748
## 588  Notebook         Dell 10092420
## 589    Gaming       Lenovo 10634832
## 590    Gaming         Dell 27986414
## 591  Notebook         Dell 10928268
## 592  Notebook       Lenovo  3725748
## 593  Notebook       Lenovo  4757220
## 594  Notebook           HP  4792788
## 595    Gaming          MSI 13220359
## 596  Notebook      Toshiba  4428216
## 597  Notebook         Dell  8491860
## 598  Notebook           HP  6624540
## 599  Notebook      Toshiba 11186136
## 600  Notebook         Acer  3663504
## 601 Ultrabook    Microsoft 16608922
## 602  Notebook       Lenovo  7273211
## 603  Notebook       Lenovo  3103308
## 604    Gaming          MSI 11506248
## 605 Ultrabook         Asus 10092420
## 606 Ultrabook           LG 20442708
## 607    Gaming         Acer 11550708
## 608    Gaming          MSI  8873327
## 609  Notebook         Asus  3725748
## 610    Gaming         Dell 18237492
## 611  Notebook           HP  6215508
## 612    Gaming         Dell 25019865
## 613  Notebook           HP  5447328
## 614  Notebook         Dell  4852098
## 615  Notebook           HP  5059548
## 616  Notebook       Lenovo  2827656
## 617  Notebook         Acer  3334500
## 618  Notebook       Lenovo  6215508
## 619  Notebook      Toshiba  8651916
## 620 Ultrabook      Toshiba 16690284
## 621  Notebook           HP  6126588
## 622    Gaming         Dell  7282548
## 623  Notebook       Lenovo  3547908
## 624  Notebook       Lenovo  3814668
## 625  Notebook       Lenovo  5525933
## 626  Notebook       Lenovo  4001400
## 627  Notebook         Dell  7069140
## 628  Notebook       Lenovo 10590372
## 629  Notebook           HP  5824349
## 630    Gaming       Lenovo 11106108
## 631  Notebook         Dell  9683388
## 632  Notebook         Dell  6455592
## 633  Notebook         Asus  2649816
## 634  Notebook         Dell 12685861
## 635  Notebook       Lenovo  7621066
## 636  Notebook         Dell 10483668
## 637  Notebook       Lenovo  2649816
## 638  Notebook     Mediacom  2356380
## 639  Notebook           HP 10670400
## 640 Ultrabook       Lenovo 14997603
## 641 Ultrabook       Lenovo 13329108
## 642    Gaming         Dell 32539385
## 643    Gaming          MSI 11990684
## 644  Notebook       Lenovo  4356191
## 645  Notebook         Dell  6393348
## 646  Notebook         Dell  5242012
## 647  Notebook           HP  4348188
## 648    Gaming         Acer 17206020
## 649  Notebook         Dell  5770908
## 650  Notebook           HP  5779800
## 651  Notebook         Acer  4970628
## 652  Notebook       Lenovo  8536320
## 653  Notebook       Lenovo  6926868
## 654    Gaming          MSI 18624116
## 655  Notebook         Acer  3652834
## 656  Notebook         Dell 10732644
## 657  Notebook         Dell  5913180
## 658  Notebook      Toshiba 13649220
## 659  Notebook         Acer  2934360
## 660 Ultrabook      Samsung 14662908
## 661  Notebook           HP  4792788
## 662  Notebook         Dell 10018705
## 663  Notebook           HP 16894800
## 664  Notebook         Asus  5148468
## 665 Ultrabook       Lenovo  9745632
## 666  Notebook         Asus  7557311
## 667  Notebook           HP  9772308
## 668    Gaming         Dell 25511059
## 669  Notebook         Acer  5326308
## 670    Gaming       Lenovo  9318816
## 671 Ultrabook         Dell 16530228
## 672 Ultrabook       Google 13862628
## 673 Ultrabook         Asus 10039068
## 674  Notebook         Dell  7549308
## 675  Notebook         Acer  5824260
## 676  Notebook         Asus  4182263
## 677    Gaming         Dell  9772308
## 678 Ultrabook      Samsung 14218308
## 679  Notebook         Acer  2649816
## 680  Notebook         Dell 10503853
## 681  Notebook      Toshiba  9069840
## 682    Gaming         Dell  9772308
## 683 Ultrabook           HP 11061648
## 684  Notebook       Lenovo 21074040
## 685  Notebook         Acer  5655312
## 686    Gaming        Razer 25777908
## 687  Notebook         Asus  5174255
## 688    Gaming         Dell 31911610
## 689    Gaming         Asus 20896200
## 690 Ultrabook      Toshiba 15685488
## 691  Notebook       Lenovo  2925468
## 692 Ultrabook       Lenovo 20442708
## 693    Gaming          MSI 16814772
## 694    Gaming          MSI  9683388
## 695    Gaming       Lenovo  8883108
## 696    Gaming         Acer 20442708
## 697    Gaming         Dell  8758620
## 698    Gaming         Asus 11906388
## 699  Notebook         Vero  1804187
## 700 Ultrabook        Apple 10359180
## 701  Notebook         Asus  2658708
## 702  Notebook         Dell  7202520
## 703  Notebook         Dell  6571188
## 704  Notebook         Asus  9772308
## 705 Ultrabook         Dell 13329108
## 706  Notebook         Dell 15552108
## 707  Notebook      Toshiba  6935760
## 708  Notebook           HP  5593068
## 709    Gaming         Dell 14929668
## 710  Notebook       Lenovo  5415228
## 711    Gaming           HP 15552108
## 712    Gaming          MSI 21474180
## 713 Ultrabook      Samsung 13329108
## 714  Notebook         Dell  8545212
## 715  Notebook         Dell  7022991
## 716 Ultrabook       Lenovo 16530228
## 717 Ultrabook        Razer 15996708
## 718    Gaming         Dell 22274638
## 719  Notebook         Dell  6713460
## 720  Notebook       Lenovo  4356191
## 721 Ultrabook      Toshiba  9692280
## 722 Ultrabook       Lenovo 22221108
## 723    Gaming          MSI 10661508
## 724 Ultrabook       Lenovo 16672500
## 725  Notebook      Toshiba  4437108
## 726  Notebook         Dell  5201820
## 727  Notebook         Acer  5504148
## 728    Gaming        Razer 48897108
## 729 Ultrabook       Lenovo 18664308
## 730  Notebook         Asus  4614948
## 731  Notebook       Lenovo 10545912
## 732  Notebook       Lenovo 14671800
## 733    Gaming         Dell 24672010
## 734    Gaming         Asus 21509748
## 735  Notebook      Toshiba  5948748
## 736  Notebook       Lenovo  2889900
## 737  Notebook         Asus  5246280
## 738    Gaming         Asus 15996708
## 739    Gaming         Dell 27324138
## 740  Notebook           HP  8091720
## 741  Notebook         Dell  6348799
## 742 Ultrabook           HP 16628040
## 743  Notebook         Dell  6571188
## 744 Ultrabook         Asus  9123192
## 745 Ultrabook           HP 13053456
## 746  Notebook           HP  2658708
## 747    Gaming         Asus 16885908
## 748  Notebook         Dell  7691580
## 749 Ultrabook       Lenovo 16921476
## 750  Notebook         Asus  6998004
## 751  Notebook         Dell  8402940
## 752  Notebook         Asus  3992508
## 753  Notebook         Dell  5770908
## 754  Notebook       Lenovo  4170348
## 755  Notebook       Lenovo  7564069
## 756  Notebook           HP 11995308
## 757  Notebook      Toshiba 11426220
## 758    Gaming       Lenovo  9043164
## 759 Ultrabook         Dell 19918080
## 760  Notebook           HP  8091720
## 761 Ultrabook      Toshiba  9736740
## 762  Notebook         Acer  8020584
## 763  Notebook       Lenovo  9381060
## 764  Notebook       Lenovo  4259268
## 765  Notebook      Toshiba 12342096
## 766  Notebook       Lenovo  6535620
## 767 Ultrabook      Samsung 16441308
## 768 Ultrabook         Dell 15027480
## 769  Notebook         Asus  3547819
## 770 Ultrabook       Xiaomi  8314020
## 771  Notebook         Dell  8113950
## 772  Notebook           HP  7460388
## 773  Notebook         Asus  3094416
## 774  Notebook       Lenovo  5948748
## 775  Notebook         Dell  3281148
## 776  Notebook         Dell  4052084
## 777    Gaming         Asus 12181151
## 778  Notebook       Lenovo  3370068
## 779  Notebook           HP 11248380
## 780 Ultrabook      Samsung 15107508
## 781 Ultrabook       Lenovo 15996708
## 782    Gaming          MSI 23554908
## 783  Notebook      Toshiba 13115700
## 784    Gaming         Dell  8260668
## 785  Notebook           HP  8002800
## 786  Notebook         Dell  5459688
## 787  Notebook         Dell  8314020
## 788    Gaming         Asus 11372868
## 789 Ultrabook       Lenovo 18219708
## 790  Notebook       Lenovo 17454907
## 791 Ultrabook           LG 18664308
## 792  Notebook         Acer  3192228
## 793  Notebook       Lenovo  7015788
## 794 Ultrabook           LG 16885908
## 795  Notebook         Dell 10714860
## 796 Ultrabook           HP 27565200
## 797  Notebook       Lenovo  7015788
## 798  Notebook           HP  9060859
## 799  Notebook         Acer  4437108
## 800  Notebook       Lenovo  7833852
## 801  Notebook           HP  8536320
## 802    Gaming          MSI 14218308
## 803    Gaming         Dell 11995308
## 804    Gaming          MSI  9958240
## 805  Notebook         Dell  6090931
## 806 Ultrabook           HP 11532835
## 807 Ultrabook           HP 10216908
## 808  Notebook      Toshiba 17561700
## 809  Notebook         Dell  6490271
## 810 Ultrabook       Lenovo 14671800
## 811  Notebook           HP 10359180
## 812  Notebook         Dell  6296070
## 813  Notebook           HP 10216908
## 814  Notebook       Lenovo  2747628
## 815 Ultrabook           HP 14040468
## 816  Notebook           HP  2568899
## 817  Notebook      Toshiba  9825660
## 818  Notebook         Dell  4967071
## 819    Gaming          MSI 10661508
## 820 Ultrabook         Dell 14573988
## 821    Gaming         Dell 24524136
## 822    Gaming           HP 12439908
## 823  Notebook         Asus  4712760
## 824  Notebook         Acer  5504148
## 825  Notebook      Toshiba  9950148
## 826    Gaming       Lenovo  8883108
## 827 Ultrabook         Dell 13090802
## 828  Notebook       Lenovo  6091020
## 829  Notebook         Dell  5859828
## 830  Notebook         Acer  3103308
## 831 Ultrabook         Dell 15783300
## 832  Notebook      Toshiba 12982320
## 833 Ultrabook       Lenovo 13240099
## 834    Gaming         Dell 28045368
## 835 Ultrabook         Dell 11275056
## 836  Notebook      Toshiba 13649220
## 837 Ultrabook       Lenovo 15649920
## 838  Notebook         Acer  8972028
## 839 Ultrabook      Toshiba 15916680
## 840  Notebook           HP  7527078
## 841  Notebook         Dell  4140293
## 842  Notebook         Dell  7335900
## 843  Notebook           HP  6091020
## 844    Gaming         Dell 28000908
## 845  Notebook       Lenovo  6179940
## 846 Ultrabook         Dell 17454818
## 847    Gaming         Dell 24897600
## 848  Notebook      Toshiba 10492560
## 849    Gaming         Asus 18227711
## 850  Notebook           HP  8705268
## 851  Notebook       Lenovo  8909784
laptop_com_tran <- laptops_train %>% filter (Manufacturer %in% laptops_transporte) %>% select(Manufacturer, CPU, Price)
laptop_com_tran
##    Manufacturer                                  CPU    Price
## 1            HP           Intel Core i7 7500U 2.7GHz  5148468
## 2            HP           Intel Core i5 7200U 2.5GHz  7166952
## 3            HP             Intel Core M 6Y75 1.2GHz 16965936
## 4            HP             Intel Core i3 6006U 2GHz  4437108
## 5            HP           Intel Core i7 7500U 2.7GHz 11995308
## 6            HP           Intel Core i7 7500U 2.7GHz 18575388
## 7            HP           Intel Core i5 7200U 2.5GHz 10572588
## 8            HP           Intel Core i5 7200U 2.5GHz  6926868
## 9            HP           Intel Core i5 6300U 2.4GHz  9781111
## 10           HP           Intel Core i5 7200U 2.5GHz 10714860
## 11           HP           Intel Core i7 6600U 2.6GHz 12884508
## 12           HP           Intel Core i5 7200U 2.5GHz  9330020
## 13           HP           Intel Core i3 7100U 2.4GHz  6082128
## 14           HP           Intel Core i5 7200U 2.5GHz 13684788
## 15           HP           Intel Core i5 7200U 2.5GHz 14138280
## 16           HP           Intel Core i7 6500U 2.5GHz 16781071
## 17           HP           Intel Core i3 7100U 2.4GHz  7113600
## 18           HP           Intel Core i3 7100U 2.4GHz  6846751
## 19           HP           Intel Core i7 6500U 2.5GHz 19820268
## 20           HP           Intel Core i5 7200U 2.5GHz 10216908
## 21           HP           Intel Core i7 7500U 2.7GHz 10540844
## 22           HP           Intel Core i5 7200U 2.5GHz 13862628
## 23           HP           Intel Core i5 7200U 2.5GHz 10572588
## 24           HP           Intel Core i5 7200U 2.5GHz  9425520
## 25           HP           Intel Core i5 7200U 2.5GHz  9603360
## 26           HP           Intel Core i5 7200U 2.5GHz  8651916
## 27           HP           Intel Core i5 6200U 2.3GHz 10625940
## 28           HP           Intel Core i7 6500U 2.5GHz 10928179
## 29           HP           Intel Core i7 6500U 2.5GHz 11995308
## 30           HP           Intel Core i5 7200U 2.5GHz  6597864
## 31           HP           Intel Core i5 7200U 2.5GHz  8985455
## 32           HP           Intel Core i5 6200U 2.3GHz  8892000
## 33           HP           Intel Core i5 6300U 2.4GHz 18702899
## 34           HP           Intel Core i5 6200U 2.3GHz 13062348
## 35           HP           Intel Core i7 7500U 2.7GHz  8705268
## 36           HP           Intel Core i5 7200U 2.5GHz  8705268
## 37           HP           Intel Core i3 6100U 2.3GHz  6270194
## 38           HP           Intel Core i5 7200U 2.5GHz  4437108
## 39           HP           Intel Core i7 7500U 2.7GHz  9514440
## 40        Apple                  Intel Core M 1.1GHz 11559600
## 41           HP           Intel Core i5 6200U 2.3GHz 10661508
## 42           HP           Intel Core i5 6200U 2.3GHz 10661508
## 43           HP           Intel Core i7 7500U 2.7GHz  9692280
## 44           HP           Intel Core i5 6200U 2.3GHz  8358480
## 45           HP           Intel Core i7 7500U 2.7GHz 18219708
## 46           HP           Intel Core i5 6200U 2.3GHz  9167563
## 47           HP           Intel Core i7 6500U 2.5GHz 13293540
## 48           HP Intel Pentium Dual Core 4405Y 1.5GHz  5468580
## 49           HP             Intel Core i3 6006U 2GHz  3076543
## 50           HP           Intel Core i5 6200U 2.3GHz 14218308
## 51           HP Intel Pentium Quad Core N3710 1.6GHz  4446000
## 52           HP          Intel Core i7 6700HQ 2.6GHz 25777908
## 53           HP            AMD A6-Series 9220 2.5GHz  3539016
## 54           HP             Intel Core M 6Y54 1.1GHz 15107508
## 55           HP           Intel Core i7 6500U 2.5GHz 17508348
## 56           HP           Intel Core i5 6200U 2.3GHz 15027480
## 57           HP           Intel Core i5 6200U 2.3GHz 13453596
## 58           HP           Intel Core i5 6300U 2.4GHz 16850340
## 59           HP          Intel Core i5 6300HQ 2.3GHz 10039068
## 60           HP           Intel Core i7 7500U 2.7GHz  5593068
## 61           HP           Intel Core i7 7500U 2.7GHz  6686784
## 62           HP          Intel Core i7 6700HQ 2.6GHz 35118065
## 63           HP           Intel Core i7 6500U 2.5GHz 19310934
## 64           HP           Intel Core i5 6300U 2.4GHz 14485068
## 65           HP          Intel Core i7 6700HQ 2.6GHz 19820268
## 66           HP           Intel Core i7 6600U 2.6GHz 15996708
## 67           HP          Intel Core i7 6700HQ 2.6GHz 16885908
## 68           HP          Intel Core i7 6500U 2.50GHz 20424479
## 69           HP           Intel Core i5 6200U 2.3GHz 14040468
## 70           HP             AMD E-Series 7110 1.8GHz  2640924
## 71           HP         AMD A6-Series A6-9220 2.5GHz  4258290
## 72           HP           Intel Core i7 6600U 2.6GHz 18148572
## 73           HP          Intel Core i7 7700HQ 2.8GHz  7993908
## 74           HP           Intel Core i5 6200U 2.3GHz  4241395
## 75           HP Intel Celeron Dual Core N3060 1.6GHz  2214108
## 76           HP           Intel Core i7 6500U 2.5GHz  6037668
## 77           HP           Intel Core i7 8550U 1.8GHz 10305828
## 78           HP           Intel Core i3 6100U 2.3GHz  5779800
## 79           HP          Intel Core i7 6700HQ 2.6GHz  7104708
## 80           HP           Intel Core i5 7200U 2.5GHz  4312620
## 81        Apple                  Intel Core M 1.1GHz 10341396
## 82           HP          Intel Core i7 7700HQ 2.8GHz 11799684
## 83           HP           Intel Core i5 7200U 2.5GHz  5148468
## 84        Apple                  Intel Core M 1.2GHz 11372868
## 85           HP          AMD A12-Series 9720P 2.7GHz  4703868
## 86        Apple                 Intel Core i5 1.6GHz  8527428
## 87           HP             Intel Core i3 6006U 2GHz  4250376
## 88           HP           Intel Core i7 6500U 2.5GHz 19546305
## 89           HP           Intel Core i5 6200U 2.3GHz  9781111
## 90           HP            AMD A6-Series 9220 2.5GHz  3547908
## 91           HP            AMD A9-Series 9410 2.9GHz  4890511
## 92           HP Intel Celeron Dual Core N3060 1.6GHz  1858428
## 93           HP           Intel Core i7 6500U 2.5GHz  6793488
## 94           HP            AMD A9-Series 9410 2.9GHz  4890511
## 95           HP Intel Celeron Dual Core N3060 1.6GHz  1858428
## 96           HP           Intel Core i7 6500U 2.5GHz  6793488
## 97           HP            AMD A9-Series 9410 2.9GHz  4890511
## 98           HP Intel Celeron Dual Core N3060 1.6GHz  1858428
## 99           HP           Intel Core i7 6500U 2.5GHz  6793488