forked from YTushar18/SmartLapRec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.ttl
2830 lines (2661 loc) · 76.7 KB
/
data.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix ns1: <http://example.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ns1:Laptop_1 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "2.5"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 1 ;
ns1:model "Inspiron 15-3567" ;
ns1:os "linux" ;
ns1:price 40000 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.5"^^xsd:float .
ns1:Laptop_10 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "1.6"^^xsd:float ;
ns1:comments "Integrated Graphics" ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 10 ;
ns1:model "Inspiron 15.6 3552" ;
ns1:os "linux" ;
ns1:price 21990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "pentium N3710" ;
ns1:ram 4 ;
ns1:screen_size "15.0"^^xsd:float ;
ns1:weight "2.19"^^xsd:float .
ns1:Laptop_100 a ns1:Laptop ;
ns1:brand "HP " ;
ns1:clock_speed "1.6"^^xsd:float ;
ns1:graphic_card_brand "nvidia" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 100 ;
ns1:model "Pavilion 14-bf125tx " ;
ns1:os "windows" ;
ns1:price 64490 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 12 ;
ns1:screen_size "14.0"^^xsd:float ;
ns1:weight "1.53"^^xsd:float .
ns1:Laptop_101 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "3.8"^^xsd:float ;
ns1:comments """Operating System: Windows 10 with Office 2016 Home and Student\r
\r
Lithium Battery Energy Content: 74 Watt Hours\r
\r
Included Components: Laptop, Battery, AC Adapter, User Guide, Manuals""" ;
ns1:graphic_card_brand "nvidia" ;
ns1:graphic_card_size "4.0"^^xsd:float ;
ns1:hd_size 1280 ;
ns1:hd_type "hdd" ;
ns1:id 101 ;
ns1:model "Inspiron 15 Gaming 7567" ;
ns1:os "windows" ;
ns1:price 112990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i7" ;
ns1:ram 16 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.8"^^xsd:float .
ns1:Laptop_102 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 102 ;
ns1:model "ay516tx" ;
ns1:os "windows" ;
ns1:price 42100 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "1.28"^^xsd:float .
ns1:Laptop_103 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "1.1"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 103 ;
ns1:model "A315-31-P4CRUN.GNTSI.002" ;
ns1:os "windows" ;
ns1:price 18990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "pentium" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float .
ns1:Laptop_105 a ns1:Laptop ;
ns1:brand "Lenovo" ;
ns1:clock_speed "2.2"^^xsd:float ;
ns1:comments "customer rating 3.8" ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 105 ;
ns1:model "320E-15IKB 80XL03FYIN" ;
ns1:os "windows" ;
ns1:price 45589 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "15.0"^^xsd:float ;
ns1:weight "2.5"^^xsd:float .
ns1:Laptop_106 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "2.7"^^xsd:float ;
ns1:graphic_card_brand "nvidia" ;
ns1:graphic_card_size "4.0"^^xsd:float ;
ns1:hd_size 128 ;
ns1:hd_type "ssd" ;
ns1:id 106 ;
ns1:model "Inspiron 15 7560" ;
ns1:os "windows" ;
ns1:price 76000 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i7" ;
ns1:ram 8 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "3.2"^^xsd:float .
ns1:Laptop_107 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.5"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 107 ;
ns1:model "15q-BU011TX" ;
ns1:os "windows" ;
ns1:price 42990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 8 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.1"^^xsd:float .
ns1:Laptop_108 a ns1:Laptop ;
ns1:brand "Lenovo" ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:comments "customer rating 3.0" ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 108 ;
ns1:model "300 300-15ISK 80Q700UGIN" ;
ns1:os "windows" ;
ns1:price 47990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "3.2"^^xsd:float .
ns1:Laptop_109 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "2.6"^^xsd:float ;
ns1:comments """Average Battery Life (in hours): 4\r
Lithium Battery Energy Content: 50 Watt Hours""" ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 128 ;
ns1:hd_type "ssd" ;
ns1:id 109 ;
ns1:model "XPS 12 Ultrabook" ;
ns1:os "windows" ;
ns1:price 101065 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "12.0"^^xsd:float ;
ns1:weight "3.2"^^xsd:float .
ns1:Laptop_11 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "2.4"^^xsd:float ;
ns1:comments "Integrated Graphics" ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 11 ;
ns1:model "Vostro 3468 " ;
ns1:os "windows" ;
ns1:price 35925 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3 " ;
ns1:ram 4 ;
ns1:screen_size "14.0"^^xsd:float ;
ns1:weight "1.76"^^xsd:float .
ns1:Laptop_110 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.0"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 110 ;
ns1:model "15-BS580TX" ;
ns1:os "windows" ;
ns1:price 42999 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3 " ;
ns1:ram 8 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.1"^^xsd:float .
ns1:Laptop_111 a ns1:Laptop ;
ns1:brand "Lenovo" ;
ns1:clock_speed "2.4"^^xsd:float ;
ns1:comments "customer rating 4.0" ;
ns1:graphic_card_brand "intel" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 111 ;
ns1:model "510 80VB00ACIH" ;
ns1:os "windows" ;
ns1:price 47990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 4 ;
ns1:screen_size "14.0"^^xsd:float ;
ns1:weight "1.7"^^xsd:float .
ns1:Laptop_112 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "1.8"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 112 ;
ns1:model "Aspire ES-15 NX.GKYSI.010 " ;
ns1:os "windows" ;
ns1:price 17990 ;
ns1:processor_brand "amd" ;
ns1:processor_model "A4-7210" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.4"^^xsd:float .
ns1:Laptop_113 a ns1:Laptop ;
ns1:brand "Lenovo" ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:comments "customer rating 3.0" ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 113 ;
ns1:model "500 80NS0072IN" ;
ns1:os "windows" ;
ns1:price 49052 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "14.0"^^xsd:float ;
ns1:weight "2.3"^^xsd:float .
ns1:Laptop_114 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.4"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 512 ;
ns1:hd_type "hdd" ;
ns1:id 114 ;
ns1:model "450-Ci3" ;
ns1:os "windows" ;
ns1:price 43113 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 4 ;
ns1:screen_size "13.86"^^xsd:float ;
ns1:weight "2.25"^^xsd:float .
ns1:Laptop_115 a ns1:Laptop ;
ns1:brand "Lenovo" ;
ns1:clock_speed "3.1"^^xsd:float ;
ns1:comments "customer rating 3.1" ;
ns1:graphic_card_brand "intel" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 115 ;
ns1:model "320S-14IKB" ;
ns1:os "windows" ;
ns1:price 48449 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "14.0"^^xsd:float ;
ns1:weight "1.7"^^xsd:float .
ns1:Laptop_116 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "1.6"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 116 ;
ns1:model "Aspire R3-131T " ;
ns1:os "windows" ;
ns1:price 26490 ;
ns1:processor_brand "intel" ;
ns1:processor_model "Pentium N3700" ;
ns1:ram 4 ;
ns1:screen_size "11.6"^^xsd:float ;
ns1:weight "1.58"^^xsd:float .
ns1:Laptop_117 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 117 ;
ns1:model "15-be001TX" ;
ns1:os "windows" ;
ns1:price 43990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 8 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.19"^^xsd:float .
ns1:Laptop_118 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.2"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 118 ;
ns1:model "15-ac123tx" ;
ns1:os "windows" ;
ns1:price 44000 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.19"^^xsd:float .
ns1:Laptop_119 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 119 ;
ns1:model "Aspire Es1-572-38Cy" ;
ns1:os "linux" ;
ns1:price 24890 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "3.36"^^xsd:float .
ns1:Laptop_12 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "1.7"^^xsd:float ;
ns1:comments "Integrated Graphics" ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 12 ;
ns1:model "Inspiron 14 3442" ;
ns1:os "linux" ;
ns1:price 30900 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 4 ;
ns1:screen_size "14.0"^^xsd:float ;
ns1:weight "3.1"^^xsd:float .
ns1:Laptop_120 a ns1:Laptop ;
ns1:brand "Alienware" ;
ns1:clock_speed "2.6"^^xsd:float ;
ns1:comments """Display: 15.6" in 4K UHD IPS touchscreen (3840 x 2160), 10-finger multi-touch support\r
Audio: Klipsch Audio""" ;
ns1:graphic_card_brand "nvidia" ;
ns1:graphic_card_size "4.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 120 ;
ns1:model "OEM" ;
ns1:os "windows" ;
ns1:price 151258 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i7" ;
ns1:ram 16 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "3.18"^^xsd:float .
ns1:Laptop_121 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "2.0"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 121 ;
ns1:model "A315-21G NX.GNPSI.002 " ;
ns1:os "linux" ;
ns1:price 24990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.1"^^xsd:float .
ns1:Laptop_122 a ns1:Laptop ;
ns1:brand "Alienware" ;
ns1:clock_speed "2.7"^^xsd:float ;
ns1:graphic_card_brand "nvidia" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 122 ;
ns1:model "13 Y560901IN9" ;
ns1:os "windows" ;
ns1:price 117299 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 8 ;
ns1:screen_size "13.0"^^xsd:float ;
ns1:weight "2.5"^^xsd:float .
ns1:Laptop_123 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "1.8"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:hd_size 1024 ;
ns1:hd_type "ssd" ;
ns1:id 123 ;
ns1:model "245 G4,P1b38PA" ;
ns1:os "linux" ;
ns1:price 21999 ;
ns1:processor_brand "amd" ;
ns1:processor_model "E2-7110" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.93"^^xsd:float .
ns1:Laptop_124 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 124 ;
ns1:model "N5Y13UA#ABA" ;
ns1:os "windows" ;
ns1:price 41134 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.1"^^xsd:float .
ns1:Laptop_125 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "2.16"^^xsd:float ;
ns1:comments "Integrated graphics" ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 125 ;
ns1:model "Inspiron 15 3551" ;
ns1:os "linux" ;
ns1:price 23000 ;
ns1:processor_brand "intel" ;
ns1:processor_model "Pentium" ;
ns1:ram 2 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "3.12"^^xsd:float .
ns1:Laptop_126 a ns1:Laptop ;
ns1:brand "Alienware" ;
ns1:clock_speed "2.5"^^xsd:float ;
ns1:comments "17.3 inch FHD (1920 x 1080) IPS-Panel Anti-Glare 300-nits Display" ;
ns1:graphic_card_brand "nvidia" ;
ns1:graphic_card_size "3.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 126 ;
ns1:model "ANW17-2143SLV" ;
ns1:os "windows" ;
ns1:price 178427 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i7" ;
ns1:ram 8 ;
ns1:screen_size "17.3"^^xsd:float ;
ns1:weight "3.8"^^xsd:float .
ns1:Laptop_127 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "1.9"^^xsd:float ;
ns1:comments "Intel Integrated Graphics" ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 500 ;
ns1:hd_type "ssd" ;
ns1:id 127 ;
ns1:model "15-ac118tu" ;
ns1:os "linux" ;
ns1:price 23990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "Pentium N3825U" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "3.03"^^xsd:float .
ns1:Laptop_128 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "2.5"^^xsd:float ;
ns1:graphic_card_brand "nvidia" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 128 ;
ns1:model "E5-575 NX.GE6SI.016" ;
ns1:os "linux" ;
ns1:price 34700 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.2"^^xsd:float .
ns1:Laptop_129 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.0"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 129 ;
ns1:model "15-AY542TU" ;
ns1:os "linux" ;
ns1:price 28590 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.19"^^xsd:float .
ns1:Laptop_13 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:comments "Integrated Graphics" ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 13 ;
ns1:model "Inspiron 15 3567" ;
ns1:os "windows" ;
ns1:price 35990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "3.24"^^xsd:float .
ns1:Laptop_130 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "1.8"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 130 ;
ns1:model "245 G5" ;
ns1:os "windows" ;
ns1:price 40199 ;
ns1:processor_brand "amd" ;
ns1:processor_model "APU Dual Core A4" ;
ns1:ram 4 ;
ns1:screen_size "14.0"^^xsd:float ;
ns1:weight "1.8"^^xsd:float .
ns1:Laptop_131 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "1.6"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 131 ;
ns1:model "Aspire R3-131T 2017 " ;
ns1:os "windows" ;
ns1:price 27199 ;
ns1:processor_brand "intel" ;
ns1:processor_model "Pentium N3710" ;
ns1:ram 4 ;
ns1:screen_size "11.6"^^xsd:float ;
ns1:weight "2.4"^^xsd:float .
ns1:Laptop_132 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "1.7"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 132 ;
ns1:model "Inspiron 5558" ;
ns1:os "windows" ;
ns1:price 37790 ;
ns1:processor_brand "intel" ;
ns1:processor_model "I3" ;
ns1:ram 2 ;
ns1:screen_size "15.6"^^xsd:float .
ns1:Laptop_133 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "1.6"^^xsd:float ;
ns1:comments "Integrated Graphics" ;
ns1:hd_size 500 ;
ns1:hd_type "ssd" ;
ns1:id 133 ;
ns1:model "15- BS547TU" ;
ns1:os "windows" ;
ns1:price 26299 ;
ns1:processor_brand "intel" ;
ns1:processor_model "Pentium N3710 " ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.1"^^xsd:float .
ns1:Laptop_134 a ns1:Laptop ;
ns1:brand "Alienware" ;
ns1:clock_speed "2.6"^^xsd:float ;
ns1:graphic_card_brand "nvidia" ;
ns1:graphic_card_size "3.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 134 ;
ns1:model "17R3 1471045648" ;
ns1:os "windows" ;
ns1:price 150453 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i7" ;
ns1:ram 8 ;
ns1:screen_size "17.3"^^xsd:float ;
ns1:weight "3.8"^^xsd:float .
ns1:Laptop_135 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.4"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 135 ;
ns1:model "11-ad022TU" ;
ns1:os "windows" ;
ns1:price 40490 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 4 ;
ns1:screen_size "11.6"^^xsd:float ;
ns1:weight "1.39"^^xsd:float .
ns1:Laptop_136 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "1.6"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 136 ;
ns1:model "15-BE002TU" ;
ns1:os "linux" ;
ns1:price 25248 ;
ns1:processor_brand "intel" ;
ns1:processor_model "Pentium N3710" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.19"^^xsd:float .
ns1:Laptop_137 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "2.0"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 137 ;
ns1:model "ASPIRE ES1-572-33M8" ;
ns1:os "windows" ;
ns1:price 33990 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "3.0"^^xsd:float .
ns1:Laptop_138 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 138 ;
ns1:model "15-ay008TX" ;
ns1:os "windows" ;
ns1:price 40890 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.19"^^xsd:float .
ns1:Laptop_139 a ns1:Laptop ;
ns1:brand "HP " ;
ns1:clock_speed "2.5"^^xsd:float ;
ns1:graphic_card_brand "nvidia" ;
ns1:graphic_card_size "4.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 139 ;
ns1:model "Pavilion 15-AU624TX" ;
ns1:os "windows" ;
ns1:price 58988 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.04"^^xsd:float .
ns1:Laptop_14 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "1.6"^^xsd:float ;
ns1:comments "Integrated Graphics" ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 14 ;
ns1:model "Vostro 3568" ;
ns1:os "linux" ;
ns1:price 24900 ;
ns1:processor_brand "intel" ;
ns1:processor_model "Celeron 3855U" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.5"^^xsd:float .
ns1:Laptop_140 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "1.6"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 32 ;
ns1:hd_type "ssd" ;
ns1:id 140 ;
ns1:model "Inspiron i3168" ;
ns1:os "windows" ;
ns1:price 37274 ;
ns1:processor_brand "intel" ;
ns1:processor_model "Celeron N3060" ;
ns1:ram 2 ;
ns1:screen_size "11.6"^^xsd:float ;
ns1:weight "1.45"^^xsd:float .
ns1:Laptop_141 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.0"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:hd_size 500 ;
ns1:hd_type "ssd" ;
ns1:id 141 ;
ns1:model "15-bg007AU" ;
ns1:os "windows" ;
ns1:price 23990 ;
ns1:processor_brand "amd" ;
ns1:processor_model "A6-7310" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.5"^^xsd:float .
ns1:Laptop_142 a ns1:Laptop ;
ns1:brand "HP " ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 142 ;
ns1:model "13-s101TU" ;
ns1:os "windows" ;
ns1:price 57900 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "13.3"^^xsd:float ;
ns1:weight "1.71"^^xsd:float .
ns1:Laptop_143 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 143 ;
ns1:model "ASPIRE E5-575 " ;
ns1:os "linux" ;
ns1:price 27280 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float .
ns1:Laptop_144 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "1.4"^^xsd:float ;
ns1:graphic_card_brand "nvidia" ;
ns1:hd_size 32 ;
ns1:hd_type "ssd" ;
ns1:id 144 ;
ns1:model "M2C39UA#ABA" ;
ns1:os "windows" ;
ns1:price 41224 ;
ns1:processor_brand "amd" ;
ns1:processor_model "E1-6015" ;
ns1:ram 2 ;
ns1:screen_size "14.0"^^xsd:float ;
ns1:weight "1.9"^^xsd:float .
ns1:Laptop_145 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "3.1"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:graphic_card_size "2.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 145 ;
ns1:model "1EK01PA" ;
ns1:os "windows" ;
ns1:price 41380 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.3"^^xsd:float .
ns1:Laptop_146 a ns1:Laptop ;
ns1:brand "HP " ;
ns1:clock_speed "2.3"^^xsd:float ;
ns1:graphic_card_brand "nvidia" ;
ns1:graphic_card_size "4.0"^^xsd:float ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 146 ;
ns1:model "Pavilion 15-AU006TX" ;
ns1:os "windows" ;
ns1:price 57000 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 8 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.9"^^xsd:float .
ns1:Laptop_147 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "1.5"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 147 ;
ns1:model "Aspire ES 15" ;
ns1:os "linux" ;
ns1:price 19589 ;
ns1:processor_brand "amd" ;
ns1:processor_model "E1-7010" ;
ns1:ram 4 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.4"^^xsd:float .
ns1:Laptop_148 a ns1:Laptop ;
ns1:brand "Microsoft" ;
ns1:clock_speed "1.8"^^xsd:float ;
ns1:comments """Laptop/Tablet: Go from tablet to laptop in a snap with the multi-position Kickstand and improved keyboard. (to be purchased separately)\r
Integrated Graphics\r
Full HD Display\r
""" ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 128 ;
ns1:hd_type "ssd" ;
ns1:id 148 ;
ns1:model "Surface Pro 4 CR5-00028" ;
ns1:os "windows" ;
ns1:price 66500 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 4 ;
ns1:screen_size "12.3"^^xsd:float ;
ns1:weight "0.78"^^xsd:float .
ns1:Laptop_149 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "1.8"^^xsd:float ;
ns1:graphic_card_brand "nvidia" ;
ns1:hd_size 64 ;
ns1:hd_type "ssd" ;
ns1:id 149 ;
ns1:model "E4X93PA" ;
ns1:os "windows" ;
ns1:price 41599 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 2 ;
ns1:screen_size "10.1"^^xsd:float ;
ns1:weight "1.26"^^xsd:float .
ns1:Laptop_15 a ns1:Laptop ;
ns1:brand "Dell" ;
ns1:clock_speed "1.8"^^xsd:float ;
ns1:comments "Integrated Graphics" ;
ns1:graphic_card_brand "amd" ;
ns1:hd_size 500 ;
ns1:hd_type "hdd" ;
ns1:id 15 ;
ns1:model "Inspiron 15 3565" ;
ns1:os "linux" ;
ns1:price 20990 ;
ns1:processor_brand "amd" ;
ns1:processor_model "E2" ;
ns1:ram 4 ;
ns1:screen_size "15.0"^^xsd:float ;
ns1:weight "2.3"^^xsd:float .
ns1:Laptop_150 a ns1:Laptop ;
ns1:brand "HP" ;
ns1:clock_speed "2.0"^^xsd:float ;
ns1:graphic_card_brand "amd" ;
ns1:hd_size 1024 ;
ns1:hd_type "hdd" ;
ns1:id 150 ;
ns1:model "15-AY079TX" ;
ns1:os "windows" ;
ns1:price 41850 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i3" ;
ns1:ram 8 ;
ns1:screen_size "15.6"^^xsd:float ;
ns1:weight "2.2"^^xsd:float .
ns1:Laptop_151 a ns1:Laptop ;
ns1:brand "Microsoft" ;
ns1:clock_speed "1.8"^^xsd:float ;
ns1:comments """Laptop/Tablet: Go from tablet to laptop in a snap with the multi-position Kickstand and improved keyboard. (to be purchased separately)\r
Integrated Graphics\r
Surface Pen included""" ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 256 ;
ns1:hd_type "ssd" ;
ns1:id 151 ;
ns1:model "Surface Pro 4 CR3-00022" ;
ns1:os "windows" ;
ns1:price 88900 ;
ns1:processor_brand "intel" ;
ns1:processor_model "i5" ;
ns1:ram 8 ;
ns1:screen_size "12.3"^^xsd:float ;
ns1:weight "0.79"^^xsd:float .
ns1:Laptop_152 a ns1:Laptop ;
ns1:brand "Acer" ;
ns1:clock_speed "1.44"^^xsd:float ;
ns1:graphic_card_brand "intel" ;
ns1:hd_size 32 ;
ns1:hd_type "ssd" ;
ns1:id 152 ;
ns1:model "Aspire SW3-016 " ;
ns1:os "windows" ;
ns1:price 13872 ;
ns1:processor_brand "intel" ;
ns1:processor_model "Atom Z8300" ;
ns1:ram 2 ;
ns1:screen_size "10.1"^^xsd:float ;
ns1:weight "1.2"^^xsd:float .
ns1:Laptop_153 a ns1:Laptop ;
ns1:brand "Microsoft" ;
ns1:clock_speed "1.8"^^xsd:float ;