diff --git a/PCData/canada_computers.py b/PCData/canada_computers.py new file mode 100644 index 0000000..6f5da31 --- /dev/null +++ b/PCData/canada_computers.py @@ -0,0 +1,146 @@ +""" +This file is used to crawl Canada Computers items +""" +import json +import re +from pathlib import Path +from typing import NamedTuple + +import js2py +import pandas as pd +import requests +from bs4 import BeautifulSoup, Tag, ResultSet +from hypy_utils import nlp_utils +from hypy_utils.logging_utils import setup_logger +from hypy_utils.nlp_utils import substr_between +from hypy_utils.tqdm_utils import tmap +from js2py.internals.simplex import JsException + +log = setup_logger() + + +def get_match(pattern: str | re.Pattern, html: str) -> str | None: + """ + Get the first match of a pattern in html + + :param pattern: regex pattern + :param html: html to search in + """ + match = re.search(pattern, html) + if match is None: + return None + return match.group(1) + + +RE_ID = re.compile(r'data-item-id="(\d+)"') + + +class Product(NamedTuple): + id: int + item_id: str + name: str + brand: str + categories: list[str] + price: float + specs: dict[str, str] + + +def crawl_page(url: str, p: int) -> list[Product]: + """ + Crawl a page of Canada Computers items + + :param url: URL of an item listing page + :param p: Page number + :return: list of Product + """ + items = [] + log.info(f"Crawling page {p}") + page = requests.get(url, params={"page": p, "ajax": "true"}) + # We can't use BS4 because the html contains json that is not properly escaped + + # Find productTemplate + products: list[str] = page.text.split("
') + js = f"a = {js}; a" + p = js2py.eval_js(js)['items'][0] + + # Get specs + specs_html = substr_between(product, """
") + specs_html = BeautifulSoup(specs_html, "html.parser") + specs = [li.text.strip().split(":", 1) for li in specs_html.findAll("li")] + specs = {k.strip(): v.strip() for k, v in specs} + + items.append(Product( + id=id, + item_id=p['item_id'], + name=p['item_name'], + brand=p['item_brand'], + categories=[p['item_category'], p['item_category_2'], p['item_category_3'], p['item_category_4']], + price=float(p['price']), + specs=specs + )) + log.debug(f"> Got: {items[-1].name}") + + except ValueError: + log.warning("Failed to parse product") + continue + + except JsException as e: + log.warning(f"JsException: {e}") + continue + + except Exception as e: + log.warning(f"Exception: {e}") + continue + + return items + + +def crawl_url(url: str): + """ + Crawl Canada Computers items + + :param url: url to crawl + """ + file = Path("data/canada_computers_laptops.csv") + + if file.exists(): + return pd.read_csv(file) + + items = [] + i = 0 + batch_size = 20 + while True: + r = list(range(i * batch_size + 1, (i + 1) * batch_size + 1)) + log.info(f"Crawling batch {i}") + + # Get batch + batch = tmap(lambda p: crawl_page(url, p), r, max_workers=10) + + # Flatten + items += [item for sublist in batch for item in sublist] + + # If at least one batch is empty, we are done + if any([len(b) == 0 for b in batch]): + log.info(f"Done at batch {i}") + break + + i += 1 + + file.parent.mkdir(parents=True, exist_ok=True) + df = pd.DataFrame(items) + df.to_csv(file, index=False) + + return items + + +if __name__ == '__main__': + # cPath 710 is laptops + crawl_url("https://www.canadacomputers.com/index.php?cPath=710") diff --git a/PCData/data/canada_computers_laptops.csv b/PCData/data/canada_computers_laptops.csv new file mode 100644 index 0000000..6d7e7e2 --- /dev/null +++ b/PCData/data/canada_computers_laptops.csv @@ -0,0 +1,609 @@ +id,item_id,name,brand,categories,price,specs +234878,LPASU00715,"ASUS TUF F15 Gaming Laptop 15.6"" FHD Intel i9-13900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, FX507VV-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1499.0,"{'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +239821,LPACE00967,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i9-12900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, NH.QM0AA.003",ACER,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +241721,LPLEN03469,"Lenovo Legion Pro 5i Gaming Laptop 16"" QHD+ Intel i7-13700HX GeForce RTX 4060 16GB 512GB Windows 11 Home, 82WK00K7CC",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +245321,LPHEW02100,"HP 15-fd0030ca Consumer Laptop 15.6"" FHD Intel i5-1340P 16GB 512GB SSD Windows 11 Home, 8M5P0UA#ABL",HP,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +245308,LPGIG00162,"GIGABYTE G5 KF Gaming Laptop 15.6"" FHD 144Hz Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, G5 KF5-G3US353SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1099.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +230569,LPHEW01946,"HP ProBook 450 G9 15.6"" Business Notebook Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",899.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P0UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}" +241145,LPMSI00572,"MSI Thin GF63 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +243411,LPLEN03502,"LENOVO IdeaPad Slim 3 Consumer Laptop 15.6"" AMD Ryzen 5 7520U 16GB 512GB SSD Windows 11 Home, 82XQ00BECC",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'AMD Radeon 610M', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +243633,LPACE00980,"ACER Nitro 5 Gaming Laptop 15.6"" 144Hz AMD Ryzen 7 5800H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home",ACER,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 3060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +240323,LPHEW02049,"HP EliteBook 840 G2 Business Notebook 14"" Touchscreen Core i5-5300U,16 GB DDR3, 256 GB SSD, Windows 10 Professional Refurbished",HP,"['Laptops, Tablet', None, None, None]",269.0,"{'Memory': '16GB', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'FHD'}" +243416,LPLEN03503,"Lenovo Legion Slim 7i Gaming Laptop 16"" QHD 240Hz Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, 82Y3007HCC",LENOVO,"['Laptops, Tablet', None, None, None]",2299.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}" +235073,LPMSI00539,"MSI Katana 15 Gaming Laptop 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, B12VFK-237CA",MSI,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +243636,LPACE00981,"ACER Aspire 5 Consumer Laptop 15.6"" AMD Ryzen 3 5300U 8GB 256GB SSD Windows 11 S, A515-45-R4RP",ACER,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" +229726,LPASU00666,"Asus Vivobook 16 Laptop 16"" WUXGA AMD Ryzen 5 5600H AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, M1603QA-RH51-CA",ASUS,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}" +239822,LPACE00968,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, NH.QM0AA.004",ACER,"['Laptops, Tablet', None, None, None]",1099.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +234397,LPHEW01967,"HP ProBook 440 G9 14"" Business Laptop Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",749.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6J8Q6UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1920 x 1080', 'General InformationBrand Name': 'HP'}" +239788,LPLEN03438,"Lenovo Legion Pro 5 Gaming Notebook 16"" 165Hz WQXGA AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WM005VCC",LENOVO,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +242615,LPLEN03487,"Lenovo ThinkPad E16 Business Laptop 16"" FHD Intel i7-1355U 16GB 512GB SSD Windows 11 Pro, 21JN0073US",LENOVO,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '16GB', 'Model': 'ThinkPad E16', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1200', 'Refresh Rate': '60Hz'}" +243491,LPHEW02087,"HP Victus 15-fb0000ca Gaming Laptop 15.6"" 144Hz AMD Ryzen 5 5600H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 11 Home, 89A37UA#ABL",HP,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +239806,LPMSI00564,"MSI Bravo 15 Gaming Laptop 15.6"" FHD AMD Ryzen 7 7735HS GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, C7VFK-057CA",MSI,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Ge Force RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '15.6""'}" +242954,LPLEN03493,"LENOVO Thinkbook T490 Business Laptop 14"" Intel i5-8365U 16GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +242916,LPASU00786,"ASUS Vivobook 16X Laptop 16"" Intel i5-1235U 8GB 512GB SSD Windows 11 Home, X1605ZA-DB51-CA",ASUS,"['Laptops, Tablet', None, None, None]",649.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}" +238858,LPHEW02028,"HP Consumer Laptop 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, 15-fc0040ca",HP,"['Laptops, Tablet', None, None, None]",849.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 7730U'}" +245318,LPHEW02099,"HP 17-cn3020ca Consumer Laptop 17.3"" FHD Intel i5-1335U 16GB 512GB SSD Windows 11 Home, 8N3T7UA#ABL",HP,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +248768,LPLEN03685,"Lenovo IdeaPad Slim 3 15AMN8 Laptop 15.6"" FHD AMD Ryzen 3 7320U 8GB 256GB SSD Windows 11 S, 82XQ001JCF",LENOVO,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" +245788,LPLEN03569,"Lenovo V14 Business Laptop 14"" FHD Ryzen 5 5500U 16GB 512GB SSD Windows 11 Pro, 83FG0004US",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +239703,LPMSI00553,"MSI Vector GP68HX Gaming Notebook 16"" Intel i9-12900HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home, 12VH-012CA",MSI,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}" +242479,LPASU00784,"ASUS Vivobook 15 OLED Consumer Laptop 15.6"" AMD Ryzen 7 7730U 16GB 512GB SSD Windows 11 Home, M1505YA-DB71-CA",ASUS,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +234953,LPASU00720,"ASUS ROG Strix G17 Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4060 16GB 1TB SSD Windows 11 Home, G713PV-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'RTX\xa04060', 'Maximum Resolution': '2560X1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +245791,LPMSI00593,"MSI Katana 17 Gaming Laptop 17.3"" 144Hz Intel i7-13620H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B13VGK-645CA",MSI,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +239779,LPLEN03433,"Lenovo Legion Pro 5 Gaming Laptop 16"" AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WM005YCC",LENOVO,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +241425,LPMSI00575,"MSI Modern 15 Consumer Laptop 15.6"" FHD Intel i7-1255U Intel Iris Xe 16GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +237444,LPASU00752,"Asus Vivobook 17 Consumer Notebook 17.3"" FHD Intel i7-1165G7 Intel Iris Xe Graphics 8GB 512GB SSD Windows 11 Home, X712EA-MS72-CA",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}" +245636,LPLEN03567,"LENOVO ThinkPad X1 Gen 3 Business Laptop 13"" Detachable (2 in 1) QHD Intel i7-8550U 16GB 256GB SSD Windows 11 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13""'}" +234880,LPASU00716,"ASUS TUF F15 Gaming Notebook 15.6"" FHD Intel i7-12700H RTX 3050 16GB 512GB SSD Windows 11 Home, FX507ZC4-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1099.0,"{'GPU': 'RTX\xa03050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +229230,LPHEW01929,"HP ProBook 440 G9 14"" Business Laptop FHD Intel Core i5-1235U 8GB RAM 256GB SSD Silver Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",599.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687M8UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '440 G9'}" +216029,LPASU00560,"ASUS ExpertBook B1 Business Laptop 14"" Intel i5-1135G7 8GB 256GB SSD Windows 10 Pro, 3YR Warranty, 1YR ADP",ASUS,"['Laptops, Tablet', None, None, None]",799.0,"{'Screen Size': '14""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +237316,LPLEN03390,"LENOVO ThinkPad T14 G3 Business Laptop 14"" Touchscreen Ryzen 5 Pro 6650U AMD Radeon 660M 16GB 256GB SSD Windows 10 Pro, 21CF000CUS",LENOVO,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'AMD Radeon 660M', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +244770,LPACE00984,"ACER Aspire 3 Consumer Laptop 15.6"" FHD Intel i5-1235U 16GB 512GB SSD Windows 11 Home, A315-59-59UU",ACER,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +234684,LPASU00707,"ASUS Zenbook OLED Touchscreen Consumer Notebook 14"" WQXGA AMD Ryzen 7 7730U AMD Radeon 16GB 1TB SSD Windows 11 Home, UM3402YAR-DS71T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'AMD Radeon', 'Maximum Resolution': '2880X1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +234408,LPASU00688,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD Intel Core i9-13900H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, FX507VU-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce\xa0RTX\xa04050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +239785,LPLEN03435,"Lenovo Legion Pro 5 Gaming Laptop 16"" Intel i7-13700HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WK00H9CC",LENOVO,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +243968,LPLEN03518,"LENOVO Thinkbook T480s Business Notebook 14"" FHD Intel i5-8350U 16GB 256GB SSD Windows 11 Pro, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +235074,LPMSI00540,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 12VE-033CA",MSI,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +246281,LPLEN03573,"LENOVO ThinkPad T490 Business Laptop 14"" FHD Intel i7-8550U Intel UHD Graphics 620 16GB 256GB SSD Windows 11 Pro, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +245558,LPLEN03565,"LENOVO Legion Pro 5 16ARX8 Gaming Laptop 16"" 165Hz QHD Ryzen 7 7745HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WM005UCC",LENOVO,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +243681,LPHUA00042,"HUAWEI Matebook D14 Consumer Laptop 14"" Intel i7-1360P 16GB 1TB SSD Windows 11 Home, 53013VBB",HUAWEI,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +242315,LPHEW02076,"HP Victus Gaming Notebook 16.1"" AMD Ryzen 5 7640HS GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 7X7B1UA#ABL",HP,"['Laptops, Tablet', None, None, None]",999.0,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +239808,LPMSI00565,"MSI Bravo 15 Gaming Notebook 15.6"" AMD Ryzen 7 7735HS GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, C7VEK-058CA",MSI,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +247065,LPLEN03578,"Lenovo Yoga L390 Business Laptop 13.3"" Touchscreen FHD Intel i5-8365U 16GB 256GB SSD Windows 11 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" +239726,LPMSI00560,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home,12VF-275CA",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +239720,LPMSI00555,"MSI Stealth 15 Gaming Notebook 15.6"" QHD OLED Intel i9-13900H GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, A13VF-071CA",MSI,"['Laptops, Tablet', None, None, None]",2199.0,"{'Maximum Resolution': '2560 x 1440', 'GPU': 'GeForce RTX 4060', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '15.6""'}" +234898,LPASU00719,"ASUS ROG Strix Gaming Notebook 17.3"" FHD AMD Ryzen 9 7945HX RTX 4050 16GB 1TB SSD Windows 11 Home, G713PU-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +241844,LPASU00782,"ASUS Vivobook Go Consumer Notebook 15.6"" AMD Ryzen 3 7320U 8GB 128GB SSD Windows 11 S, E1504FA-DB31-CA-SL",ASUS,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" +216483,LPASU00581,"Asus ExpertBook B1 15.6"" Business Laptop FHD Intel i5-1135G7 8 GB 256 GB SSD Windows 11 Pro, 3YR Warranty, 1YR ADP",ASUS,"['Laptops, Tablet', None, None, None]",599.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1500CEAE-Q53WP-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1500'}" +234968,LPASU00724,"ASUS ROG Zephyrus Gaming Notebook 16"" WQXGA Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, GU604VI-DS92-CA",ASUS,"['Laptops, Tablet', None, None, None]",2499.0,"{'Refresh Rate': '240Hz', 'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB'}" +238751,LPASU00760,"ASUS Vivobook 16X Gaming Laptop 16"" WUXGA Intel i9-13900H Geforce RTX 4050 16GB 512GB SSD Windows 11 Home, K3605VU-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'Geforce RTX 4050', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +238748,LPHEW02023,"HP Consumer Notebook 14"" FHD AMD Ryzen 5 7520U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 14-em0040ca",HP,"['Laptops, Tablet', None, None, None]",599.0,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 5 7520U'}" +235326,LPHEW01997,"HP ENVY X360 13.3"" OLED Touchscreen 2 in 1 Laptop QHD i7-1250U 16GB 1TB SSD Windows 11 Home, 6J0Q0UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1299.0,"{'Memory': '16GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2880 x 1800', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" +234958,LPASU00721,"ASUS ROG Strix Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4080 32GB 1TB SSD Windows 11 Pro, G733PZ-XS96",ASUS,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'RTX\xa04080', 'Maximum Resolution': 'WQHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" +240054,LPASU00770,"ASUS ROG Zephyrus G14 Gaming Notebook 14"" QHD AMD Ryzen 9 7940HS GeForce RTX 4080 16GB 1TB SSD Windows 11 Home, GA402XZ-CS94",ASUS,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +201084,LPASU00500,"Asus ExpertBook B1 14"" Laptop Intel i5 1135G7 8 GB 256 GB SSD Windows 10 Home, B1400CEAE-Q51H-CB",ASUS,"['Laptops, Tablet', None, None, None]",549.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1400CEAE-Q51H-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1400'}" +216700,LPASU00590,"ASUS Vivobook 14 Flip Notebook, 14"" FHD touch Screen, Intel Celeron N4500, Intel UHD Graphics, 4GB DDR4, 128GB SSD, Win11 Home, J1400KA-DS01T-CA",ASUS,"['Laptops, Tablet', None, None, None]",499.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Convertible (2 in 1)', 'Screen Size': '14""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4500'}" +238836,LPASU00763,"ASUS Vivobook S 16 Flip Consumer Notebook 16"" WUXGA Intel i5-1335U Intel HD Graphics 16GB 512GB SSD Windows 11 Home, TP3604VA-DS51T-CA",ASUS,"['Laptops, Tablet', None, None, None]",949.0,"{'Refresh Rate': '60Hz', 'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +244726,LPASU00800,"ASUS Vivobook S 15 OLED BAPE Edition Consumer Notebook 15.6"" QHD+ Intel i9-13900H 16GB 1TB SSD Windows 11 Home, K5504VA-DB91-CA-BAPE",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '2880 x 1620', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +243074,LPASU00787,"ASUS TUF Gaming Notebook 15.6"" 144Hz Intel i5-11400H GeForce RTX 3050 8GB 512GB SSD Windows 11 Home, FX506HCB-DB59-CA",ASUS,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +246436,LPASU00808,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD 144Hz Intel i7-11800H GeForce RTX 3050 Ti 16GB 1TB SSD Windows 11 Home, FX506HE-EH74",ASUS,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +234939,LPGIG00145,"Gigabyte AORUS 17X Gaming Notebook 17.3"" QHD Intel Core i9-13900HX GeForce RTX 4080 16GB 1TB SSD Windows 11 Pro, AXF-B4US694SP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '17.3""'}" +241534,LPMSI00580,"MSI Pulse 17 Gaming Notebook 17.3"" Intel i9-13900H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, B13VGK-619CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +236109,LPGIG00151,"Gigabyte AORUS 15 Gaming Notebook 15.6"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +234951,LPGIG00146,"Gigabyte AORUS 17H Gaming Notebook 17.3"" FHD Intel i7-13700H RTX 4080 16GB 1TB SSD Windows 11 Home, BXF-74US554SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'RTX 4080', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +249823,LPMSI00598,"MSI Prestige 16 AI EVO Laptop 16"" QHD+ OLED Intel Core Ultra 7-155H Intel Arc Graphics 16GB 1TB SSD Windows 11 Home, B1MG-006CA",MSI,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'Intel Arc Graphics', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +243952,LPLEN03517,"Lenovo ThinkPad X1 Carbon EVO 14"" Touchscreen Ultrabook WUXGA Intel i7-1365U 32GB RAM 512GB SSD Windows 11 Pro 21HM000SUS",LENOVO,"['Laptops, Tablet', None, None, None]",1999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HM000SUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Carbon Gen 11'}" +234980,LPASU00729,"ASUS Zephyrus Duo Gaming Notebook 16"" WQXGA AMD Ryzen 9 7945HX RTX 4080 32GB 1TB SSD Windows 11 Pro, GX650PZ-XS96",ASUS,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'RTX\xa04080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +224436,LPLEN03010,"Lenovo ThinkBook 14 G4 14"" Touchscreen Business Laptop Intel i7-1255U 16 GB 512 GB Windows 11 Pro, 21DH000VUS",LENOVO,"['Laptops, Tablet', None, None, None]",1099.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DH000VUS', 'GPU': 'Intel', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Maximum Resolution': '1080p Full HD', 'General InformationBrand Name': 'Lenovo'}" +243731,LPMSI00591,"MSI Stealth 16 AMG Gaming Notebook 16"" OLED UHD Intel i9-13900H GeForce RTX 4070 32GB 2TB SSD Windows 11 Pro, A13VG-237CA",MSI,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +247961,LPACE00994,"ACER Vero Laptop 15.6"" FHD Intel i7-1255U Intel Iris Xe Graphics 16GB 1TB SSD Windows 11 Home, Open Box, AV15-52-791N",ACER,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +243093,LPHEW02083,"HP EliteBook 640 G9 Business Notebook 14"" Intel i5-1245U 16GB 512GB SSD Windows 11 Pro, 6C0Z2UT#ABL",HP,"['Laptops, Tablet', None, None, None]",1195.9599990845,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +238118,LPLGE00032,"LG Gram EVO Consumer Notebook 16"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 16Z90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +221451,LPLEN02908,"Lenovo ThinkBook 14 G4 ABA 14"" Business Laptop AMD Ryzen 7 5825U 16 GB 512 GB Windows 11 Pro, 21DK000LUS",LENOVO,"['Laptops, Tablet', None, None, None]",799.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DK000LUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14 G4 ABA'}" +246185,LPLEN03572,"LENOVO Legion Pro 7 16IRX8H Laptop 16"" QHD Intel i9-13900HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Pro, 82WQ00AAUS",LENOVO,"['Laptops, Tablet', None, None, None]",4799.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +234966,LPASU00723,"ASUS ROG Zephyrus Gaming Notebook 14"" WUXGA AMD Ryzen 7 7735HS RTX 3050 16GB 512GB SSD Windows 11 Home, GA402NJ-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'RTX\xa03050', 'Maximum Resolution': '1920X1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +234853,LPMSI00535,"MSI Stealth 17 Gaming Notebook 17.3"" QHD Intel i9-13900H GeForce RTX 4090 64GB 2TB SSD Windows 11 Pro, A13VI-017US",MSI,"['Laptops, Tablet', None, None, None]",4399.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17.3""'}" +247061,LPLEN03577,"Lenovo ThinkPad T480 Business Laptop 14"" FHD Intel i5-8365U 16GB 512GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +245326,LPHEW02101,"HP 14-ep0000ca Consumer Notebook 14"" FHD Intel i3-N305 8GB 256GB SSD Windows 11 Home, 8M5K7UA#ABL",HP,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}" +243100,LPLEN03497,"Lenovo ThinkPad X1 Carbon 14"" EVO WUXGA Ultrabook Intel i5-1335U 16GB RAM 256GB SSD Deep Black Windows 11 Pro, 21HM000GUS",LENOVO,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel', 'Maximum Resolution': 'Others', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +238753,LPASU00762,"ASUS Vivobook Slate Consumer Notebook 13.3"" OLED Intel Pentium Silver Processor N6000 Intel UHD Graphics 8GB 128GB SSD Windows 11 S, T3300KA-DS92T-CA",ASUS,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '13.3""'}" +238120,LPLGE00033,"LG Gram EVO Consumer Notebook 17"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home,17Z90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17""'}" +234881,LPASU00717,"ASUS ROG Strix Gaming Notebook 16"" FHD Intel i7-13650HX RTX 3050 16GB 1TB SSD Windows 11 Home, G614JJ-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +237090,LPACE00960,"ACER Predator Helios Gaming Notebook 16"" QHD Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, PH16-71-72YG",ACER,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Refresh Rate': '240Hz', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" +225212,LPLEN03055,"Lenovo ThinkBook 15 G4 15.6"" Touchscreen Business Notebook, FHD, Intel Core i5-1235U, 16GB RAM, 256GB SSD, Mineral Gray Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",899.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DJ000XUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 IAP'}" +241937,LPLEN03476,"Lenovo ThinkBook 14s Yoga G3 14"" Touchscreen Convertible Laptop Intel Core i7-1355U 16GB RAM 512GB SSD Windows 11 Pro, 21JG001GCA",LENOVO,"['Laptops, Tablet', None, None, None]",1379.9599990845,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JG001GCA', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14s Yoga G3 IRU'}" +241934,LPLEN03474,"Lenovo ThinkPad E16 16"" Business Notebook Intel i5-1335U 16 GB 256 GB SSD Windows 11 Pro, 21JN003YUS",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JN003YUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E16 Gen 1'}" +239693,LPMSI00548,"MSI Vector GP78 HX Gaming Notebook 17"" QHD Intel i9-13950HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17""'}" +235429,LPASU00736,"ASUS ROG Zephyrus Gaming Notebook 16"" WQXGA Intel i9-13900H RTX 4090 32GB 2TB SSD Windows 11 Pro, GU604VY-XS97",ASUS,"['Laptops, Tablet', None, None, None]",4199.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +249839,LPLEN03710,"Lenovo ThinkPad T14 Business Laptop 14"" FHD Intel i5-10310U 16GB 512GB SSD Windows 10 Pro Refurbished, 20S1S4R500",LENOVO,"['Laptops, Tablet', None, None, None]",649.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +239889,LPHEW02036,"HP Omen 17-ck2000ca Gaming Notebook 17.3"" QHD Intel i9-13900HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Home",HP,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}" +249845,LPLEN03712,"Lenovo Yoga L390 Business convertible Laptop 13.3"" Touchscreen FHD Intel i5-8365U 16GB 256GB SSD Windows 11 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" +249843,LPLEN03711,"Lenovo X1 Carbon Business Laptop 14"" FHD Intel i7-8665U 16GB 256GB SSD Windows 10 Pro Refurbished,",LENOVO,"['Laptops, Tablet', None, None, None]",649.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +249484,LPACE00999,"ACER Predator Triton X Gaming Laptop 17"" QHD Mini-LED 250Hz Intel i9-13900HX GeForce RTX 4090 64GB 2TB SSD Windows 11 Home, PTX17-71-99W5",ACER,"['Laptops, Tablet', None, None, None]",4999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '64GB', 'Screen Size': '17""'}" +248458,LPLEN03611,"Lenovo ThinkBook 14 G6 ABP 21KJ000EUS 14"" Touchscreen Notebook - WUXGA - 1920 x 1200 - AMD Ryzen 7 7730U Octa-core (8 Core) 2 GHz - 16 GB Total RAM - 512 GB SSD - Arctic Gray - AMD Chip - Windows 11 Pro - AMD Radeon Graphics - In-plane Switching (IPS) Tec",LENOVO,"['Laptops, Tablet', None, None, None]",899.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21KJ000EUS', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14 G6 ABP', 'General InformationProduct Model': '21KJ000EUS'}" +248439,LPLEN03602,"Lenovo ThinkBook G6 16"" Business Laptop WUXGA 1920x1200 Intel Core i5-1335U 16GB RAM 256GB SSD Windows 11 Pro 21KH0005US",LENOVO,"['Laptops, Tablet', None, None, None]",1119.2,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21KH0005US', 'Memory': '16GB', 'General InformationBrand Name': 'Lenovo', 'Screen Size': '16""', 'General InformationProduct Line': 'ThinkBook'}" +248434,LPLEN03600,"Lenovo ThinkBook 16 G6 ABP 21KK0009US 16"" Touchscreen Notebook - WUXGA - 1920 x 1200 - AMD Ryzen 5 7530U Hexa-core (6 Core) 2 GHz - 16 GB Total RAM - 512 GB SSD - Arctic Gray - AMD Chip - Windows 11 Pro - AMD Radeon Graphics - In-plane Switching (IPS) Tec",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21KK0009US', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '16 G6 ABP', 'General InformationProduct Model': '21KK0009US'}" +243931,LPLEN03508,"Lenovo ThinkPad E14 Gen 5 21JR001QUS 14"" Notebook - WUXGA - 1920 x 1200 - AMD Ryzen 5 7530U Hexa-core (6 Core) 2 GHz - 8 GB Total RAM - 8 GB On-board Memory - 256 GB SSD - Graphite Black - AMD Chip - Windows 11 Pro - AMD Radeon Graphics - In-plane Switchi",LENOVO,"['Laptops, Tablet', None, None, None]",1061.69,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JR001QUS', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5', 'General InformationProduct Model': '21JR001QUS'}" +238114,LPLGE00031,"LG Gram EVO Consumer Notebook 15.6"" FHD Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 15Z90R-P.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1599.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +238112,LPLGE00030,"LG Gram Consumer Notebook 14"" WUXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 14Z90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +231254,LPLEN03221,"Lenovo ThinkPad L13 Yoga 13.3"" Touchscreen Convertible 2 in 1 Laptop WUXGA Intel Core i7-1255U 16GB 512GB SSD Storm Gray Windows 11 Pro 21B5003XUS",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21B5003XUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'L13 Yoga Gen 3'}" +223345,LPLEN02956,"Lenovo ThinkBook 14 G4 ABA 14"" Business Notebook AMD Ryzen 5 5625U 16 GB 256 GB Windows 11 Pro, 21DK000JUS",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DK000JUS', 'Memory': '16GB', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Screen Size': '14""', 'General InformationBrand Name': 'Lenovo'}" +221960,LPHEW01833,"HP EliteBook 650 G9 15.6"" Business Notebook Intel i5-1245U 16 GB 256 GB SSD Windows 10 Professional, 6C0Z6UT#ABA",HP,"['Laptops, Tablet', None, None, None]",1103.9599990845,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z6UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'EliteBook', 'General InformationProduct Series': '650 G9'}" +221903,LPLGE00028,"LG Gram EVO Ultra-Lightweight Notebook , 16"" WQXGA, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 16T90Q-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",1619.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}" +203384,LPSAS00092,"Samsung Galaxy Tab S7 FE Tablet - 12.4"" WQXGA Cortex 6 GB 128 GB Mystic Black",SAMSUNG,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'Samsung', 'General InformationManufacturer Part Number': 'SM-T733NZKEXAC', 'General InformationBrand Name': 'Samsung', 'General InformationProduct Line': 'Galaxy Tab S7 FE', 'General InformationProduct Model': 'SM-T733', 'General InformationProduct Name': 'Galaxy Tab S7 FE (Wi-Fi)'}" +235970,LPGIG00147,"Gigabyte G5 Gaming Laptop 15.6"" FHD, Intel i5-12500H, GeForce RTX 4060, 8GB RAM, 512GB SSD, Windows 11 Home, G5 KF-E3US333SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +241481,LPCHP00003,"HP Elitebook 840 G3 Business Laptop 14"" Touchscreen Intel i5-6300U 16GB 256GB SSD Windows 10 Pro Refurbished",HP,"['Laptops, Tablet', None, None, None]",299.0,"{'GPU': 'Intel HD Graphics 520', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +239725,LPMSI00559,"MSI Thin GF63 Gaming Laptop 15.6"" Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 12VF-274CA",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +244218,LPHEW02095,"HP Victus 15-fb1010ca Gaming Laptop 15.6"" AMD Ryzen 5 7535HS GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, 8G9J1UA#ABL",HP,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +234149,LPASU00685,"ASUS VivoBook 14"" Laptop FHD Intel Core i3-1115G4 Intel UHD Graphics 4GB 128GB SSD Windows 11 Home S, F415EA-AS31",ASUS,"['Laptops, Tablet', None, None, None]",299.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home S', 'Memory': '4GB', 'Screen Size': '14""'}" +244755,LPLEN03559,"LENOVO ThinkPad T590 Business Laptop 15.6"" FHD Intel i5-8365U Intel UHD Graphics 620 16GB 512GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" +244918,LPACE00985,"Acer Swift 3 EVO 14"" Laptop FHD Intel i5-1240P 16GB 512GB SSD Windows 11 Home,",ACER,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +244027,LPCNO00061,"ASUS Vivobook F Series Laptop 15.6"" FHD Intel i5-1135G7 8GB 256GB SSD Windows 11 Home, F1500EA-WB51",ASUS,"['Laptops, Tablet', None, None, None]",597.95999908447,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +226088,LPASU00658,"ASUS ZenBook 14 Consumer Notebook 14"" FHD AMD Ryzen 5 5600H AMD Radeon Vega 7 8GB 512GB SSD Windows 11 Home, UM425QA-EH59-CA",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +239777,LPLEN03432,"LENOVO IdeaPad Flex 5 Consumer Notebook 16"" Touchscreen AMD Ryzen 5 7530U 16GB 512GB SSD Windows 11 Home, 82XY005ACC",LENOVO,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'AMD Radeon Graphics', 'Refresh Rate': '60Hz', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +214186,LPHUA00035,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, Intel Core i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 53012STE",HUAWEI,"['Laptops, Tablet', None, None, None]",699.88,"{'Screen Resolution Description': 'QHD', 'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz'}" +244384,LPLEN03552,"LENOVO X1 Yoga G4 Business Notebook 14"" FHD Intel i5-8265U 16GB 512GB SSD Windows 10 Pro, Pen Included, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +242776,LPASU00785,"ASUS TUF Gaming Notebook 17.3"" 144Hz Intel i5-11400H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, FX706HF-DB51-CA",ASUS,"['Laptops, Tablet', None, None, None]",799.0,"{'Memory': '8GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +246774,LPASU00809,"ASUS ROG Strix G16 Gaming Laptop 16"" QHD Intel i9-13980HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, G614JV-DB91-CA",ASUS,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +229248,LPLEN03130,"Lenovo Consumer Laptop 15.6"" FHD AMD Ryzen 5 5625U AMD Radeon Graphics 12GB 512GB SSD Windows 11 Home, 82RN0015CC",LENOVO,"['Laptops, Tablet', None, None, None]",699.88,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +238746,LPHEW02021,"HP Consumer Laptop 14"" FHD AMD Ryzen 3 7320U, Radeon Graphics, 8GB RAM, 256GB SSD, Windows 11 Home, 14-em0030ca",HP,"['Laptops, Tablet', None, None, None]",499.0,"{'Memory': '8GB', 'Model': '14-em0030ca', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '256GB'}" +221455,LPHEW01822,"HP ProBook 450 G9 15.6"" Business Notebook Intel i7-1255U 16GB 512GB SSD Windows 10 Pro, 687P3UT#ABA",HP,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P3UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}" +241155,LPLEN03456,"Lenovo IdeaPad Consumer Notebook 14"" FHD Intel i5-1135G7 8GB 512GB SSD Windows 11 Home, 81X700FXUS",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}" +245452,LPLEN03564,"LENOVO ThinkPad X1 Business Notebook 13.3"" Detachable (2 in 1) QHD Intel i7-8650U 16GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",549.0,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" +238839,LPASU00765,"ASUS Zenbook S 13 OLED EVO Laptop 13.3"" Intel i7-1355U 16GB 1TB SSD Windows 11 Home, UX5304VA-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'Intel Iris Xe', 'Refresh Rate': '60Hz', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +238601,LPHEW02017,"HP Pavilion Consumer Notebook 15.6"" FHD Intel i5-1240P Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 15-EG2002CA",HP,"['Laptops, Tablet', None, None, None]",630.88000488281,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'i5-1240P'}" +223242,LPMSI00496,"MSI GF63 Gaming Notebook 15.6"" FHD Intel i5-11400H RTX3050 8GB 512GB SSD Windows 11 Home,GF63 11UC-692",MSI,"['Laptops, Tablet', None, None, None]",799.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +239775,LPLEN03430,"Lenovo IdeaPad Slim 3 15.6"" Laptop AMD Ryzen 7 7730U 8GB 512GB SSD Windows 11 Home, 82XM007NCC",LENOVO,"['Laptops, Tablet', None, None, None]",599.88,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +242888,LPHEW02079,"HP Victus 16 Gaming Notebook 16.1"" AMD Ryzen 7 7840HS GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 7X7B2UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}" +239786,LPLEN03436,"Lenovo Legion Pro 5 Gaming Notebook 16"" WQXGA Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WK00H8CC",LENOVO,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +237086,LPACE00956,"Acer Nitro 5 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11, NH.QM0AA.001",ACER,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" +218561,LPASU00608,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Pentium Silver, Intel UHD Graphics 605, 8GB DDR4, 128GB SSD, Win11 Home, X515MA-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",399.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Pentium Silver'}" +239812,LPACE00966,"Acer Nitro 17 Gaming Notebook 17.3"" QHD AMD Ryzen 7 7735HS GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, NH.QL2AA.002",ACER,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}" +121579,LPLEN00182,"Lenovo ThinkPad T480s 14"" Notebook, Intel Core i7-8550U, 16 GB, 256 GB SSD, Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",437.96000671387,"{'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB', 'CPU': 'i7-8550U', 'Hard Drive Capacity': 'None', 'Notebook Type': 'Business Notebook'}" +234973,LPASU00726,"ASUS ROG Flow Gaming Notebook 13.4"" WQXGA AMD Ryzen 9 7940HS RTX 4050 16GB 1TB SSD Windows 11 Home, GV302XU-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}" +239729,LPMSI00563,"MSI Modern 15 Notebook 15.6"" FHD Intel i5-1155G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Home, B11M-046CA",MSI,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +238129,LPLEN03403,"LENOVO T480s Business Notebook 14"" FHD Intel i7-8550U Intel UHD Graphics 620 24GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",437.96000671387,"{'Refresh Rate': '60Hz', 'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '24GB'}" +238838,LPASU00764,"ASUS Zenbook 15 OLED Consumer Notebook 15.6"" OLED AMD Ryzen 7 7735U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, UM3504DA-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '2880 x 1620', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +230592,LPGIG00141,"Gigabyte AORUS 17 Gaming Notebook 17.3"" FHD Intel i7-12700H GeForce RTX 3080 Ti 32GB 1TB SSD Windows 11 Home, YE5-74US544SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 3080 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}" +239888,LPHEW02035,"HP Omen 16-wd0010ca Gaming Notebook 16.1"" FHD Intel i7-13620H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home",HP,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16.1""'}" +236114,LPGIG00152,"Gigabyte AORUS 15 Gaming Notebook 15.6"" QHD Intel Core i7-13700H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, BKF-73US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +239776,LPLEN03431,"Lenovo IdeaPad Slim 5 Consumer Notebook 16"" WUXGA Intel i5-1335U Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 82XF002TCC",LENOVO,"['Laptops, Tablet', None, None, None]",699.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}" +236553,LPGIG00155,"Gigabyte AERO 16 OLED Gaming Notebook 16"" UHD Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Pro, BSF-A3US964SP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840x2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +216772,LPMSI00445,"MSI Modern 15 Ultra Thin and Light Notebook, 15.6"" FHD Intel Core i5-1155G7, Intel Iris Xe, 8 GB DDR4, 256GB NVMe SSD, Windows 11 Home, Modern 15 A11MU-863CA",MSI,"['Laptops, Tablet', None, None, None]",483.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}" +154718,LPLEN00715,"Lenovo ThinkPad T490 14"" Notebook Intel i5-8365U FHD 16 GB RAM 256 GB SSD Windows 10 Pro (Refurbished)",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20N20043US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'T490'}" +238752,LPASU00761,"ASUS Vivobook Pro 16X OLED Gaming Notebook 16"" Intel i9-13980HX Geforce RTX 4070 32GB 1TB SSD Windows 11 Home, K6604JI-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",2799.0,"{'GPU': 'Geforce\xa0RTX\xa04070', 'Maximum Resolution': '3200 x 2000', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}" +236490,LPGIG00154,"Gigabyte AERO 14 Gaming Notebook 14"" QHD Intel Core i7-13700H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, BMF-72USBB4SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +234965,LPASU00722,"ASUS ROG Strix Gaming Notebook 18"" WQXGA Intel i9-13980HX RTX 4090 32GB 2TB SSD Windows 11 Pro, G834JY-XS97",ASUS,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '18""'}" +230617,LPLEN03202,"Lenovo ThinkPad X380 Yoga Business Notebook 13.3"" FHD Intel i5-8350U Integrated GPU 16GB 512GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",449.0,"{'GPU': 'Integrated', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" +241506,LPMSI00577,"MSI Prestige 13 Evo Business Notebook 13.3"" Intel i7-1360P 32GB 1TB SSD Windows 11 Pro",MSI,"['Laptops, Tablet', None, None, None]",1689.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '13.3""'}" +238841,LPASU00766,"ASUS Zenbook Pro 14 OLED Consumer Notebook 14.5"" OLED Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, UX6404VI-DS91-CA",ASUS,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '14.5""'}" +241572,LPASU00780,"ASUS Zenbook Consumer Notebook 14"" UHD Touchscreen OLED Intel i7-12700H 16GB 1TB SSD Windows 11 Home, UP5401ZA-DB71T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +241407,LPASU00779,"ASUS Zenbook 14X OLED Consumer Notebook 14"" Intel i7-12700H Intel Iris Xe 16GB 1TB SSD Windows 11 Home, UX5401ZA-DB71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 X 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +240964,LPLEN03452,"Lenovo 300e Yoga Chromebook Gen 4 82W20003US 11.6"" Touchscreen Convertible 2 in 1 Chromebook - HD - 1366 x 768 - Octa-core (ARM Cortex A76 Dual-core (2 Core) 2.05 GHz + Cortex A55 Hexa-core (6 Core) 2 GHz) - 4 GB Total RAM - 4 GB On-board Memory - 32 GB F",LENOVO,"['Laptops, Tablet', None, None, None]",412.41,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '82W20003US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': '300e Yoga Chromebook Gen 4', 'General InformationProduct Model': '82W20003US'}" +239773,LPLEN03428,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 3 7320U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home,82XQ007UCC",LENOVO,"['Laptops, Tablet', None, None, None]",499.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +237091,LPACE00961,"Acer Predator Helios Gaming Laptop 16"" QHD Intel i9-13900HX GeForce RTX 4080 32GB 1 TB SSD Windows 11,NH.QJSAA.002",ACER,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4080', 'Refresh Rate': '240Hz', 'Maximum Resolution': 'QHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '32GB'}" +234888,LPASU00718,"ASUS ROG Strix Gaming Notebook 16"" WQXGA Intel i9-13980HX RTX 4080 32GB 1TB SSD Windows 11 Pro, G634JZ-XS96",ASUS,"['Laptops, Tablet', None, None, None]",3499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +227682,LPGIG00137,"GIGABYTE AERO 16 Gaming Notebook 15.6"" OLED UHD Intel Core i9-12900H RTX 3080 Ti 64GB 2TB SSD Windows 11 Pro, YE5-A4US958HP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2999.0,"{'Memory': '64GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}" +196113,LPLEN02154,"LENOVO ThinkPad T14s G2 Business Notebook 14"" Intel i5-1135G7 8 GB 256GB SSD Windows 10 Pro, 20WM0085US",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'Manufacturer': 'Lenovo Group Limited', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': '.', 'Product Condition Short': '.', 'Screen Resolution Description': 'FHD'}" +239774,LPLEN03429,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 5 7520U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home, 82XQ007VCC",LENOVO,"['Laptops, Tablet', None, None, None]",549.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +239727,LPMSI00561,"MSI Bravo 15 Gaming Notebook 15.6"" FHD AMD Ryzen 7 7735HS GeForce RTX 3050 16GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",1299.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +238799,LPHEW02024,"HP Consumer Notebook 17.3"" FHD Intel i5-1335U Intel Iris Xe 8GB 1TB SSD Windows 11 Home, 17-cn3010ca",HP,"['Laptops, Tablet', None, None, None]",778.88000488281,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}" +236072,LPGIG00148,"Gigabyte AORUS Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US654SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +235100,LPASU00734,"ASUS Zenbook 14X Consumer Notebook 14"" OLED Intel i7-1260P GeForce MX550 16GB 512GB SSD Windows 11 Home, UX5400ZB-DS72T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce\xa0MX550', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +216707,LPASU00592,"ASUS Vivobook 15 Notebook, 15.6"" HD, AMD Ryzen 3 3250U, AMD Radeon Graphics, 8GB DDR4, 128GB SSD, Win11 Home, M515DA-DS31-CA",ASUS,"['Laptops, Tablet', None, None, None]",499.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'AMD Ryzen 3 3250U'}" +239728,LPMSI00562,"MSI Modern 15 Notebook 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 512GB SSD Windows 11 Home, B7M-097CA",MSI,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +235077,LPMSI00541,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, 12UDX-038CA",MSI,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +234156,LPASU00686,"ASUS TUF Gaming Notebook 16"" FHD AMD Ryzen 7 7735HS AMD Radeon RX 7600S 16GB 1TB SSD Windows 11 Home, FA617NS-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'AMD\xa0Radeon RX\xa07600S', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1920X1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +216703,LPASU00591,"ASUS Vivobook Go Notebook, 15.6"" HD, Intel Celeron N4020, Intel UHD Graphics 600, 4GB DDR4, 64GB SSD, Win11 S, L510MA-DS09-CA",ASUS,"['Laptops, Tablet', None, None, None]",259.0,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4020'}" +241456,LPHEW02058,"HP Victus 15-fa1000ca Gaming Notebook 15.6"" Intel i5-13500H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 7X7A3UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1099.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +240050,LPHEW02046,"HP Consumer Notebook 17.3"" FHD, Ryzen 3 3720U, AMD Radeon Graphics, 8GB, 512GB SSD, Windows 11 Home, 17-cp2030ca",HP,"['Laptops, Tablet', None, None, None]",584.88000488281,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}" +236573,LPASU00743,"ASUS Zenbook S 13 Flip OLED Business Notebook 13.3"" Touchscreen QHD Intel i7-1260P 16GB 1TB SSD Windows 11 Pro, UP5302ZA-XB71T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" +236557,LPGIG00157,"Gigabyte AERO 14 OLED Gaming Notebook 14"" QHD Intel i5-12500H RTX 4050 16GB 1TB SSD Windows 11 Home, 9MF-E2USBB4SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +236073,LPGIG00149,"Gigabyte AORUS 15X Gaming Notebook 15.6"" QHD Intel i9-13900HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, ASF-B3US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2199.88,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +238842,LPASU00767,"ASUS Zenbook Pro 14 Duo OLED Consumer Notebook 14.5"" OLED Intel i9-13900H GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, UX8402VV-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '14.5""'}" +238733,LPASU00759,"ASUS ProArt Studiobook Business Notebook 16"" OLED Intel i9-13980HX Geforce RTX 4070 32GB 1TB SSD Windows 11 Pro, H7604JI-XS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",3154.0,"{'GPU': 'Geforce\xa0RTX\xa04070', 'Maximum Resolution': '3200 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +236555,LPGIG00156,"Gigabyte AERO 16 OLED Gaming Notebook 16"" UHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US994SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840x2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +243943,LPLEN03512,"Lenovo ThinkBook 14s Yoga G3 14"" Touchscreen Convertible Notebook FHD Intel Core i7-1355U 16GB RAM 512GB SSD, Mineral Gray, Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JG001FUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14s Yoga G3 IRU'}" +234974,LPASU00727,"ASUS ROG Flow Gaming Notebook 16"" WQXGA Intel Core i9-13900H RTX 4050 16GB 1TB SSD Windows 11 Home, GV601VU-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2199.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +234827,LPMSI00531,"MSI TITAN GT77 Gaming Notebook 17.3"" UHD Intel i9-13980HX GeForce RTX 4090 128GB 4TB SSD Windows 11 Pro, GT77HX 13VI-042US",MSI,"['Laptops, Tablet', None, None, None]",6999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '3840x2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '128GB', 'Screen Size': '17.3""'}" +225016,LPLEN03042,"Lenovo ThinkBook 15 G4 15.6"" Touchscreen Notebook, FHD, Intel Core i7-1255U, 16GB RAM, 512GB SSD, Mineral Gray, Fingerprint Reader, Backlit Keyboard, Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DJ000VUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 IAP'}" +250551,LPASU00500OB,"Asus ExpertBook B1 14"" Laptop Intel i5 1135G7 8 GB 256 GB SSD Windows 10 Home, B1400CEAE-Q51H-CB(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",521.55,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1400CEAE-Q51H-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1400'}" +250418,LPASU00717OB,"ASUS ROG Strix Gaming Notebook 16"" FHD Intel i7-13650HX RTX 3050 16GB 1TB SSD Windows 11 Home, G614JJ-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1439.1,"{'GPU': 'RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +250334,LPLEN03685OB,"Lenovo IdeaPad Slim 3 15AMN8 Laptop 15.6"" FHD AMD Ryzen 3 7320U 8GB 256GB SSD Windows 11 S, 82XQ001JCF(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",426.55,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" +250119,LPHEW02147,"HP EliteBook 835 Laptop 13.3"" FHD AMD Ryzen 5 Pro 7540U AMD Radeon 740M Graphics 16GB 512GB SSD Windows 11 Pro",HP,"['Laptops, Tablet', None, None, None]",2149.0,"{'GPU': 'AMD Radeon 740M Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" +249975,LPLEN03577OB,"Lenovo ThinkPad T480 Business Laptop 14"" FHD Intel i5-8365U 16GB 512GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",449.1,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +249937,LPASU00830,"ASUS Zenbook 14 EVO OLED Laptop 14"" QHD+ Intel Core Ultra 5 125H Intel Arc™ Graphics 16GB 512GB SSD Windows 11 Home, UX3405MA-DS51T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel Arc™ Graphics', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +249890,LPASU00809OB,"ASUS ROG Strix G16 Gaming Laptop 16"" QHD Intel i9-13980HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, G614JV-DB91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +249876,LPLGE00028OB,"LG Gram EVO Ultra-Lightweight Notebook , 16"" WQXGA, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 16T90Q-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1538.89,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}" +249846,LPASU00721OB,"ASUS ROG Strix Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4080 32GB 1TB SSD Windows 11 Pro, G733PZ-XS96(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",3149.1,"{'GPU': 'RTX\xa04080', 'Maximum Resolution': 'WQHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" +249838,LPLEN03709,"Lenovo V15 G4 Business Laptop 15.6"" FHD Intel i7-1355U 16GB 1TB SSD Windows 11 Pro, 83A100E8US",LENOVO,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" +249837,LPLEN03708,"Lenovo V15 G4 Business Laptop 15.6"" FHD Intel i5-1335U 16GB 1TB SSD Windows 11 Pro, 83A100ECUS",LENOVO,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" +249836,LPLEN03707,"Lenovo V15 G4 Business Laptop 15.6"" FHD Intel i3-1315U Intel UHD Graphics 16GB 512GB SSD Windows 11 Pro, 83A100EGUS",LENOVO,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" +249835,LPLEN03706,"Lenovo V15 G4 Business Laptop 15.6"" FHD AMD Ryzen 5 5500U 16GB 512GB SSD Windows 11 Pro, 83CR000FUS",LENOVO,"['Laptops, Tablet', None, None, None]",899.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" +249816,LPRAZ00059,"RAZER Blade 14 Gaming Laptop 14"" QHD AMD Ryzen 9 7940HS GeForce RTX 4070 16GB 1TB SSD Windows 11 Home",RAZER,"['Laptops, Tablet', None, None, None]",3649.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +249777,LPHEW01929OB,"HP ProBook 440 G9 14"" Business Laptop FHD Intel Core i5-1235U 8GB RAM 256GB SSD Silver Windows 11 Pro(Open Box)",HP,"['Laptops, Tablet', None, None, None]",569.05,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687M8UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '440 G9'}" +249687,LPMSI00531OB,"MSI TITAN GT77 Gaming Notebook 17.3"" UHD Intel i9-13980HX GeForce RTX 4090 128GB 4TB SSD Windows 11 Pro, GT77HX 13VI-042US(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",6299.1,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '3840x2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '128GB', 'Screen Size': '17.3""'}" +249641,LPLEN03578OB,"Lenovo Yoga L390 Business Laptop 13.3"" Touchscreen FHD Intel i5-8365U 16GB 256GB SSD Windows 11 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",404.1,"{'GPU': 'Intel® UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" +249634,LPLEN03518OB,"LENOVO Thinkbook T480s Business Notebook 14"" FHD Intel i5-8350U 16GB 256GB SSD Windows 11 Pro, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +249531,LPLEN03430OB,"Lenovo IdeaPad Slim 3 15.6"" Laptop AMD Ryzen 7 7730U 8GB 512GB SSD Windows 11 Home, 82XM007NCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",569.89,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +249332,LPLEN03469OB,"Lenovo Legion Pro 5i Gaming Laptop 16"" QHD+ Intel i7-13700HX GeForce RTX 4060 16GB 512GB Windows 11 Home, 82WK00K7CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +249277,LPMSI00597,"MSI Prestige 13 EVO Laptop 13.3"" Intel i7-1360P 16GB 512GB SSD Windows 11 Home, A13M-215CA",MSI,"['Laptops, Tablet', None, None, None]",1399.0,"{'GPU': 'Iris Xe Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.3""'}" +248907,LPHEW01997OB,"HP ENVY X360 13.3"" OLED Touchscreen 2 in 1 Laptop QHD i7-1250U 16GB 1TB SSD Windows 11 Home, 6J0Q0UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1234.05,"{'Memory': '16GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2880 x 1800', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" +248901,LPLEN03573OB,"LENOVO ThinkPad T490 Business Laptop 14"" FHD Intel i7-8550U Intel UHD Graphics 620 16GB 256GB SSD Windows 11 Pro, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",494.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +248698,LPHEW02076OB,"HP Victus Gaming Notebook 16.1"" AMD Ryzen 5 7640HS GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 7X7B1UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",899.1,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +248202,LPLEN03565OB,"LENOVO Legion Pro 5 16ARX8 Gaming Laptop 16"" 165Hz QHD Ryzen 7 7745HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WM005UCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1529.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +248129,LPASU00560OB,"ASUS ExpertBook B1 Business Laptop 14"" Intel i5-1135G7 8GB 256GB SSD Windows 10 Pro, 3YR Warranty, 1YR ADP(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",759.05,"{'Screen Size': '14""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +248080,LPLEN03503OB,"Lenovo Legion Slim 7i Gaming Laptop 16"" QHD 240Hz Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, 82Y3007HCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",2069.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}" +247993,LPLEN03517OB,"Lenovo ThinkPad X1 Carbon EVO 14"" Touchscreen Ultrabook WUXGA Intel i7-1365U 32GB RAM 512GB SSD Windows 11 Pro 21HM000SUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1899.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HM000SUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Carbon Gen 11'}" +247894,TBLEN00004,"Lenovo Tab P11 2nd Gen 11.5"" 2K Tablet 4GB 128 GB Storm Grey",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'Processor': 'MediaTek Helio G99 (8C, 2x A76 @2.2GHz + 6x A55 @2.0GHz)', 'Graphics': 'Integrated ARM Mali-G57 MC2 GPU', 'Memory': '4GB', 'Storage': '128GB', 'Screen Size': '11.5""', 'Screen Resolution': '2000 x 1200'}" +247891,TBLEN00003,"Lenovo Tab M10 Plus 10.61"" 2K Tablet 4GB 64 GB Storm Grey",LENOVO,"['Laptops, Tablet', None, None, None]",269.0,"{'Color': 'Storm Grey', 'Graphics': 'Integrated ARM Mali-G52 MC2 GPU', 'Memory': '4GB', 'Processor': 'MediaTek Helio G80 (8C, 2x A75 @2.0GHz + 6x A55 @1.8GHz)', 'Refresh Rate': '60Hz', 'Screen Resolution': '2000 x 1200'}" +247821,LPGIG00156OB,"Gigabyte AERO 16 OLED Gaming Notebook 16"" UHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US994SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1979.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '3840x2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +247767,LPLEN03487OB,"Lenovo ThinkPad E16 Business Laptop 16"" FHD Intel i7-1355U 16GB 512GB SSD Windows 11 Pro, 21JN0073US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1139.05,"{'Memory': '16GB', 'Model': 'ThinkPad E16', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1200', 'Refresh Rate': '60Hz'}" +247756,LPGIG00137OB,"GIGABYTE AERO 16 Gaming Notebook 15.6"" OLED UHD Intel Core i9-12900H RTX 3080 Ti 64GB 2TB SSD Windows 11 Pro, YE5-A4US958HP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",2699.1,"{'Memory': '64GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}" +247647,LPASU00808OB,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD 144Hz Intel i7-11800H GeForce RTX 3050 Ti 16GB 1TB SSD Windows 11 Home, FX506HE-EH74(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +247646,LPASU00762OB,"ASUS Vivobook Slate Consumer Notebook 13.3"" OLED Intel Pentium Silver Processor N6000 Intel UHD Graphics 8GB 128GB SSD Windows 11 S, T3300KA-DS92T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '13.3""'}" +247634,LPASU00786OB,"ASUS Vivobook 16X Laptop 16"" Intel i5-1235U 8GB 512GB SSD Windows 11 Home, X1605ZA-DB51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",616.55,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}" +247631,LPACE00984OB,"ACER Aspire 3 Consumer Laptop 15.6"" FHD Intel i5-1235U 16GB 512GB SSD Windows 11 Home, A315-59-59UU(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +247443,LPGIG00162OB,"GIGABYTE G5 KF Gaming Laptop 15.6"" FHD 144Hz Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, G5 KF5-G3US353SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",989.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +247381,LPMSI00593OB,"MSI Katana 17 Gaming Laptop 17.3"" 144Hz Intel i7-13620H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B13VGK-645CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +247266,LPHEW02100OB,"HP 15-fd0030ca Consumer Laptop 15.6"" FHD Intel i5-1340P 16GB 512GB SSD Windows 11 Home, 8M5P0UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +247121,LPLEN03429OB,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 5 7520U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home, 82XQ007VCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",522.49,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +247031,LPLEN03569OB,"Lenovo V14 Business Laptop 14"" FHD Ryzen 5 5500U 16GB 512GB SSD Windows 11 Pro, 83FG0004US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +247014,LPASU00581OB,"Asus ExpertBook B1 15.6"" Business Laptop FHD Intel i5-1135G7 8 GB 256 GB SSD Windows 11 Pro, 3YR Warranty, 1YR ADP(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.05,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'B1500CEAE-Q53WP-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'ExpertBook B1', 'General InformationProduct Series': 'B1500'}" +246975,LPASU00810,"Asus Chromebook Flip C434 C434TA-Q1-CB 14"" Chromebook Intel m3-8100Y 4 GB RAM - 64GB Flash Memory - Black, Silver - Chrome OS",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'C434TA-Q1-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'Chromebook Flip', 'General InformationProduct Series': 'C434'}" +246824,LPHEW02099OB,"HP 17-cn3020ca Consumer Laptop 17.3"" FHD Intel i5-1335U 16GB 512GB SSD Windows 11 Home, 8N3T7UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",759.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +246745,LPLEN02397OB,"Lenovo ThinkPad X1 Carbon Gen 9 14"" WUXGA Ultrabook, Intel i5 i5-1135G7, 8GB, 256GB SSD, Windows 10 Pro, Intel Iris Xe Graphics, 20XW004QUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",949.89,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20XW004QUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Carbon Gen 9'}" +246671,LPLEN03567OB,"LENOVO ThinkPad X1 Gen 3 Business Laptop 13"" Detachable (2 in 1) QHD Intel i7-8550U 16GB 256GB SSD Windows 11 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '13""'}" +246664,LPLEN03564OB,"LENOVO ThinkPad X1 Business Notebook 13.3"" Detachable (2 in 1) QHD Intel i7-8650U 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",494.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '3000 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" +246169,LPGIG00164,"GIGABYTE AORUS 17X Gaming Laptop 17.3"" 240Hz QHD Intel i9-13980HX GeForce RTX 4080 16GB 1 TB SSD Windows 11 Pro",GIGABYTE,"['Laptops, Tablet', None, None, None]",3599.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '17.3""'}" +246098,LPLEN03559OB,"LENOVO ThinkPad T590 Business Laptop 15.6"" FHD Intel i5-8365U Intel UHD Graphics 620 16GB 512GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",449.1,"{'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" +246030,LPLEN03390OB,"LENOVO ThinkPad T14 G3 Business Laptop 14"" Touchscreen Ryzen 5 Pro 6650U AMD Radeon 660M 16GB 256GB SSD Windows 10 Pro, 21CF000CUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",759.05,"{'GPU': 'AMD Radeon 660M', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +246003,LPHUA00042OB,"HUAWEI Matebook D14 Consumer Laptop 14"" Intel i7-1360P 16GB 1TB SSD Windows 11 Home, 53013VBB(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",949.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +245995,LPHEW01946OB,"HP ProBook 450 G9 15.6"" Business Notebook Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro(Open Box)",HP,"['Laptops, Tablet', None, None, None]",854.05,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P0UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}" +245861,LPGIG00152OB,"Gigabyte AORUS 15 Gaming Notebook 15.6"" QHD Intel Core i7-13700H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, BKF-73US754SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1439.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +245833,LPLEN03403OB,"LENOVO T480s Business Notebook 14"" FHD Intel i7-8550U Intel UHD Graphics 620 24GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",394.15999755859,"{'Refresh Rate': '60Hz', 'GPU': 'Intel UHD Graphics 620', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '24GB'}" +245787,LPLEN03568,"Lenovo V14 Business Laptop 14"" FHD Intel i7-1255U 16GB 512GB SSD Windows 11 Pro, 82TS00JGUS",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +245737,LPHEW02095OB,"HP Victus 15-fb1010ca Gaming Laptop 15.6"" AMD Ryzen 5 7535HS GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, 8G9J1UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",629.1,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +245729,LPLEN01849OB,"Lenovo ThinkPad X1 Nano EVO 13"" Ultrabook, Intel Core i7 i7-1160G7, 16GB, 512GB SSD, Windows 10 Pro, 20UN000EUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1234.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20UN000EUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Nano Gen1'}" +245728,LPLEN03502OB,"LENOVO IdeaPad Slim 3 Consumer Laptop 15.6"" AMD Ryzen 5 7520U 16GB 512GB SSD Windows 11 Home, 82XQ00BECC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'AMD Radeon 610M', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +245727,LPLEN03552OB,"LENOVO X1 Yoga G4 Business Notebook 14"" FHD Intel i5-8265U 16GB 512GB SSD Windows 10 Pro, Pen Included, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",449.1,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +245695,LPASU00779OB,"ASUS Zenbook 14X OLED Consumer Notebook 14"" Intel i7-12700H Intel Iris Xe 16GB 1TB SSD Windows 11 Home, UX5401ZA-DB71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1234.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 X 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +245534,LPMSI00580OB,"MSI Pulse 17 Gaming Notebook 17.3"" Intel i9-13900H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, B13VGK-619CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +245476,LPMSI00575OB,"MSI Modern 15 Consumer Laptop 15.6"" FHD Intel i7-1255U Intel Iris Xe 16GB 512GB SSD Windows 11 Home(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +245456,LPMSI00592,"MSI Stealth 14Studio Gaming Laptop 14"" 165Hz Intel i7-13620H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, A13UDX-099CA",MSI,"['Laptops, Tablet', None, None, None]",1699.0,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +245448,LPMSI00565OB,"MSI Bravo 15 Gaming Notebook 15.6"" AMD Ryzen 7 7735HS GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, C7VEK-058CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1439.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +245439,LPGIG00163,"GIGABYTE AORUS 17X Gaming Notebook 17.3"" QHD 240Hz Intel i9-13980HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Pro, AORUS 17X AZF-D5US665SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",4699.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" +245338,LPACE00985OB,"Acer Swift 3 EVO 14"" Laptop FHD Intel i5-1240P 16GB 512GB SSD Windows 11 Home,(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +245275,LPLEN03042OB,"Lenovo ThinkBook 15 G4 15.6"" Touchscreen Notebook, FHD, Intel Core i7-1255U, 16GB RAM, 512GB SSD, Mineral Gray, Fingerprint Reader, Backlit Keyboard, Windows 11 Pro(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1234.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DJ000VUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 IAP'}" +245239,LPCNO00061OB,"ASUS Vivobook F Series Laptop 15.6"" FHD Intel i5-1135G7 8GB 256GB SSD Windows 11 Home, F1500EA-WB51(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",568.05999832153,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +245230,LPHEW02083OB,"HP EliteBook 640 G9 Business Notebook 14"" Intel i5-1245U 16GB 512GB SSD Windows 11 Pro, 6C0Z2UT#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1136.1600006104,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +245229,LPLEN02154OB,"LENOVO ThinkPad T14s G2 Business Notebook 14"" Intel i5-1135G7 8 GB 256GB SSD Windows 10 Pro, 20WM0085US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.05,"{'Manufacturer': 'Lenovo Group Limited', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': '.', 'Product Condition Short': '.', 'Screen Resolution Description': 'FHD'}" +245185,LPACE00980OB,"ACER Nitro 5 Gaming Laptop 15.6"" 144Hz AMD Ryzen 7 5800H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 3060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +245105,LPDYA00033,"Dynabook Tecra Business Notebook 15.6"" FHD Intel i7-1260P 16GB 256GB SSD Windows 10 Pro, PML20C-0WR03D",Dynabook,"['Laptops, Tablet', None, None, None]",1749.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '15.6""'}" +245100,LPDYA00029,"Dynabook Tecra Business Notebook 14"" FHD Intel i7-1260P 16GB 256GB SSD Windows 10 Pro, PMM20C-15702V",Dynabook,"['Laptops, Tablet', None, None, None]",1749.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +245098,LPDYA00028,"Dynabook Tecra Business Notebook 14"" FHD Intel i5-1240P 16GB 256GB SSD Windows 11 Pro, PMM20C-15602V",Dynabook,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +245038,LPLEN03493OB,"LENOVO Thinkbook T490 Business Laptop 14"" Intel i5-8365U 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +244914,LPACE00968OB,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, NH.QM0AA.004(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",989.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +244865,LPHEW02087OB,"HP Victus 15-fb0000ca Gaming Laptop 15.6"" 144Hz AMD Ryzen 5 5600H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 11 Home, 89A37UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",764.1,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +244863,LPLGE00033OB,"LG Gram EVO Consumer Notebook 17"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home,17Z90R-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1519.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17""'}" +244859,LPASU00763OB,"ASUS Vivobook S 16 Flip Consumer Notebook 16"" WUXGA Intel i5-1335U Intel HD Graphics 16GB 512GB SSD Windows 11 Home, TP3604VA-DS51T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",901.55,"{'Refresh Rate': '60Hz', 'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +244840,LPACE00981OB,"ACER Aspire 5 Consumer Laptop 15.6"" AMD Ryzen 3 5300U 8GB 256GB SSD Windows 11 S, A515-45-R4RP(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",426.55,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" +244669,LPASU00784OB,"ASUS Vivobook 15 OLED Consumer Laptop 15.6"" AMD Ryzen 7 7730U 16GB 512GB SSD Windows 11 Home, M1505YA-DB71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",806.55,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +244668,LPHEW01822OB,"HP ProBook 450 G9 15.6"" Business Notebook Intel i7-1255U 16GB 512GB SSD Windows 10 Pro, 687P3UT#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",949.05,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '687P3UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G9'}" +244664,LPLEN03428OB,"Lenovo IdeaPad Slim 3 Consumer Notebook 15.6"" FHD AMD Ryzen 3 7320U AMD Radeon 610M Graphics 8GB 512GB SSD Windows 11 Home,82XQ007UCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",474.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +244660,LPHEW01967OB,"HP ProBook 440 G9 14"" Business Laptop Intel i5-1235U 16 GB 256 GB SSD, Windows 11 Pro(Open Box)",HP,"['Laptops, Tablet', None, None, None]",711.55,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6J8Q6UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1920 x 1080', 'General InformationBrand Name': 'HP'}" +244488,LPASU00764OB,"ASUS Zenbook 15 OLED Consumer Notebook 15.6"" OLED AMD Ryzen 7 7735U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, UM3504DA-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1234.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '2880 x 1620', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +244400,LPASU00785OB,"ASUS TUF Gaming Notebook 17.3"" 144Hz Intel i5-11400H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home, FX706HF-DB51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",719.1,"{'Memory': '8GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +244340,LPLEN03546,"Lenovo ThinkPad E14 14"" Touchscreen Business Notebook Intel i7-1355U 16 GB 512 GB SSD Windows 11 Pro, 21JK0053US",LENOVO,"['Laptops, Tablet', None, None, None]",1599.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JK0053US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5'}" +244334,LPLEN03544,"Lenovo ThinkPad E14 14"" Business Notebook Ryzen 5 7530U 16 GB 256 GB Windows 11 Pro, 21JR001RUS",LENOVO,"['Laptops, Tablet', None, None, None]",1173.65,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JR001RUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5'}" +244224,LPLEN00715OB,"Lenovo ThinkPad T490 14"" Notebook Intel i5-8365U FHD 16 GB RAM 256 GB SSD Windows 10 Pro (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20N20043US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'T490'}" +244103,LPLEN03526,"Lenovo ThinkPad T14 14"" Business Notebook Intel i5-1335U 16 GB 512 GB Windows 11 Pro, 21HD0028CA",LENOVO,"['Laptops, Tablet', None, None, None]",2249.42,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HD0028CA', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14 Gen 4', 'General InformationProduct Model': '21HD0028CA'}" +244095,LPLEN03522,"Lenovo ThinkBook 15 G4 15.6"" Business Laptop AMD Ryzen 5 5625U 16 GB 256 GB Windows 11 Pro, 21DL000JUS",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21DL000JUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '15 G4 ABA'}" +244094,LPLEN03521,"Lenovo ThinkPad E16 16"" Business Notebook AMD Ryzen 5 7530U 16 GB 256 GB SSD Windows 11 Pro, 21JT001BUS",LENOVO,"['Laptops, Tablet', None, None, None]",1099.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JT001BUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E16 Gen 1'}" +243984,LPHEW02090,"HP ProBook 440 Business Notebook 14"" FHD Intel i7-1355U 16GB 512GB SSD Windows 11 Pro, 822P8UT#ABA",HP,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +243895,LPMSI00577OB,"MSI Prestige 13 Evo Business Notebook 13.3"" Intel i7-1360P 32GB 1TB SSD Windows 11 Pro(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1604.55,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '13.3""'}" +243883,LPLEN03432OB,"LENOVO IdeaPad Flex 5 Consumer Notebook 16"" Touchscreen AMD Ryzen 5 7530U 16GB 512GB SSD Windows 11 Home, 82XY005ACC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",806.55,"{'GPU': 'AMD Radeon Graphics', 'Refresh Rate': '60Hz', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +243733,LPASU00783OB,"ASUS Zenbook 14 OLED Consumer Notebook 14"" QHD AMD Ryzen 7 5825U 16GB 512GB SSD Windows 11 Home, UM3402YA-DB71T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",834.93999938965,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +243732,LPASU00765OB,"ASUS Zenbook S 13 OLED EVO Laptop 13.3"" Intel i7-1355U 16GB 1TB SSD Windows 11 Home, UX5304VA-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1234.05,"{'GPU': 'Intel Iris Xe', 'Refresh Rate': '60Hz', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +243639,LPASU00720OB,"ASUS ROG Strix G17 Gaming Notebook 17.3"" WQHD AMD Ryzen 9 7945HX RTX 4060 16GB 1TB SSD Windows 11 Home, G713PV-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'RTX\xa04060', 'Maximum Resolution': '2560X1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +243595,LPASU00770OB,"ASUS ROG Zephyrus G14 Gaming Notebook 14"" QHD AMD Ryzen 9 7940HS GeForce RTX 4080 16GB 1TB SSD Windows 11 Home, GA402XZ-CS94(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",2699.1,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +243585,LPHEW02072OB,"HP ProBook 445 G9 Business Notebook 14"" AMD Ryzen 5 5625U 8GB 256GB SSD Windows 11 Pro, 64T29UT#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" +243494,LPHEW01833OB,"HP EliteBook 650 G9 15.6"" Business Notebook Intel i5-1245U 16 GB 256 GB SSD Windows 10 Professional, 6C0Z6UT#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1048.7599990845,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z6UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'EliteBook', 'General InformationProduct Series': '650 G9'}" +243437,LPASU00760OB,"ASUS Vivobook 16X Gaming Laptop 16"" WUXGA Intel i9-13900H Geforce RTX 4050 16GB 512GB SSD Windows 11 Home, K3605VU-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1529.1,"{'GPU': 'Geforce RTX 4050', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +243374,LPMSI00590,"MSI Modern 14 Consumer Notebook 14"" Intel i7-1355U 16GB 1TB SSD Windows 11 Home, C13M-621US",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" +243338,LPASU00782OB,"ASUS Vivobook Go Consumer Notebook 15.6"" AMD Ryzen 3 7320U 8GB 128GB SSD Windows 11 S, E1504FA-DB31-CA-SL(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",426.55,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" +243313,LPHEW02023OB,"HP Consumer Notebook 14"" FHD AMD Ryzen 5 7520U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 14-em0040ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",569.05,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 5 7520U'}" +243264,LPASU00780OB,"ASUS Zenbook Consumer Notebook 14"" UHD Touchscreen OLED Intel i7-12700H 16GB 1TB SSD Windows 11 Home, UP5401ZA-DB71T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1329.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +243225,LPHEW02024OB,"HP Consumer Notebook 17.3"" FHD Intel i5-1335U Intel Iris Xe 8GB 1TB SSD Windows 11 Home, 17-cn3010ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",739.94001464844,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}" +243158,LPCHP00003OB,"HP Elitebook 840 G3 Business Laptop 14"" Touchscreen Intel i5-6300U 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",HP,"['Laptops, Tablet', None, None, None]",269.1,"{'GPU': 'Intel HD Graphics 520', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +243148,LPMSI00589,"MSI Creator Z17HXStudio Gaming Notebook 17"" 165Hz QHD+ Intel i9-13950HX GeForce RTX 4060 32GB 1TB SSD Windows 11 Pro, A13VFT-093CA",MSI,"['Laptops, Tablet', None, None, None]",3399.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}" +243120,LPMSI00588,"MSI Prestige 16EVO Business Notebook 16"" 165Hz QHD+ Intel i7-13700H 32GB 1TB SSD Windows 11 Pro, A13M-286CA",MSI,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +243072,LPASU00715OB,"ASUS TUF F15 Gaming Laptop 15.6"" FHD Intel i9-13900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, FX507VV-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1349.1,"{'Refresh Rate': '144Hz', 'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +243071,LPMSI00572OB,"MSI Thin GF63 Gaming Laptop 15.6"" FHD Intel i5-12450H GeForce RTX 2050 8GB 512GB SSD Windows 11 Home(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",629.1,"{'GPU': 'GeForce RTX 2050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +243055,LPLEN03436OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" WQXGA Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WK00H8CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1979.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +243048,LPLEN03495,"LENOVO ThinkPad X13 Yoga 2-in-1 Business Notebook 13.3"" Touchscreen Intel i5-10310U 16GB 256GB SSD Windows 10 Pro, 20SYS0C600",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" +243000,LPMSI00562OB,"MSI Modern 15 Notebook 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 512GB SSD Windows 11 Home, B7M-097CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +242733,LPLEN03442OB,"LENOVO IdeaPad Flex 5 Consumer Notebook 14"" Touchscreen AMD Ryzen 3 5300U 4GB 128GB SSD Windows 10 S, 82HU0159US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",360.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 S', 'Memory': '4GB', 'Screen Size': '14""'}" +242699,LPASU00561OB,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics G7, 8GB, 256GB SSD, Windows 10 Pro, 3YR Warranty, 1YR ADP(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.89,"{'Screen Size': '15.6""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +242686,LPMSI00587,"MSI CreatorPro M16 Gaming Notebook 16"" QHD Intel i7-13700H NVIDIA RTX A1000 32GB 1TB SSD Windows 11 Pro, B13VI-845US",MSI,"['Laptops, Tablet', None, None, None]",2399.0,"{'GPU': 'NVIDIA RTX A1000', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +242678,LPHEW02049OB,"HP EliteBook 840 G2 Business Notebook 14"" Touchscreen Core i5-5300U,16 GB DDR3, 256 GB SSD, Windows 10 Professional Refurbished(Open Box)",HP,"['Laptops, Tablet', None, None, None]",242.1,"{'Memory': '16GB', 'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'FHD'}" +242676,LPMSI00586,"MSI CreatorPro Z16HXStudio Gaming Notebook 16"" Touchscreen QHD Intel i9-13950HX NVIDIA RTX A2000 ADA 32GB 1TB SSD Windows 11 Pro, B13VJTO-067US",MSI,"['Laptops, Tablet', None, None, None]",3799.0,"{'GPU': 'NVIDIA RTX A2000 ADA', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +242671,LPMSI00585,"MSI CreatorPro Z17HX Studio Gaming Notebook 17"" QHD Touchscreen Intel i9-13950HX NVIDIA RTX A3000 ADA 32GB 1TB Windows 11 Pro, A13VKT-077US",MSI,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'NVIDIA RTX A3000 ADA', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}" +242664,LPMSI00584,"MSI Modern 15 Consumer Notebook 15.6"" Intel i7-1335U 16GB 1TB SSD Windows 11 Home, B13M-447US",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +242529,LPACE00967OB,"Acer Nitro 5 Gaming Laptop 15.6"" FHD Intel i9-12900H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, NH.QM0AA.003(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",1169.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +242481,LPLEN03456OB,"Lenovo IdeaPad Consumer Notebook 14"" FHD Intel i5-1135G7 8GB 512GB SSD Windows 11 Home, 81X700FXUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",521.55,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}" +242396,LPLGE00031OB,"LG Gram EVO Consumer Notebook 15.6"" FHD Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 15Z90R-P.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1519.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +242394,LPLEN00182OB,"Lenovo ThinkPad T480s 14"" Notebook, Intel Core i7-8550U, 16 GB, 256 GB SSD, Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",394.15999755859,"{'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB', 'CPU': 'i7-8550U', 'Hard Drive Capacity': 'None', 'Notebook Type': 'Business Notebook'}" +242354,LPGIG00161,"GIGABYTE AORUS 15 Gaming Notebook 15.6"" 360Hz Intel i5-12500H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 9MF-E2US583SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +242348,LPMSI00583,"MSI Creator Z17HXStudio Gaming Notebook 17"" Touchscreen 165Hz QHD+ Intel i7-13700HX GeForce RTX 4050 32GB 1TB SSD Windows 11 Pro, A13VET-094CA",MSI,"['Laptops, Tablet', None, None, None]",2899.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}" +242343,LPHEW01834OB,"HP EliteBook 640 G9 14"" Business Notebook Intel i5-1245U 16GB RAM 512GB SSD Windows 10 Pro, 6C0Z2UT#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",961.35999755859,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z2UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1080p Full HD', 'General InformationBrand Name': 'HP'}" +242342,LPMSI00536OB,"MSI Katana GF66 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 11 Home, Katana GF66 12UD-878CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1159.0899978638,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +242316,LPHEW02077,"HP OMEN 16-xf0000ca Gaming Notebook 16.1"" 240Hz QHD AMD Ryzen 9 7940HS GeForce RTX 4070 32GB 2TB SSD Windows 11 Home, 7X979UA#ABL",HP,"['Laptops, Tablet', None, None, None]",2499.0,"{'Memory': '32GB', 'Screen Size': '16.1""""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '2TB'}" +242164,LPMSI00564OB,"MSI Bravo 15 Gaming Laptop 15.6"" FHD AMD Ryzen 7 7735HS GeForce RTX 4060 32GB 1TB SSD Windows 11 Home, C7VFK-057CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'Ge Force RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '15.6""'}" +242110,LPMSI00553OB,"MSI Vector GP68HX Gaming Notebook 16"" Intel i9-12900HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home, 12VH-012CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",2249.1,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '16""'}" +242043,LPSAS00158,"SAMSUNG Galaxy Book3 360 EVO Consumer Notebook 13.3"" AMOLED Intel i5-1335U 8GB 256GB SSD Windows 11 Home, NP730QFG-KA2CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '13.3""'}" +242035,LPMSI00496OB,"MSI GF63 Gaming Notebook 15.6"" FHD Intel i5-11400H RTX3050 8GB 512GB SSD Windows 11 Home,GF63 11UC-692(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",719.1,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +242034,LPACE00946OB,"Acer 15.6"" Consumer Notebook FHD Intel i5-1135G7 Intel Iris 8GB 512GB SSD Windows 11, NX.A1HAA.00G(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",462.53999389648,"{'GPU': 'Intel Iris', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}" +242021,LPHEW02072,"HP ProBook 445 G9 Business Notebook 14"" AMD Ryzen 5 5625U 8GB 256GB SSD Windows 11 Pro, 64T29UT#ABL",HP,"['Laptops, Tablet', None, None, None]",599.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" +242019,LPLEN03478,"Lenovo ThinkPad X1 Yoga Gen 8 14"" Touchscreen Convertible 2 in 1 Business Notebook Intel i7-1355U 16 GB 512 GB SSD, 21HQ0007US",LENOVO,"['Laptops, Tablet', None, None, None]",2884.39,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HQ0007US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Yoga Gen 8'}" +241971,LPMSI00559OB,"MSI Thin GF63 Gaming Laptop 15.6"" Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 12VF-274CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1079.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +241958,LPSAS00157,"SAMSUNG Galaxy Book3 360 EVO Consumer Notebook 13.3"" AMOLED Intel i7-1355U 16GB 512GB SSD Windows 11 Home, NP730QFG-KA1CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.3""'}" +241952,LPSAS00156,"SAMSUNG Galaxy Book3 Pro 360 EVO Consumer Notebook 16"" QHD+ AMOLED Intel i7-1360P 16GB 1TB SSD Windows 11 Home, NP960XFH-XA2CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +241914,LPSAS00152,"SAMSUNG Galaxy Book3 EVO Ultra Gaming Notebook 16"" QHD+ AMOLED Intel i7-13700H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, NP960XFH-XA2CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",3269.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +241901,LPSAS00150,"SAMSUNG Galaxy Book3 EVO Ultra Gaming Notebook 16"" QHD+ AMOLED Intel i7-13700H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, NP960XFH-XA1CA",SAMSUNG,"['Laptops, Tablet', None, None, None]",2999.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +241869,LPLEN03471,"Lenovo ThinkPad E14 14"" Touchscreen Business Notebook Intel i5-1335U 16 GB 512 GB SSD Windows 11 Pro, 21JK0052US",LENOVO,"['Laptops, Tablet', None, None, None]",1399.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JK0052US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E14 Gen 5'}" +241798,LPLEN03438OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" 165Hz WQXGA AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WM005VCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1529.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +241794,LPLEN03312OB,"Lenovo T490 Business Notebook 14"" FHD Intel i5-8265U Intel UHD Graphics 16GB 256GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +241791,LPGIG00148OB,"Gigabyte AORUS Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, BSF-73US654SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +241789,LPGIG00157OB,"Gigabyte AERO 14 OLED Gaming Notebook 14"" QHD Intel i5-12500H RTX 4050 16GB 1TB SSD Windows 11 Home, 9MF-E2USBB4SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +241787,LPLEN03435OB,"Lenovo Legion Pro 5 Gaming Laptop 16"" Intel i7-13700HX GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, 82WK00H9CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +241770,LPHEW02065,"HP ProBook 450 G10 15.6"" Notebook - Full HD - 1920 x 1080 - Intel Core i5 13th Gen i5-1335U Deca-core (10 Core) 1.30 GHz - 8 GB Total RAM - 256 GB SSD - Pike Silver Plastic - Intel Chip - Windows 11 Pro - Intel UHD Graphics - In-plane Switching (IPS) Tech",HP,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '822P3UT#ABA', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'General InformationBrand Name': 'HP', 'General InformationProduct Line': 'ProBook', 'General InformationProduct Series': '450 G10'}" +241742,LPLEN03301OB,"Lenovo IdeaPad Flex 5 14"" Touchscreen Convertible Notebook, OLED 2.8K, Intel i7-1255U, 16GB RAM, 512GB SSD, Storm Gray, Windows 11 Home(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",949.05,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '82R7000ECF', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'IdeaPad', 'General InformationProduct Series': 'Flex 5 14IAU7'}" +241738,LPLEN03434OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" AMD Ryzen 7 7745HX GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 82WM005XCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +241670,LPLEN03465,"Lenovo ThinkPad X1 Yoga EVO 14"" Touchscreen Convertible 2 in 1 Business Notebook Intel i5-1335U 16 GB 256 GB SSD, 21HQ001NUS",LENOVO,"['Laptops, Tablet', None, None, None]",2534.06,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21HQ001NUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'X1 Yoga Gen 8'}" +241582,LPACE00956OB,"Acer Nitro 5 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 512GB SSD Windows 11, NH.QM0AA.001(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" +241555,LPMSI00581,"MSI Modern 15 Consumer Notebook 15.6"" AMD Ryzen 5-7530U 16GB 512GB SSD Windows 11 Home, B7M-219CA",MSI,"['Laptops, Tablet', None, None, None]",849.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +241520,LPMSI00579,"MSI Stealth 14Studio Gaming Notebook 14"" QHD+ Intel i7-13620H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, A13VF-053CA",MSI,"['Laptops, Tablet', None, None, None]",2099.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +241510,LPMSI00578,"MSI Modern 14 Consumer Notebook 14"" Intel i5-1335u 16GB 512GB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",899.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +241455,LPLEN03462,"Lenovo ThinkBook 14s Yoga 14"" Touchscreen Convertible FHD Intel Core i5-1335U 16GB 256GB SSD Mineral Gray Windows 11 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",1299.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21JG0019US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkBook', 'General InformationProduct Series': '14s Yoga G3 IRU'}" +241443,LPHEW02045OB,"HP Consumer Laptop 17.3"" FHD, Intel i5-1135G7, Intel Iris Xe, 16GB, 512GB SSD, Windows 11 Home, 17-cn0002ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",854.05,"{'Touch Screen': 'No', 'Hard Drive Capacity': 'None', 'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +241436,LPMSI00560OB,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home,12VF-275CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1079.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +241433,LPMSI00576,"MSI CREATOR Z16 Creator Notebook 16"" QHD Intel i7-13700HX GeForce RTX 4060 32GB 1TB SSD Windows11 Pro .",MSI,"['Laptops, Tablet', None, None, None]",2999.0,"{'Memory': '32GB', 'Screen Size': '16""', 'Operating System': 'Windows11 Pro', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '120Hz', 'SSD Capacity': '1TB'}" +241430,LPMSI00563OB,"MSI Modern 15 Notebook 15.6"" FHD Intel i5-1155G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Home, B11M-046CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +241410,LPHEW02028OB,"HP Consumer Laptop 15.6"" FHD AMD Ryzen 7 7730U AMD Radeon Graphics 16GB 1TB SSD Windows 11 Home, 15-fc0040ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",806.55,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 7730U'}" +241409,LPLGE00030OB,"LG Gram Consumer Notebook 14"" WUXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 14Z90R-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1519.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +241324,LPASU00726OB,"ASUS ROG Flow Gaming Notebook 13.4"" WQXGA AMD Ryzen 9 7940HS RTX 4050 16GB 1TB SSD Windows 11 Home, GV302XU-DS91T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1979.1,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}" +241260,LPLEN03437OB,"Lenovo Legion Pro 5 Gaming Notebook 16"" Intel i9-13900HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WK00D5CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",2249.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +241259,LPASU00686OB,"ASUS TUF Gaming Notebook 16"" FHD AMD Ryzen 7 7735HS AMD Radeon RX 7600S 16GB 1TB SSD Windows 11 Home, FA617NS-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'AMD\xa0Radeon RX\xa07600S', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1920X1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +241258,LPGIG00154OB,"Gigabyte AERO 14 Gaming Notebook 14"" QHD Intel Core i7-13700H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, BMF-72USBB4SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1709.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '2880x1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +240967,LPACE00969,"Acer Nitro 5 Gaming Notebook 15.6"" FHD Intel i5-11400H GeForce GTX 1650 8GB 512GB SSD Windows 11 Home,",ACER,"['Laptops, Tablet', None, None, None]",699.0,"{'GPU': 'GeForce GTX 1650', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}" +240858,LPMSI00568OB,"MSI Modern Consumer Notebook 15.6"" FHD Intel i5-1235U Intel Iris Xe 16GB 512GB SSD Windows 11 Home .(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",830.18999938965,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +240698,LPMSI00541OB,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, 12UDX-038CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +240697,LPLEN03433OB,"Lenovo Legion Pro 5 Gaming Laptop 16"" AMD Ryzen 7 7745HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 82WM005YCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1619.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +240655,LPGIG00135OB,"Gigabyte AERO 16 XE4 Gaming Notebook 16"" UHD Intel Core i7-12700H GeForce RTX 3070 Ti 16GB 2TB SSD Windows 11 Pro, XE4-73US918HP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1079.1,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}" +240528,LPHEW02021OB,"HP Consumer Laptop 14"" FHD AMD Ryzen 3 7320U, Radeon Graphics, 8GB RAM, 256GB SSD, Windows 11 Home, 14-em0030ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",474.05,"{'Memory': '8GB', 'Model': '14-em0030ca', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '256GB'}" +240332,LPHEW02035OB,"HP Omen 16-wd0010ca Gaming Notebook 16.1"" FHD Intel i7-13620H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16.1""'}" +240324,LPLEN03442,"LENOVO IdeaPad Flex 5 Consumer Notebook 14"" Touchscreen AMD Ryzen 3 5300U 4GB 128GB SSD Windows 10 S, 82HU0159US",LENOVO,"['Laptops, Tablet', None, None, None]",379.0,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 S', 'Memory': '4GB', 'Screen Size': '14""'}" +240234,LPMSI00498OB,"MSI SUMMIT E14 Business Notebook 14"" FHD Intel i7-1280P Iris Xe Graphics 16GB 1TB SSD Windows 11 Home .(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1141.7899938965,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1200', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" +240174,LPASU00716OB,"ASUS TUF F15 Gaming Notebook 15.6"" FHD Intel i7-12700H RTX 3050 16GB 512GB SSD Windows 11 Home, FX507ZC4-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",989.1,"{'GPU': 'RTX\xa03050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +240130,LPHEW02017OB,"HP Pavilion Consumer Notebook 15.6"" FHD Intel i5-1240P Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 15-EG2002CA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",599.34000854492,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': 'FHD', 'SSD Capacity': '512GB', 'CPU': 'i5-1240P'}" +240099,LPGIG00160OB,"Gigabyte G5 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, MF-F2US313SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",809.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +240049,LPHEW02045,"HP Consumer Laptop 17.3"" FHD, Intel i5-1135G7, Intel Iris Xe, 16GB, 512GB SSD, Windows 11 Home, 17-cn0002ca",HP,"['Laptops, Tablet', None, None, None]",899.0,"{'Touch Screen': 'No', 'Hard Drive Capacity': 'None', 'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Operating System': 'Windows 11 Home', 'Memory': '16GB'}" +239972,LPLGE00027OB,"LG gram Ultra-Lightweight EVO Platform Notebook, 17"" WQXGA, Intel i5-1240P, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 17Z90Q-K.AR55A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1109.4899984741,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1240P'}" +239909,LPMSI00567,"MSI Thin 15.6"" GF63 Gaming Notebook, FHD, Intel Core i5-12450H, GeForce RTX 4060, 16GB RAM, 512GB SSD, Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",1599.0,"{'General InformationManufacturer': 'MSI', 'General InformationManufacturer Part Number': 'THIN GF63 12VF-288CA', 'General InformationManufacturer Website Address': 'http://www.msi.com', 'General InformationBrand Name': 'MSI', 'General InformationProduct Series': 'Thin GF63 12V', 'General InformationProduct Model': 'Thin GF63 12VF-288CA'}" +239787,LPLEN03437,"Lenovo Legion Pro 5 Gaming Notebook 16"" Intel i9-13900HX GeForce RTX 4070 16GB 512GB SSD Windows 11 Home, 82WK00D5CC",LENOVO,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +239781,LPLEN03434,"Lenovo Legion Pro 5 Gaming Notebook 16"" AMD Ryzen 7 7745HX GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 82WM005XCC",LENOVO,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +239771,LPLEN03427,"Lenovo IdeaPad 1 15AMN7 Consumer Notebook 15.6"" HD AMD Athlon Gold 7220U AMD Radeon 610M Graphics 4GB 128GB SSD Windows 11 S, 82VG00EGCC",LENOVO,"['Laptops, Tablet', None, None, None]",449.99,"{'GPU': 'AMD Radeon 610M Graphics', 'Maximum Resolution': '1366 x 768', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '4GB', 'Screen Size': '15.6""'}" +239765,LPLEN03426,"Lenovo IP Slim 3 Chrome 14M868 Consumer Notebook 14"" FHD MediaTek Kompanio 520 ARM Mali-G52 2EE MC2 GPU 4GB HDD Chrome OS,82XJ001GCC",LENOVO,"['Laptops, Tablet', None, None, None]",479.99,"{'GPU': 'ARM Mali-G52 2EE MC2 GPU', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Chrome OS', 'Memory': '4GB', 'Screen Size': '14""'}" +239749,LPACE00965,"Acer Nitro 16"" Gaming Notebook FHD AMD Ryzen 7 7735HS GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, NH.QKBAA.001",ACER,"['Laptops, Tablet', None, None, None]",1899.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +239746,LPACE00963,"Acer AN515-58-7578 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4050 16GB 1TB SSD Windows 11 Home, NH.QLZAA.004",ACER,"['Laptops, Tablet', None, None, None]",1699.99,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +239719,LPMSI00554,"MSI Vector GP77 Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, 13VG-033CA",MSI,"['Laptops, Tablet', None, None, None]",2899.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +239700,LPMSI00552,"MSI Raider GE78HX Gaming Notebook 17.3"" QHD Intel i7-13700HX GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, 13VG-026CA",MSI,"['Laptops, Tablet', None, None, None]",3299.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}" +239699,LPMSI00551,"MSI Stealth 17Studio Gaming Notebook 17.3"" QHD Intel i7-13700H GeForce RTX 4070 32GB 1TB SSD Windows 11 Pro, A13VG-020CA",MSI,"['Laptops, Tablet', None, None, None]",3299.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" +239697,LPMSI00550,"MSI Raider GE78HX Gaming Notebook 17"" QHD Intel i9-13980HX GeForce RTX 4070 32GB 2TB SSD Windows 11 Professional,",MSI,"['Laptops, Tablet', None, None, None]",3399.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" +239694,LPMSI00549,"MSI Vector GP78HX Gaming Notebook 17"" QHD Intel i7-13700HX GeForce RTX 4080 32GB 1TB SSD Windows 11 Home",MSI,"['Laptops, Tablet', None, None, None]",3399.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17""'}" +239501,LPASU00752OB,"Asus Vivobook 17 Consumer Notebook 17.3"" FHD Intel i7-1165G7 Intel Iris Xe Graphics 8GB 512GB SSD Windows 11 Home, X712EA-MS72-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",664.05,"{'GPU': 'Intel Iris Xe Graphics', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '17.3""'}" +239476,LPASU00688OB,"ASUS TUF Gaming F15 Gaming Laptop 15.6"" FHD Intel Core i9-13900H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, FX507VU-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce\xa0RTX\xa04050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +239359,LPLEN03414OB,"Lenovo IdeaPad Consumer Notebook 14"" HD Intel i3-1215U Intel HD Graphics 4GB 128GB SSD Windows 11 S, 82QC003VUS(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",312.55,"{'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1366 x 768', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '4GB', 'Screen Size': '14""'}" +239101,LPACE00888OB,"Acer TravelMate P2 14"" Business Notebook , FHD, Intel Core i5-1135G7,8 GB RAM, 256 GB SSD, Windows 11 Pro, Intel Iris Xe Graphics, NX.VPKAA.00K(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",474.05,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" +239044,LPLEN03352OB,"Lenovo ThinkBook 15 G3 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, 8GB DDR4, 256GB SSD, AMD Radeon Graphics, Fingerprint Reader, Windows 10 Pro(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",569.05,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Memory': '8GB', 'Screen Size': '15.6""'}" +238915,LPASU00768,"ASUS Zenbook Pro 16X OLED Gaming Notebook 16"" OLED Intel i9-13905H GeForce RTX 4080 32GB 1TB SSD Windows 11 Pro, UX7602BZ-XB91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",4199.0,"{'GPU': 'GeForce RTX 4080', 'Refresh Rate': '120Hz', 'Maximum Resolution': '3200 x 2000', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB'}" +238700,LPMSI00544,"MSI Titan Gaming Notebook 17.3"" UHD Intel i9-13980HX GeForce RTX 4090 64GB 2TB SSD Windows 11 Pro, GT77HX 13VI-028US",MSI,"['Laptops, Tablet', None, None, None]",6449.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '3840 x 2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17.3""'}" +238490,LPASU00724OB,"ASUS ROG Zephyrus Gaming Notebook 16"" WQXGA Intel i9-13900H GeForce RTX 4070 32GB 1TB SSD Windows 11 Home, GU604VI-DS92-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",2249.1,"{'Refresh Rate': '240Hz', 'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB'}" +238482,LPLGE00024OB,"LG Gram Ultra-Lightweight Notebook, 15.6"" FHD, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 15Z90Q-P.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1355.5400015259,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}" +238422,LPACE00945OB,"Acer Aspire 15.6"" Consumer Notebook Intel i5-10210U 8GB 256GB SSD Windows 11, A515-54-54B9, NX.HN2AA.008(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",415.04000549316,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Model': 'A515-54-54B9', 'Memory': '8GB'}" +238336,LPLEN03414,"Lenovo IdeaPad Consumer Notebook 14"" HD Intel i3-1215U Intel HD Graphics 4GB 128GB SSD Windows 11 S, 82QC003VUS",LENOVO,"['Laptops, Tablet', None, None, None]",329.0,"{'GPU': 'Intel HD Graphics', 'Maximum Resolution': '1366 x 768', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '4GB', 'Screen Size': '14""'}" +238330,LPGIG00149OB,"Gigabyte AORUS 15X Gaming Notebook 15.6"" QHD Intel i9-13900HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, ASF-B3US754SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1979.89,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +238182,LPGIG00159,"Gigabyte AORUS Gaming Notebook 17.3"" FHD Intel i5-12500H GeForce RTX 4060 16GB 512GB SSD Windows 11 Home, 9KF-E3US513SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +238178,LPGIG00158,"Gigabyte AORUS Gaming Notebook 15.6"" FHD Intel i5-12500H GeForce RTX 4050 8GB 512GB SSD Windows 11 Home, 9MF-E2US383SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1499.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +238124,LPLGE00035,"LG Gram Consumer Notebook 16"" WQXGA Intel i7-1360P Intel Iris Xe 16GB 512GB SSD Windows 11 Home, 16T90R-K.AA75A9",LG,"['Laptops, Tablet', None, None, None]",2299.99,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +238122,LPLGE00034,"LG Gram Consumer Notebook 17"" WQXGA Intel i7-1360P GeForce RTX 3050 16GB 1TB SSD Windows 11 Home,17Z90R-A.AA78A9",LG,"['Laptops, Tablet', None, None, None]",1999.99,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17""'}" +238052,LPASU00734OB,"ASUS Zenbook 14X Consumer Notebook 14"" OLED Intel i7-1260P GeForce MX550 16GB 512GB SSD Windows 11 Home, UX5400ZB-DS72T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1519.05,"{'GPU': 'GeForce\xa0MX550', 'Maximum Resolution': '2880 x 1800', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +237797,LPASU00707OB,"ASUS Zenbook OLED Touchscreen Consumer Notebook 14"" WQXGA AMD Ryzen 7 7730U AMD Radeon 16GB 1TB SSD Windows 11 Home, UM3402YAR-DS71T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1139.05,"{'GPU': 'AMD Radeon', 'Maximum Resolution': '2880X1800', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '14""'}" +237644,LPMSI00540OB,"MSI Thin GF63 Gaming Notebook 15.6"" FHD Intel i7-12650H GeForce RTX 4050 16GB 512GB SSD Windows 11 Home, 12VE-033CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1349.1,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +237622,LPGIG00147OB,"Gigabyte G5 Gaming Laptop 15.6"" FHD, Intel i5-12500H, GeForce RTX 4060, 8GB RAM, 512GB SSD, Windows 11 Home, G5 KF-E3US333SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",899.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +237594,LPLEN03269OB,"Lenovo IdeaPad 3 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon Graphics 8GB 256GB SSD Windows 11 Home, 082RN0013CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",522.39,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +237454,LPASU00735OB,"ASUS Vivobook 16X 4K OLED Notebook 16"" Intel i5-12500H Iris Xe Graphics 16GB 512GB SSD Windows 11 Home, X1603ZA-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",944.18999938965,"{'GPU': 'Iris Xe Graphics', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +237370,LPMSI00481OB,"MSI Raider GE76 Gaming Notebook 17.3"" FHD Intel i9-12900HK RTX3080TI 32GB 1TB SSD Windows 11 Pro .(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",2173.39,"{'Memory': '32GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '360Hz', 'SSD Capacity': '1TB'}" +237290,LPCNO00060OB,"ASUS ZenBook Consumer Notebook 15.6"" FHD AMD Ryzen 7 5700U GeForce MX450 8GB 256GB SSD Windows 11 Home, Q508UG-212.R7TBL(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.89,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +237289,LPMSI00539OB,"MSI Katana 15 Gaming Laptop 15.6"" FHD Intel i7-12650H GeForce RTX 4060 16GB 1TB SSD Windows 11 Home, B12VFK-237CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1259.1,"{'GPU': 'GeForce RTX 4060', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +237089,LPACE00959,"Acer PH16-71-71AV Consumer Notebook 16"" QHD Intel i7-13700HX GeForce RTX 4060 16GB 1024GB SSD Windows 11, NH.QJQAA.002",ACER,"['Laptops, Tablet', None, None, None]",2299.99,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '165Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" +237088,LPACE00958,"Acer PHN16-71-788N Consumer Notebook 16"" FHD Intel i7-13700HX GeForce RTX 4060 16GB 1024GB SSD Windows 11,NH.QLUAA.001",ACER,"['Laptops, Tablet', None, None, None]",2099.99,"{'GPU': 'GeForce RTX 4060', 'Refresh Rate': '165Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" +237087,LPACE00957,"Acer AN16-51-74BV Consumer Notebook 16"" FHD Intel i7-13700H GeForce RTX 4050 16GB 1024GB SSD Windows 11, NH.QJMAA.002",ACER,"['Laptops, Tablet', None, None, None]",1899.99,"{'GPU': 'GeForce RTX 4050', 'Refresh Rate': '165Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '16GB'}" +237085,LPACE00955,"ACER Nitro Gaming Notebook 15.6"" FHD Intel i5-12500H GeForce RTX 4050 8GB 512GB SSD Windows 11 . NH.QLZAA.005",ACER,"['Laptops, Tablet', None, None, None]",1399.99,"{'GPU': 'GeForce RTX 4050', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB'}" +237082,LPACE00953,"Acer Nitro Gaming Notebook 15.6"" FHD AMD Ryzen R5-7535HS GeForce RTX 3050 8GB 512GB SSD Windows 11, NH.QL5AA.001",ACER,"['Laptops, Tablet', None, None, None]",799.0,"{'GPU': 'GeForce RTX 3050', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB'}" +237081,LPACE00952,"ACER Nitro 5 Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 3050 8GB 512GB SSD Windows 11 .",ACER,"['Laptops, Tablet', None, None, None]",1199.99,"{'GPU': 'GeForce RTX 3050', 'Refresh Rate': '144Hz', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB'}" +237053,LPACE00948,"Acer A317-53-591M Consumer Notebook 17.3"" Intel i5-1135G7 Integrated GPU 8GB 512GB SSD Windows 11, NX.AD0AA.009",ACER,"['Laptops, Tablet', None, None, None]",999.0,"{'GPU': 'Integrated GPU', 'Maximum Resolution': '1600 x 900', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '17.3""'}" +237044,LPGIG00124OB,"Gigabyte AERO 16 XE5 Gaming Notebook, 16"" UHD, Intel Core i7-12700H, NVIDIA GeForce RTX 3070 Ti, 32GB, 2 TB SSD, Windows 11 Pro, AERO 16 XE5-73US948HP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1349.89,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'UHD', 'Memory': '32GB', 'Screen Size': '16""'}" +237036,LPACE00946,"Acer 15.6"" Consumer Notebook FHD Intel i5-1135G7 Intel Iris 8GB 512GB SSD Windows 11, NX.A1HAA.00G",ACER,"['Laptops, Tablet', None, None, None]",486.88,"{'GPU': 'Intel Iris', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}" +236910,LPACE00945,"Acer Aspire 15.6"" Consumer Notebook Intel i5-10210U 8GB 256GB SSD Windows 11, A515-54-54B9, NX.HN2AA.008",ACER,"['Laptops, Tablet', None, None, None]",436.88000488281,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Model': 'A515-54-54B9', 'Memory': '8GB'}" +236834,LPMSI00538OB,"MSI Katana 17 Gaming Notebook 17.3"" FHD Intel i7-12650H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B12VGK-217CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +236578,LPHEW02012,"ASUS Chromebook 11.6"" HD+ Intel Celeron-N4020 Intel UHD Graphics 4GB 32GB eMMC SSD Chrome OS Refurbished, C204MA-SS02-CB",ASUS,"['Laptops, Tablet', None, None, None]",99.0,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'HD+', 'Model': 'C204MA-SS02-CB'}" +236567,LPGIG00144OB,"Gigabyte AORUS 17X Gaming Notebook 17.3"" QHD Intel Core i9-13900HX RTX 4090 32GB 2TB SSD Windows 11 Pro, AZF-B5US665SP(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",3644.8900085449,"{'GPU': 'RTX 4090', 'Maximum Resolution': '2560x1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17.3""'}" +236463,LPASU00685OB,"ASUS VivoBook 14"" Laptop FHD Intel Core i3-1115G4 Intel UHD Graphics 4GB 128GB SSD Windows 11 Home S, F415EA-AS31(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",284.05,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home S', 'Memory': '4GB', 'Screen Size': '14""'}" +236431,LPLEN03352,"Lenovo ThinkBook 15 G3 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, 8GB DDR4, 256GB SSD, AMD Radeon Graphics, Fingerprint Reader, Windows 10 Pro",LENOVO,"['Laptops, Tablet', None, None, None]",599.0,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'New', 'Screen Resolution Description': 'FHD', 'Memory': '8GB', 'Screen Size': '15.6""'}" +236379,LPLEN03339,"Lenovo ThinkPad T14s Gen 2 14"" Notebook AMD Ryzen 5 PRO 5650U 8GB 256 GB SSD Windows 11 Pro, 20XF00AECA",LENOVO,"['Laptops, Tablet', None, None, None]",1430.2,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20XF00AECA', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14s Gen 2'}" +236378,LPLEN03338,"Lenovo ThinkPad T14s Gen 2 20XF00AEUS 14"" Notebook - Full HD - 1920 x 1080 - AMD Ryzen 5 PRO 5650U Hexa-core (6 Core) 2.30 GHz - 8 GB Total RAM - 8 GB On-board Memory - 256 GB SSD - Storm Gray - AMD Chip - Windows 11 - AMD Radeon Graphics - In-plane Switc",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20XF00AEUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14s Gen 2'}" +236231,LPGIG00146OB,"Gigabyte AORUS 17H Gaming Notebook 17.3"" FHD Intel i7-13700H RTX 4080 16GB 1TB SSD Windows 11 Home, BXF-74US554SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",2249.1,"{'GPU': 'RTX 4080', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +236120,LPGIG00153,"Gigabyte G5 MF Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 4050 8GB 512GB SSD Windows 11 Home, G5 MF-F2US333SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1349.0,"{'GPU': 'GeForce RTX 4050', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +236096,LPGIG00150,"Gigabyte AORUS 15X Gaming Notebook 15.6"" QHD Intel i7-13700HX GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, ASF-83US754SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",2399.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '2560 x 1440', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +235945,LPLEN02684OB,"Lenovo ThinkPad X1 Yoga Gen 5 Business 2 in 1 Notebook, 14"" Touchscreen, Full HD 1920 x 1080, Intel Core i5-10210U, 16 GB, 256 GB SSD, Windows 10 Pro, 20UB0067US(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",931.92000068665,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +235934,LPLEN03299OB,"Lenovo ThinkPad T14 Gen 2 Notebook, 14"" Full HD, Intel Core i5-1135G7, GeForce MX450 2GB, 8GB RAM, 256GB SSD, Windows 11 Pro, 3Yr Lenovo On-site Warranty, 20W1SBJG00(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",759.89,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" +235931,LPMSI00530OB,"MSI Katana GF66 Gaming Notebook 15.6"" FHD Intel i5-11400H GeForce RTX 3050 8GB 512GB SSD Windows 11 Home,11UC-1091US(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",651.48999847412,"{'GPU': 'GeForce RTX 3050', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +235850,LPACE00943,"Acer A515-56-351F Consumer Notebook 15.6"" FHD Intel Ci3-1115G4 Integrated GPU 8GB 256GB SSD Windows 11 S, NX.AWEAA.003",ACER,"['Laptops, Tablet', None, None, None]",749.0,"{'GPU': 'Integrated GPU', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 S', 'Memory': '8GB', 'Screen Size': '15.6""'}" +235849,LPACE00942,"ACER A315-56-54YT Consumer Notebook 15.6"" FHD Intel Core i5-1035G1 Integrated Graphic 8GB 256GB SSD Windows 11, NX.A0TAA.00G",ACER,"['Laptops, Tablet', None, None, None]",749.0,"{'GPU': 'Integrated Graphic', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11', 'Memory': '8GB', 'Screen Size': '15.6""'}" +235806,LPCNO00060,"ASUS ZenBook Consumer Notebook 15.6"" FHD AMD Ryzen 7 5700U GeForce MX450 8GB 256GB SSD Windows 11 Home, Q508UG-212.R7TBL",ASUS,"['Laptops, Tablet', None, None, None]",599.88,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +235786,LPLEN03312,"Lenovo T490 Business Notebook 14"" FHD Intel i5-8265U Intel UHD Graphics 16GB 256GB SSD Windows 10 Pro Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'GPU': 'Intel UHD Graphics', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +235465,LPGIG00142OB,"Gigabyte G Series Gaming Notebook 15.6"" FHD Intel i5-12500H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home, G5 KE-52US213SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",899.89,"{'GPU': 'GeForce RTX 3060', 'Maximum Resolution': '1080p Full HD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '15.6""'}" +235464,LPMSI00543,"MSI Katana GF76 Gaming Notebook 17.3"" FHD Intel i7-11800H GeForce RTX 3050 Ti 16GB 512GB SSD Windows 10 Home .",MSI,"['Laptops, Tablet', None, None, None]",1199.0,"{'GPU': 'GeForce RTX 3050 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 10 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +235356,LPLEN03308,"Lenovo ThinkPad T14 Gen 2 Business Notebook, 14"" Full HD, Intel Core i5-1135G7, MX450 2GB, 16GB RAM, 256GB + 512GB SSD, Windows 11 Pro, 3Yr On-site Warranty",LENOVO,"['Laptops, Tablet', None, None, None]",1799.0,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +235353,LPLEN03307,"Lenovo ThinkPad T14 Gen 2 Business Notebook, 14"" Full HD, Intel Core i5-1135G7, MX450 2GB, 16GB RAM, 256GB SSD, Windows 11 Pro, 3Yr On-site Warranty",LENOVO,"['Laptops, Tablet', None, None, None]",1599.0,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '16GB', 'Screen Size': '14""'}" +235266,LPLEN03301,"Lenovo IdeaPad Flex 5 14"" Touchscreen Convertible Notebook, OLED 2.8K, Intel i7-1255U, 16GB RAM, 512GB SSD, Storm Gray, Windows 11 Home",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '82R7000ECF', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'IdeaPad', 'General InformationProduct Series': 'Flex 5 14IAU7'}" +235125,LPACE00940,"Acer Nitro Gaming Notebook 15.6"" FHD Intel i7-12700H GeForce RTX 3060 16GB 512GB SSD Windows 11, NH.QFMAA.005-CC",ACER,"['Laptops, Tablet', None, None, None]",1399.0,"{'Model': 'AN515-58-7272-CA', 'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz'}" +235121,LPASU00735,"ASUS Vivobook 16X 4K OLED Notebook 16"" Intel i5-12500H Iris Xe Graphics 16GB 512GB SSD Windows 11 Home, X1603ZA-DS51-CA",ASUS,"['Laptops, Tablet', None, None, None]",993.87999725342,"{'GPU': 'Iris Xe Graphics', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '16""'}" +235095,LPLEN03299,"Lenovo ThinkPad T14 Gen 2 Notebook, 14"" Full HD, Intel Core i5-1135G7, GeForce MX450 2GB, 8GB RAM, 256GB SSD, Windows 11 Pro, 3Yr Lenovo On-site Warranty, 20W1SBJG00",LENOVO,"['Laptops, Tablet', None, None, None]",799.88,"{'GPU': 'GeForce MX450', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" +235072,LPMSI00538,"MSI Katana 17 Gaming Notebook 17.3"" FHD Intel i7-12650H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, Katana 17 B12VGK-217CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +235071,LPMSI00537,"MSI Pulse 17 Gaming Notebook 17.3"" FHD Intel i7-13700H GeForce RTX 4070 16GB 1TB SSD Windows 11 Home, B13VGK-216CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'GPU': 'GeForce RTX 4070', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '17.3""'}" +235034,LPASU00731,"ASUS ROG Flow Gaming Notebook 13.4"" WQXGA Intel i9-13900H RTX 4050 16GB 1TB SSD Windows 11 Home, GZ301VU-DS91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",2499.0,"{'GPU': 'RTX\xa04050', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}" +234976,LPASU00728,"ASUS Zephyrus Duo Gaming Notebook 16"" WQXGA AMD Ryzen 9 7945HX RTX 4090 32GB 2TB SSD Windows 11 Pro, GX650PY-XS97",ASUS,"['Laptops, Tablet', None, None, None]",4999.0,"{'GPU': 'RTX\xa04090', 'Maximum Resolution': '2560X1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +234830,LPMSI00534,"MSI Raider GE78 HX Gaming Notebook 17"" QHD Intel i9-13980HX GeForce RTX 4080 64GB 2TB SSD Windows 11 Pro, Raider GE78HX 13VH-080US",MSI,"['Laptops, Tablet', None, None, None]",4499.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '2560x1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17""'}" +234829,LPMSI00533,"MSI Raider GE78 HX Gaming Notebook 17"" QHD Intel i9-13980HX GeForce RTX 4090 32GB 2TB SSD Windows 11 Pro, GE78HX 13VI-079US",MSI,"['Laptops, Tablet', None, None, None]",4999.0,"{'GPU': 'GeForce RTX 4090', 'Maximum Resolution': '2560x1600', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '17""'}" +234828,LPMSI00532,"MSI TITAN GT77 Gaming Notebook 17.3"" UHD Mini-LED 144Hz, Intel i9-13980HX GeForce RTX 4080 64GB 2TB SSD Windows 11 Pro, Titan GT77HX 13VH-046US",MSI,"['Laptops, Tablet', None, None, None]",5599.0,"{'GPU': 'GeForce RTX 4080', 'Maximum Resolution': '3840x2160', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '64GB', 'Screen Size': '17.3""'}" +234427,LPLEN03212OB,"Lenovo IdeaPad 5 Consumer Notebook 15.6"" FHD Intel Core i5-1235U Intel Iris Xe 8GB 512GB SSD Windows 11 Home, 82SF000UCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.89,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +234344,LPLEN03269,"Lenovo IdeaPad 3 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon Graphics 8GB 256GB SSD Windows 11 Home, 082RN0013CC",LENOVO,"['Laptops, Tablet', None, None, None]",549.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +234261,LPLEN03268,"Lenovo ThinkPad T580 15.6"" Business Notebook, Intel Core I5 8350U,16 GB RAM, 256 GB SSD, Windows 10 Pro, Refurbished",LENOVO,"['Laptops, Tablet', None, None, None]",399.88,"{'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '256GB', 'CPU': 'i5-8350U', 'Notebook Type': 'Business Notebook', 'Notebook Chassis': 'Clamshell', 'Touch Screen': 'No'}" +233963,LPCOI00001OB,"CORSAIR VOYAGER Gaming Notebook 16"" QHD AMD Ryzen 7 6800HS Radeon 6800M 16GB 1TB SSD Windows 11 Home,CN-9000003-NA(Open Box)",CORSAIR,"['Laptops, Tablet', None, None, None]",989.89,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}" +233739,LPGIG00141OB,"Gigabyte AORUS 17 Gaming Notebook 17.3"" FHD Intel i7-12700H GeForce RTX 3080 Ti 32GB 1TB SSD Windows 11 Home, YE5-74US544SH(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",1799.1,"{'GPU': 'GeForce RTX 3080 Ti', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '32GB', 'Screen Size': '17.3""'}" +233431,LPLEN03053OB,"Lenovo IdeaPad 5 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon 8GB 512GB SSD Windows 11 Home, 82SG000PCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",552.78999023437,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +233416,LPMSI00528,"MSI CreatorPro Business Notebook 16"" QHD+ Intel i7-12700H RTX A3000 32GB 1TB SSD Windows 11 Pro, B12UKST-074CA",MSI,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'RTX A3000', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +233412,LPMSI00527,"MSI CreatorPro Business Notebook 16"" QHD+ Intel i7-12700H NVIDIA RTX A5500 32GB 1TB SSD Windows 11 Pro,",MSI,"['Laptops, Tablet', None, None, None]",5299.0,"{'GPU': 'NVIDIA Quadro RTX A5500', 'Maximum Resolution': '2560 x 1600', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +233185,LPLEN03202OB,"Lenovo ThinkPad X380 Yoga Business Notebook 13.3"" FHD Intel i5-8350U Integrated GPU 16GB 512GB SSD Windows 10 Pro Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",404.1,"{'GPU': 'Integrated', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'Yes', 'Operating System': 'Windows 10 Pro', 'Memory': '16GB', 'Screen Size': '13.3""'}" +232961,LPMSI00524,"MSI GP66 Leopard Gaming Notebook 15.6"" FHD Intel Core i7-11800H NVIDIA RTX3070 16GB 512GB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +232811,LPMSI00514OB,"MSI Summit E13 Flip Evo Notebook 13.4"" FHD Intel Core i7-1280P Intel Iris Xe 16GB 1TB SSD Windows 11 Home, A12MT-036CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1318.4899984741,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920x1200', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Home', 'Memory': '16GB', 'Screen Size': '13.4""'}" +232296,LPSAS00147,"Samsung Galaxy Tab S6 Lite (2022 Edition) SM-P613 Tablet - 10.4"" WUXGA+ - Octa-core (Kryo 465 Gold Dual-core (2 Core) 2.30 GHz + Kryo 465 Silver Hexa-core (6 Core) 1.80 GHz) - 4 GB RAM - 64 GB Storage - Android 12 - Oxford Gray - Qualcomm SM7125 Snapdrago",SAMSUNG,"['Laptops, Tablet', None, None, None]",465.06,"{'General InformationManufacturer': 'Samsung', 'General InformationManufacturer Part Number': 'SM-P613NZAAXAC', 'General InformationBrand Name': 'Samsung', 'General InformationProduct Line': 'Galaxy Tab S6 Lite (2022 Edition)', 'General InformationProduct Model': 'SM-P613', 'General InformationProduct Name': 'Galaxy Tab S6 Lite (2022 Edition) SM-P613 Tablet'}" +231684,LPASU00666OB,"Asus Vivobook 16 Laptop 16"" WUXGA AMD Ryzen 5 5600H AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, M1603QA-RH51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",569.05,"{'GPU': 'AMD Radeon Graphics', 'Maximum Resolution': '1920 x 1200', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '16""'}" +231575,LPACE00912OB,"ACER Nitro 5 Gaming Notebook 15.6"" FHD Intel Core i5-11400H GTX 1650 8GB 256GB SSD Windows 11 Home, NH.QEKAA.007(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",526.39,"{'GPU': 'GTX 1650', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '15.6""'}" +230357,LPLEN03000OB,"Lenovo IdeaPad Flex 5 Consumer Notebook 14"" WUXGA Touchscreen AMD Ryzen 5 5500U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 82R9004HCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",554.69000305176,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +229905,LPLEN03130OB,"Lenovo Consumer Laptop 15.6"" FHD AMD Ryzen 5 5625U AMD Radeon Graphics 12GB 512GB SSD Windows 11 Home, 82RN0015CC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",664.89,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +229816,LPASU00627OB,"ASUS TUF Gaming Gaming Notebook 15.6"" FHD AMD Ryzen 7 6800H GeForce RTX 3070 16GB 512GB SSD Windows 11 Home, TUF507RR-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1412.0600000763,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +229767,LPCNO00053OB,"HP 15Z-EF2000 Consumer Notebook 15.6"" FHD AMD Ryzen 5 5500U AMD Radeon Vega 7 8GB 256GB SSD Windows 11 Home, 2J4V7AV(Open Box)",HP,"['Laptops, Tablet', None, None, None]",501.49000038147,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +229750,LPACE00880OB,"ACER Aspire A515-54 Consumer Notebook 15.6"" Intel i7-10510U 8GB 512GB SSD Windows 11 Home, A515-54-75HU, NX.HN2AA.009(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +229746,LPASU00608OB,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Pentium Silver, Intel UHD Graphics 605, 8GB DDR4, 128GB SSD, Win11 Home, X515MA-DS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",379.05,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Pentium Silver'}" +229744,LPCNO00052OB,"ASUS VivoBook F515 Consumer Notebook 15.6"" FHD Intel Core i7-1165G7 Intel Iris Xe Graphics 8GB 512GB SSD Windows 11 Home, F515EA-DH75(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",603.14,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +229577,LPASU00610OB,"ASUS TUF Gaming Dash Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, TUF517ZC-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1159.0899978638,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +229459,LPLEN03138,"Lenovo Business Notebook 14"" FHD Intel i5-1145G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Pro, 20W00155US",LENOVO,"['Laptops, Tablet', None, None, None]",1599.88,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20W00155US', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Maximum Resolution': '1920 x 1080', 'General InformationBrand Name': 'Lenovo'}" +229425,LPASU00665,"ASUS Zenbook Pro Business Notebook 16"" UHD OLED Intel Core i9-12900H GeForce RTX 3060 32GB 1TB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",3999.0,"{'GPU': 'GeForce RTX\xa03060', 'Maximum Resolution': '3840 x 2400', 'Touch Screen': 'Yes', 'Operating System': 'Windows 11 Pro', 'Memory': '32GB', 'Screen Size': '16""'}" +229280,LPASU00658OB,"ASUS ZenBook 14 Consumer Notebook 14"" FHD AMD Ryzen 5 5600H AMD Radeon Vega 7 8GB 512GB SSD Windows 11 Home, UM425QA-EH59-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",664.05,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +228044,LPMSI00516,"MSI Modern 14 Business Notebook 14"" FHD Intel Core i5-1235U Intel Iris Xe 8GB 512GB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",929.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': '1920 x 1080', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Home', 'Memory': '8GB', 'Screen Size': '14""'}" +227941,LPLEN03049OB,"Lenovo Legion 5 Gaming Notebook 15.6"" FHD AMD Ryzen 7 6800H GeForce RTX 3070 Ti 16GB 512GB SSD Windows 11, 82RD003YCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1780.0900054932,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '165Hz', 'SSD Capacity': '512GB'}" +227818,LPHEW01913OB,"HP 15-DY2067MS Consumer Notebook 15.6"" FHD Touchscreen Intel Core i5-1135G7 Intel Iris X Graphics 12GB 256GB SSD Windows 11 Home, 4W2K2UA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",498.64,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +227801,LPCNO00048OB,"ASUS VivoBook R Consumer Notebook 15.6"" FHD Touchscreen Intel Core i5-1135G7 Iris Xe Graphics 8GB 256GB SSD Windows 11 Home, R565EA-US51T(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +227798,LPMSI00513,"MSI Katana GF76 Gaming Notebook 17.3"" FHD Intel Core i7-12700H GeForce RTX3070TI 16GB 1TB SSD Windows 11 Home .",MSI,"['Laptops, Tablet', None, None, None]",2449.0,"{'Memory': '16GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}" +227738,LPRAZ00055,"RAZER Blade 15 Gaming Notebook 15.6"" QHD Intel Core i7-12800H GeForce RTX 3070 Ti 16GB 1TB SSD Windows 11 Home .",RAZER,"['Laptops, Tablet', None, None, None]",3999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}" +227687,LPGIG00138,"GIGABYTE AERO 16 Gaming Notebook 15.6"" OLED UHD Intel Core i9-12900H GeForce RTX 3080 Ti 32GB 2TB SSD Windows 11 Pro, YE5-A4US948HP",GIGABYTE,"['Laptops, Tablet', None, None, None]",2599.0,"{'Memory': '32GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}" +227667,LPCNO00054,"LENOVO ThinkPad E15 Gen 2 Business Notebook 15.6"" FHD Intel Core i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 10 Pro .",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +227662,LPCNO00053,"HP 15Z-EF2000 Consumer Notebook 15.6"" FHD AMD Ryzen 5 5500U AMD Radeon Vega 7 8GB 256GB SSD Windows 11 Home, 2J4V7AV",HP,"['Laptops, Tablet', None, None, None]",527.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +227402,LPLGE00026OB,"LG Gram Ultra-Lightweight EVO Platform Notebook, 17"" WQXGA, Intel i7-1260P, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 17Z90Q-K.AA75A9(Open Box)",LG,"['Laptops, Tablet', None, None, None]",1162.6900030518,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i7-1260P'}" +227352,LPGIG00133OB,"Gigabyte A5 K1 Gaming Notebook 15.6"" FHD AMD Ryzen 5 5600H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home, A5 K1-AUS1130SB(Open Box)",GIGABYTE,"['Laptops, Tablet', None, None, None]",936.79000152588,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +227040,LPASU00609OB,"ASUS TUF Gaming Notebook, 15.6” FHD, Intel Core i5-10300H, GeForce GTX 1650, 8GB DDR4, 1TB SSD, Windows 11 Home, FX506LH-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",824.29000152588,"{'Notebook Type': 'Gaming', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'CPU': 'Intel Core i5-10300H'}" +226829,LPLEN03097OB,"Lenovo IdeaPad 3 Notebook, 15.6"" FHD, AMD Ryzen 5 5625U, AMD Radeon Graphics, 12GB DDR4, 512GB SSD, Windows 11 Home, 82RN0018CF(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '12GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 5 5625U'}" +226770,LPACE00896OB,"Acer A715 Gaming Notebook 15.6"" FHD AMD Ryzen 7 5700U RTX3050 16GB 512GB SSD Windows 11, NH.QE5AA.001(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",764.1,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +226726,LPASU00547OB,"ASUS Vivobook 13 Slate Notebook, 13.3"" FHD Touch Screen, Intel Pentium Silver N6000, Intel UHD Graphics, 4GB, 128GB SSD, Win11 Home, T3300KA-DH91T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",332.39,"{'Screen Size': '13.3""', 'Memory': '4GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '128GB'}" +226719,LPLGE00021OB,"LG gram Ultra-Lightweight Intel EVO Platform Notebook, 17"" QHD, Intel i5-1155G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 17Z95P-K.AR55A8(Open Box)",LG,"['Laptops, Tablet', None, None, None]",759.89,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}" +226506,LPLEN03099,"Lenovo ThinkPad E15 Gen 4 21ED0043US 15.6"" Notebook - Full HD - 1920 x 1080 - AMD Ryzen 7 5825U Octa-core (8 Core) 2 GHz - 16 GB Total RAM - 8 GB On-board Memory - 512 GB SSD - Mineral Metallic - AMD Chip - Windows 11 - AMD Radeon Graphics - In-plane Swit",LENOVO,"['Laptops, Tablet', None, None, None]",1199.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '21ED0043US', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'E15 Gen 4'}" +226464,LPLEN03086OB,"Lenovo Legion 5 Gaming Notebook 16"" QHD Intel i7-12700H GeForce RTX 3070 16GB 512GB SSD Windows 11,82RF00ADCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1529.89,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '165Hz', 'SSD Capacity': '512GB'}" +226419,LPLEN03001OB,"Lenovo Legion 5 Pro Gaming Notebook 16"" QHD AMD Ryzen 7 6800H GeForce RTX 3060 16GB DDR5 1TB SSD Windows 11, 82RG006WCC(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",1397.5899969482,"{'Memory': '16GB', 'Screen Size': '16""', 'Operating System': 'Windows 11', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}" +226175,LPMSI00504OB,"MSI GP66 Leopard Gaming Notebook 15.6"" FHD Intel Core i7-11800H NVIDIA RTX3070 16GB 512GB SSD Windows 11 Home, GP66 11UG-689CA Leopard(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1114.0900007629,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +225847,LPGIG00136,"Gigabyte AORUS 5 KE4 Gaming Notebook 15.6"" FHD Intel Core i7-12700H GeForce RTX 3060 16GB 1TB SSD Windows 11 Home, KE4-72US314SH",GIGABYTE,"['Laptops, Tablet', None, None, None]",1999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}" +225432,LPHEW01865OB,"HP OMEN 16-b0020ca Gaming Notebook, 16.1"" QHD, Intel Core i7-11800H, NVIDIA GeForce RTX 3070, 16GB DDR4, 1TB SSD, Windows 10 Home, 374U9UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",1091.5900007629,"{'Memory': '16GB', 'Screen Size': '16.1', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '2560 x 1440', 'SSD Capacity': '1TB', 'CPU': 'Intel Corei7-11800H'}" +225199,LPLEN03053,"Lenovo IdeaPad 5 Consumer Notebook 15.6"" FHD AMD Ryzen 7 5825U Integrated Radeon 8GB 512GB SSD Windows 11 Home, 82SG000PCC",LENOVO,"['Laptops, Tablet', None, None, None]",581.88000488281,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +225197,LPASU00559OB,"ASUS Zenbook Notebook 13.3"" FHD OLED Intel Core i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 11 Home, UX325EA-DS59-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",741.83999328613,"{'Screen Size': '13.3""', 'Memory': '8GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +224938,LPMSI00467OB,"MSI Crosshair 15 Gaming Notebook, 15.6"" FHD, Intel Core i7-12700H, RTX3070Ti, 16GB DDR4, 512GB SSD, Windows 11 Home, Crosshair 15 B12UGSZ-480CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1129.39,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '240Hz', 'SSD Capacity': '512GB'}" +224870,LPASU00651,"ASUS P1512CEA Consumer Notebook 15.6"" FHD Intel Core i7-1165G7 Intel Iris Xe Graphics 16GB 1TB SSD Windows 11 Pro,P1512CEA-Q71P-CB",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" +224867,LPASU00650,"ASUS Consumer Notebook 15.6"" FHD Intel Core i7-1165G7 Intel Iris Xe Graphics 16GB 1TB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" +224865,LPASU00649,"ASUS P1512CEA Consumer Notebook 15.6"" FHD Intel Core i5-1135G7 Intel UHD Graphics 8GB 512GB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",1049.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +224859,LPASU00647,"ASUS P1512CEA Consumer Notebook 15.6"" FHD Intel Core i5-1135G7 Intel UHD Graphics 8GB 512GB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",1049.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +224498,LPGIG00134,"GIGABYTE A7 K1 Gaming Notebook 17.3"" FHD AMD Ryzen 7 5800H GeForce RTX 3060 16GB 512GB SSD Windows 11 Home .",GIGABYTE,"['Laptops, Tablet', None, None, None]",1699.0,"{'Memory': '16GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +224373,LPASU00625OB,"ASUS ROG Strix G15 Gaming Notebook 15.6"" WQHD AMD Ryzen 9 6900HX GeForce RTX 3070 Ti 16GB 1TB SSD Windows 11 Pro, G513RW-XS91-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",1619.89,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}" +224235,LPASU00590OB,"ASUS Vivobook 14 Flip Notebook, 14"" FHD touch Screen, Intel Celeron N4500, Intel UHD Graphics, 4GB DDR4, 128GB SSD, Win11 Home, J1400KA-DS01T-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",474.05,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Convertible (2 in 1)', 'Screen Size': '14""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4500'}" +224223,LPLEN03000,"Lenovo IdeaPad Flex 5 Consumer Notebook 14"" WUXGA Touchscreen AMD Ryzen 5 5500U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 82R9004HCC",LENOVO,"['Laptops, Tablet', None, None, None]",583.88,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +224079,LPACE00896,"Acer A715 Gaming Notebook 15.6"" FHD AMD Ryzen 7 5700U RTX3050 16GB 512GB SSD Windows 11, NH.QE5AA.001",ACER,"['Laptops, Tablet', None, None, None]",849.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +223863,LPASU00621OB,"ASUS ROG Zephrus G15 Gaming Notebook 15.6"" WQHD AMD Ryzen 9 6900HS GeForce RTX 3080 32GB 1TB SSD Windows 11 Pro, GA503RS-XS92-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",2015.89,"{'Memory': '32GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}" +223776,LPACE00851OB,"Acer TravelMate P2 Notebook,15.6"" FHD Intel Core i5-1135G7, Intel HD Graphics, 8GB DDR4, 256GB SSD, Windows 10 Pro, TMP215-53-53N6-US (NX.VPUAA.003)(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",379.89,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +223245,LPMSI00497,"MSI Pulse GL66 Gaming Notebook 15.6"" FHD Intel i7-11800H RTX3070 16GB 512GB SSD Windows 10 Home, Pulse GL66 11UGKV-231CA",MSI,"['Laptops, Tablet', None, None, None]",1999.88,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +222734,LPASU00623,"ASUS ROG Zephyrus NR2202 Business Notebook 16"" WXQGA AMD Ryzen 9 6900HX RTX 3080 Ti 64GB 1TB SSD Windows 11 Pro .",ASUS,"['Laptops, Tablet', None, None, None]",4999.0,"{'Memory': '64GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}" +222656,LPHEW01811OB,"HP Pavilion 15-eh2010ca Notebook 15.6"" FHD Touchscreen AMD Ryzen 5 5625U AMD Radeon Graphics 8GB 512GB SSD Windows 11 Home, 2L7T5UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",553.74000610352,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +222442,LPASU00621,"ASUS ROG Zephrus G15 Gaming Notebook 15.6"" WQHD AMD Ryzen 9 6900HS GeForce RTX 3080 32GB 1TB SSD Windows 11 Pro, GA503RS-XS92-CA",ASUS,"['Laptops, Tablet', None, None, None]",2239.88,"{'Memory': '32GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '240Hz', 'SSD Capacity': '1TB'}" +222238,LPHEW01837,"HP OMEN 16 Consumer Notebook 16.1"" FHD AMD Ryzen 5 5600H Radeon Graphics 16GB 1TB SSD Windows 10 Home .",HP,"['Laptops, Tablet', None, None, None]",1799.0,"{'Memory': '16GB', 'Screen Size': '16.1""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '1TB'}" +221961,LPHEW01834,"HP EliteBook 640 G9 14"" Business Notebook Intel i5-1245U 16GB RAM 512GB SSD Windows 10 Pro, 6C0Z2UT#ABA",HP,"['Laptops, Tablet', None, None, None]",1011.9599990845,"{'General InformationManufacturer': 'HP Inc.', 'General InformationManufacturer Part Number': '6C0Z2UT#ABA', 'GPU': 'Intel Iris Xe', 'General InformationManufacturer Website Address': 'http://www.hp.com', 'Maximum Resolution': '1080p Full HD', 'General InformationBrand Name': 'HP'}" +221908,LPASU00603OB,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics, 12GB DDR4, 512GB SSD, Win11 Home, X515EA-DS79-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",741.83999694824,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Core i7-1165G7'}" +221900,LPLGE00027,"LG gram Ultra-Lightweight EVO Platform Notebook, 17"" WQXGA, Intel i5-1240P, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 17Z90Q-K.AR55A9",LG,"['Laptops, Tablet', None, None, None]",1167.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '17""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1240P'}" +221897,LPLGE00025,"LG gram Ultra-Lightweight EVO Platform Notebook, 16"" WQXGA, Intel i5-1240P, 8GB, 512GB SSD, Windows 11 Home, 16Z90Q-K.AR55A9",LG,"['Laptops, Tablet', None, None, None]",1135.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1240P'}" +221642,LPLEN02696OB,"Lenovo Thinkpad T570 Business Notebook, 15.6"" FHD, Intel Core i5-7300, 8 GB, 256 GB SSD, Windows 10 Pro, KIT-LE-73996, (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",423.86000026703,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-7300'}" +221447,LPACE00888,"Acer TravelMate P2 14"" Business Notebook , FHD, Intel Core i5-1135G7,8 GB RAM, 256 GB SSD, Windows 11 Pro, Intel Iris Xe Graphics, NX.VPKAA.00K",ACER,"['Laptops, Tablet', None, None, None]",499.0,"{'GPU': 'Intel Iris Xe', 'Maximum Resolution': 'FHD', 'Touch Screen': 'No', 'Operating System': 'Windows 11 Pro', 'Memory': '8GB', 'Screen Size': '14""'}" +221260,LPSAS00117,"SAMSUNG Galaxy Book Consumer Notebook 15.6"" FHD Intel i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 10 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",699.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +221194,LPMSI00445OB,"MSI Modern 15 Ultra Thin and Light Notebook, 15.6"" FHD Intel Core i5-1155G7, Intel Iris Xe, 8 GB DDR4, 256GB NVMe SSD, Windows 11 Home, Modern 15 A11MU-863CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",459.69000305176,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}" +220707,LPRAZ00054,"RAZER Razer Blade 14 Gaming Notebook 14"" QHD AMD Ryzen 9 6900HX GeForce RTX 3080Ti 16GB 1TB SSD Windows 11 Home .",RAZER,"['Laptops, Tablet', None, None, None]",4499.0,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2560 x 1440', 'Refresh Rate': '165Hz', 'SSD Capacity': '1TB'}" +220455,LPASU00583OB,"ASUS TUF Gaming Notebook, 15.6” FHD, Ryzen 5 4600H,GeForce GTX 1650, 8GB, 512GB SSD, Windows 11 Home, FA506IHR-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",827.89000091553,"{'Notebook Type': 'Gaming', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'CPU': 'Ryzen 5 4600H'}" +220435,LPSAS00116,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i7-1165G7 Iris Xe Graphics 8GB 256GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1730.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +220434,LPSAS00115,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i5-1135G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1730.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +220433,LPSAS00114,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i5-1135G7 Iris Xe Graphics 8GB 256GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1600.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +220432,LPSAS00113,"SAMSUNG Galaxy Book Pro Consumer Notebook 13.3"" FHD Intel i5-1135G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1600.0,"{'Memory': '8GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +220431,LPSAS00112,"SAMSUNG Galaxy Book Pro Consumer Notebook 13.3"" FHD Intel i7-1165G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1730.0,"{'Memory': '8GB', 'Screen Size': '13.3""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +220429,LPSAS00111,"SAMSUNG Galaxy Book Pro Consumer Notebook 15.6"" FHD Intel i7-1165G7 Iris Xe Graphics 8GB 512GB SSD Windows 11 Home .",SAMSUNG,"['Laptops, Tablet', None, None, None]",1870.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +220336,LPMSI00429OB,"MSI Katana GF66 Gaming Notebook, 15.6"" FHD, Intel Core i7-11800H, RTX3060, 16GB DDR4, 512 GB SSD, Windows 11 Home, Katana GF66 11UE-641CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",786.48999847412,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +220330,LPASU00584OB,"ASUS TUF Gaming Notebook, 15.6” FHD, Ryzen 7 5800H,GeForce  RTX 3060, 16GB, 512GB SSD, Windows 11 Home, FA506QM-DS71-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",899.89,"{'Notebook Type': 'Gaming', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'CPU': 'Ryzen\xa07\xa05800H'}" +220228,LPACE00877OB,"Acer Nitro 5 Gaming Notebook,15.6"" FHD, Intel i7-11800H, NVIDIA GeForce RTX3060, 16GB DDR4, 512GB SSD, Windows 11, NH.QEXAA.004(Open Box)",ACER,"['Laptops, Tablet', None, None, None]",961.08999023437,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +219988,LPASU00610,"ASUS TUF Gaming Dash Gaming Notebook 15.6"" FHD Intel i5-12450H GeForce RTX 3050 16GB 512GB SSD Windows 11 Home, TUF517ZC-DS51-CA",ASUS,"['Laptops, Tablet', None, None, None]",1287.8799972534,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +219505,LPACE00880,"ACER Aspire A515-54 Consumer Notebook 15.6"" Intel i7-10510U 8GB 512GB SSD Windows 11 Home, A515-54-75HU, NX.HN2AA.009",ACER,"['Laptops, Tablet', None, None, None]",499.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +219458,LPASU00591OB,"ASUS Vivobook Go Notebook, 15.6"" HD, Intel Celeron N4020, Intel UHD Graphics 600, 4GB DDR4, 64GB SSD, Win11 S, L510MA-DS09-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",246.05,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'Intel Celeron N4020'}" +219344,LPHEW01738OB,"HP Probook 640 Business Notebook 14"" Intel Core i5-6300U Intel HD Graphics 520 16GB 512GB Windows 10 Pro Refurbished(Open Box)",HP,"['Laptops, Tablet', None, None, None]",242.89,"{'Storage Type': 'SSD', 'CPU Brand': 'Intel', 'Product Condition': 'Refurbished', 'Product Condition Short': 'Refurb', 'Screen Resolution Description': 'HD', 'Memory': '16GB'}" +219203,LPHEW01773OB,"HP Pavilion 15-eg1010ca Notebook, 15.6"" FHD, Intel Core i5-1155G7, Intel Iris Xe Graphics, 8GB DDR4, 512GB SSD, Windows 11 Home, 2L7V5UA#ABL(Open Box)",HP,"['Laptops, Tablet', None, None, None]",427.39,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +219167,LPASU00573OB,"ASUS Vivobook 15 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, AMD Radeon Graphics, 8GB, 512GB SSD, Win11 Home, M513UA-DS51-CA(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",508.14,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Ryzen 5 5500U'}" +219077,LPHUA00039OB,"HUAWEI MateBook 14s Notebook, 14.2"", 2520 x 1680, Touch Screen, i7-11370H, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Pro, 53012KTB(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",838.82000030518,"{'Memory': '16GB', 'Screen Size': '14.2', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2520 x 1680', 'Refresh Rate': '90 Hz', 'SSD Capacity': '512GB'}" +218899,LPHUA00040OB,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012QNY(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",474.89,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" +218692,LPACE00877,"Acer Nitro 5 Gaming Notebook,15.6"" FHD, Intel i7-11800H, NVIDIA GeForce RTX3060, 16GB DDR4, 512GB SSD, Windows 11, NH.QEXAA.004",ACER,"['Laptops, Tablet', None, None, None]",1067.8800048828,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +218479,LPLEN02718OB,"Lenovo ThinkPad T480 Business Notebook, 14"", Intel Core i5-8350U, Intel UHD Graphics 620, 16 GB DDR4, 256 GB SSD, Windows 10 Pro (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",359.1,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Refresh Rate': '60Hz', 'CPU': 'i5-8350U', 'GPU': 'Intel UHD Graphics 620'}" +218166,LPCNO00033OB,"ASUS VivoBook F Series Notebook 14"" FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics, 8GB RAM 256GB SSD - Windows 10 Home, F415EA-UB51(Open Box)",ASUS,"['Laptops, Tablet', None, None, None]",455.89,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +218123,LPLEN02719OB,"Lenovo ThinkPad T470 Business Notebook, 14"" FHD, Intel Core i5-6300U, Intel HD Graphics 620, 8 GB DDR4, 256 GB SSD, Windows 10 Pro, Refurbished(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",262.69000019073,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'i5-6300U'}" +217884,LPASU00603,"ASUS Vivobook 15 Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics, 12GB DDR4, 512GB SSD, Win11 Home, X515EA-DS79-CA",ASUS,"['Laptops, Tablet', None, None, None]",780.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Intel Core i7-1165G7'}" +217591,LPASU00601,"TUF Gaming F15 TUF507ZC-QS72-CB 15.6"" Rugged Gaming Notebook - Full HD - 1920 x 1080 - Intel Core i7 12th Gen i7-12700H Tetradeca-core (14 Core) 2.30 GHz - 16 GB Total RAM - 512 GB SSD - Mecha Gray - Intel Chip - Windows 11 Home - NVIDIA GeForce RTX 3050",ASUS,"['Laptops, Tablet', None, None, None]",1719.73,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'TUF507ZC-QS72-CB', 'General InformationBrand Name': 'TUF', 'General InformationProduct Line': 'Gaming F15', 'General InformationProduct Model': 'TUF507ZC-QS72-CB', 'General InformationProduct Name': 'Gaming F15 TUF507ZC-QS72-CB Gaming Notebook'}" +217030,LPHUA00037OB,"HUAWEI MateBook 14s Notebook, 14.2"", 2520 x 1680, Touch Screen,Intel Core i7-11370H, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Pro, 53012SUP(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",824.49000038147,"{'Memory': '16GB', 'Screen Size': '14.2', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2520 x 1680', 'Refresh Rate': '90 Hz', 'SSD Capacity': '512GB'}" +216868,LPDYA00006,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Integrated GPU, 8GB, 512GB SSD, Windows 10 Pro, PYS43C-03W03E",Dynabook,"['Laptops, Tablet', None, None, None]",1199.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +216866,LPDYA00005,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Integrated GPU, 8GB, 256GB SSD, Windows 11 Home, PYS43C-04P03C",Dynabook,"['Laptops, Tablet', None, None, None]",1089.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +216865,LPDYA00004,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Integrated GPU, 8GB, 512GB SSD, Windows 10 Pro, PYS43C-03V03E",Dynabook,"['Laptops, Tablet', None, None, None]",1049.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +216861,LPDYA00003,"DYNABOOK C50-J Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Integrated GPU, 8GB, 256GB SSD, Windows 11 Home, PYS43C-04L037",Dynabook,"['Laptops, Tablet', None, None, None]",929.0,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +216801,LPGIG00125,"GIGABYTE AERO 16 YE4 Gaming Notebook, 16"" UHD, Intel Core i9-12900H, NVIDIA GeForce RTX 3080 Ti, 32GB, 2 TB SSD, Windows 11 Pro, AERO 16 YE4-A4US928HP",GIGABYTE,"['Laptops, Tablet', None, None, None]",4999.0,"{'Memory': '32GB', 'Screen Size': '16""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '3840x2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB'}" +216760,LPLEN02741,"Lenovo ThinkPad T15 Gen 2 Business Notebook 15.6"" FHD Intel i5-1145G7 Intel Iris Xe 16GB 512GB SSD Windows 11 Pro 20W400K3US",LENOVO,"['Laptops, Tablet', None, None, None]",1720.9,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +216411,LPLEN02718,"Lenovo ThinkPad T480 Business Notebook, 14"", Intel Core i5-8350U, Intel UHD Graphics 620, 16 GB DDR4, 256 GB SSD, Windows 10 Pro (Refurbished)",LENOVO,"['Laptops, Tablet', None, None, None]",399.0,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Refresh Rate': '60Hz', 'CPU': 'i5-8350U', 'GPU': 'Intel UHD Graphics 620'}" +216336,LPHEW01739,"HP ProBook 820 G3 Notebook, 12.5"", Intel Core i7 6500U, Intel HD Graphics 520, 16G DDR4, 256GB SSD, Windows 10 Pro (Refurbished)",HP,"['Laptops, Tablet', None, None, None]",299.0,"{'Memory': '16GB', 'Screen Size': '12.5""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1366 x 768', 'SSD Capacity': '256GB', 'CPU': 'Intel HD Graphics 520'}" +216286,LPASU00573,"ASUS Vivobook 15 Notebook, 15.6"" FHD, AMD Ryzen 5 5500U, AMD Radeon Graphics, 8GB, 512GB SSD, Win11 Home, M513UA-DS51-CA",ASUS,"['Laptops, Tablet', None, None, None]",534.88,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Clamshell', 'Screen Size': '15.6""', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'CPU': 'Ryzen 5 5500U'}" +216078,LPASU00565,"ASUS ExpertBook B5 Business Notebook, 13.3"" Touch FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics G7, 16GB, 256GB SSD, Windows 10 Pro, B5302FEA-C53P-CA",ASUS,"['Laptops, Tablet', None, None, None]",1199.0,"{'Screen Size': '13.3""', 'Memory': '16GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +216076,LPASU00564,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics G7, 12GB, 512GB SSD, Windows 10 Pro, B1500CEAE-Q73P-CB",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Screen Size': '15.6""', 'Memory': '12GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +216047,LPHUA00036OB,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012TCA(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",569.05,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" +216039,LPASU00562,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i7-1165G7, Intel Iris Xe Graphics G7, 12GB, 512GB SSD, Windows 10 Pro, B1500CEAE-C73P-CA",ASUS,"['Laptops, Tablet', None, None, None]",1399.0,"{'Screen Size': '15.6""', 'Memory': '12GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +216021,LPHEW01733,"HP OMEN 16-c0010ca Gaming Notebook, 16.1"" FHD, AMD Ryzen 7 5800H, NVIDIA GeForce RTX 3050 Ti, 16GB DDR4, 1TB SSD, Windows 11 Home, 374V0UA#ABL",HP,"['Laptops, Tablet', None, None, None]",1172.88,"{'Memory': '16GB', 'Screen Size': '16.1', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 5800H'}" +215919,LPASU00559,"ASUS Zenbook Notebook 13.3"" FHD OLED Intel Core i5-1135G7 Intel Iris Xe Graphics 8GB 256GB SSD Windows 11 Home, UX325EA-DS59-CA",ASUS,"['Laptops, Tablet', None, None, None]",780.88000488281,"{'Screen Size': '13.3""', 'Memory': '8GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +215913,LPASU00558,"ASUS Zenbook Pro 15 Business Notebook, 15.6"" FHD, AMD Ryzen 9 5900HX, NVIDIA GeForce RTX 3050Ti, 16GB, 512GB SSD, Win11 P, UM5500QE-XH99T-CA",ASUS,"['Laptops, Tablet', None, None, None]",1899.0,"{'Screen Size': '15.6""', 'Memory': '16GB', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +215869,LPASU00556,"ASUS ROG Strix G17 Gaming Notebook, 17.3"" FHD, AMD Ryzen 7 4800H, NVIDIA GeForce RTX 3060, 16GB, 1TB SSD, Win11 Home, G713IM-DS71-CA",ASUS,"['Laptops, Tablet', None, None, None]",1196.88,"{'Screen Size': '17.3""', 'Memory': '16GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}" +215432,LPHUA00038OB,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Win 11 Home, 53012STE(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",759.89,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" +215229,LPMSI00415,"MSI Stealth 15M Thin Bezel Gaming Notebook, 15.6"" FHD, Intel Core i7-1260P, RTX3060, 16GB 1TB SSD, Windows 11 Home, Stealth 15M B12UE-027CA",MSI,"['Laptops, Tablet', None, None, None]",1999.0,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '1TB'}" +215152,LPLEN02684,"Lenovo ThinkPad X1 Yoga Gen 5 Business 2 in 1 Notebook, 14"" Touchscreen, Full HD 1920 x 1080, Intel Core i5-10210U, 16 GB, 256 GB SSD, Windows 10 Pro, 20UB0067US",LENOVO,"['Laptops, Tablet', None, None, None]",980.95999992371,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +215140,LPLGE00019OB,"LG gram Ultra-Lightweight Intel EVO Platform Notebook, 16"" QHD, Intel i5-1155G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Windows 11 Home, 16Z95P-K.AR55A8(Open Box)",LG,"['Laptops, Tablet', None, None, None]",712.39,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Thin and Light', 'Screen Size': '16""', 'Maximum Resolution': '2560 x 1600', 'Refresh Rate': '60Hz', 'CPU': 'i5-1155G7'}" +215118,LPHUA00035OB,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, Intel Core i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Home, 53012STE(Open Box)",HUAWEI,"['Laptops, Tablet', None, None, None]",664.89,"{'Screen Resolution Description': 'QHD', 'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz'}" +214982,LPHUA00040,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012QNY",HUAWEI,"['Laptops, Tablet', None, None, None]",499.88,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" +214981,LPHUA00039,"HUAWEI MateBook 14s Notebook, 14.2"", 2520 x 1680, Touch Screen, i7-11370H, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 11 Pro, 53012KTB",HUAWEI,"['Laptops, Tablet', None, None, None]",882.95999992371,"{'Memory': '16GB', 'Screen Size': '14.2', 'Operating System': 'Windows 11 Pro', 'Maximum Resolution': '2520 x 1680', 'Refresh Rate': '90 Hz', 'SSD Capacity': '512GB'}" +214828,LPHUA00038,"HUAWEI Matebook 14 Notebook, 14"", 2160 x 1440, Touch Screen, i5-1135G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Win 11 Home, 53012STE",HUAWEI,"['Laptops, Tablet', None, None, None]",799.88,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '2160 x 1440', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" +214760,LPASU00547,"ASUS Vivobook 13 Slate Notebook, 13.3"" FHD Touch Screen, Intel Pentium Silver N6000, Intel UHD Graphics, 4GB, 128GB SSD, Win11 Home, T3300KA-DH91T-CA",ASUS,"['Laptops, Tablet', None, None, None]",349.88,"{'Screen Size': '13.3""', 'Memory': '4GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '128GB'}" +214188,LPHUA00036,"HUAWEI MateBook D15 Notebook, 15.6"" FHD, i5-1135G7, Intel Iris Xe Graphics, 8GB, 512GB SSD, Win 11 Home, 53012TCA",HUAWEI,"['Laptops, Tablet', None, None, None]",599.0,"{'Memory': '8GB', 'Screen Size': '15.6', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60 Hz', 'SSD Capacity': '512GB'}" +213598,LPASU00540,"ASUS VivoBook Pro 16X Notebook, 16"" FHD, AMD Ryzen 7 5800H, NVIDIA GeForce RTX 3050, 16GB, 512GB SSD, Win11 Home, M7600QC-DH79-CA",ASUS,"['Laptops, Tablet', None, None, None]",1599.0,"{'Screen Size': '16""', 'Memory': '16GB', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '3840 x 2400', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +213386,LPLEN02610OB,"Lenovo Thinkpad T450 Business Notebook | 14"" HD Intel Core i5-4300U 16GB DDR3 256GB SSD Windows 10 Pro (Refurbished)(Open Box)",LENOVO,"['Laptops, Tablet', None, None, None]",265.39,"{'Notebook Type': 'Business', 'Notebook Chassis': 'Clamshell', 'Screen Size': '14""', 'Maximum Resolution': '1366 x 768', 'Refresh Rate': '60Hz', 'CPU': 'i5-4300U'}" +213263,LPLEN02627,"Lenovo ThinkPad L15 Gen2 20X300HDUS 15.6"" Notebook - Full HD - 1920 x 1080 - Intel Core i7 11th Gen i7-1165G7 Quad-core (4 Core) 2.8GHz - 16GB Total RAM - 512GB SSD - Black - no ethernet port - not compatible with mechanical docking stations, only support",LENOVO,"['Laptops, Tablet', None, None, None]",1610.9600012207,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20X300HDUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'L15 Gen2'}" +212372,LPMIF00777,"Microsoft Surface Laptop Go 12.4"" Touchscreen Notebook - QXGA - 1536 x 1024 - Intel Core i5 10th Gen i5-1035G1 Quad-core (4 Core) 1 GHz - 8 GB Total RAM - 1 TB SSD - Windows 10 Home in S mode - Intel UHD Graphics - PixelSense - 13 Hours Battery Run Time -",MICROSOFT,"['Laptops, Tablet', None, None, None]",849.88,"{'General InformationManufacturer': 'Microsoft Corporation', 'General InformationManufacturer Part Number': '1ZZ-00003', 'General InformationManufacturer Website Address': 'http://www.microsoft.ca', 'General InformationBrand Name': 'Microsoft', 'General InformationProduct Line': 'Surface Laptop Go', 'General InformationProduct Name': 'Surface Laptop Go Notebook'}" +210948,LPMSI00381OB,"MSI Prestige 14 Ultra Thin and Light Notebook, 14"" FHD, Intel Core i7-1185G7, NVIDIA GeForce MX450, 16GB DDR4, 1TB SSD, Win10 Home, Prestige 14 A11SB-631CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",736.14,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'SSD Capacity': '1TB', 'CPU': 'i7-1185G7', 'Hard Drive Capacity': 'None'}" +210726,LPDEL00592,"Dell Mobile Precision Workstation 7760 CTO Business Notebook, 17.3"" FHD, Intel Core i7-11850H, NVIDIA RTX A4000, 32GB, 2TB+2TB, Win10Pro",DELL,"['Laptops, Tablet', None, None, None]",4599.0,"{'Memory': '32GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '2TB + 2TB'}" +210233,LPHEW01653OB,"HP 15-ef1013dx Notebook, 15.6"" FHD Touchscreen, AMD Ryzen 7 4700U, AMD Radeon Graphics, 8GB DDR4, 512GB SSD, Windows 10 Home, 364K3UA#ABA(Open Box)",HP,"['Laptops, Tablet', None, None, None]",445.43999923706,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '512GB', 'CPU': 'Ryzen 7 4700U'}" +207246,LPLGE00015OB,"LG Gram 2-in-1 Ultra-Lightweight Notebook, 16"" FHD, Intel i7-1165G7, Intel Iris Xe Graphics, 16GB, 512GB SSD, Windows 10 Home, 16T90P-K.AA75A8(Open Box)",LG,"['Laptops, Tablet', None, None, None]",902.39,"{'Notebook Type': 'Consumer', 'Notebook Chassis': 'Convertible (2 in 1)', 'Screen Size': '16""', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '60Hz', 'CPU': 'i7-1165G7'}" +203438,LPMSI00293OB,"MSI GF75 THIN Gaming Notebook| 17.3"" FHD 144Hz Intel Core i7-10750H | RTX3060, 16GB DDR4, 512GB SSD | Windows 10 Home, VR Ready, GF75 10UEK-003CA(Open Box)",MSI,"['Laptops, Tablet', None, None, None]",1146.4900003815,"{'Memory': '16GB', 'Screen Size': '17.3""', 'Operating System': 'Windows 10', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +202423,LPHEW01543OB,"HP 15.6"" Notebook AMD Ryzen 7 5700U, AMD Radeon Graphics, 16GB DDR4, 1TB SSD, Windows 11 Home, 15-ef2030ca(Open Box)",HP,"['Laptops, Tablet', None, None, None]",854.89,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 5700U'}" +201668,LPICA00012OB,"iCAN MID1016-MK Tablet | 10.1"" (800x1280) IPS Panel, MT8167B ARM Cortex-A35 1.3Ghz, 2GB RAM, 64GB ROM | IMG PowerVR GE8300, 0.3MP FF, 2.0MP FF, BT4.1, Android 9.0(Open Box)",iSmart,"['Laptops, Tablet', None, None, None]",94.89,"{'Model': 'MID1016-MK', 'Weight': '0.48KG', 'Dimensions': '294*182*10.8mm', 'Display Size': '10.1""', 'USB': 'USB(5V/2A) Micro USB', 'Operating System': 'Android 9.0'}" +201233,LPMSI00379,"MSI Modern 14 Ultra Thin and Light Notebook, 14"" FHD, Intel Core i7-1195G7, Intel Iris Xe, 8GB 512GB SSD, Win 10 Home, Modern 14 B11MOU-834CA",MSI,"['Laptops, Tablet', None, None, None]",1099.0,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'SSD Capacity': '512GB', 'CPU': 'i7-1195G7', 'Hard Drive Capacity': 'None'}" +201035,LPACE00816,"Acer Nitro Gaming Notebook,15.6"" FHD, Intel i5-11400H, NVIDIA GeForce RTX 3050, 8GB DDR4, 512GB SSD, Windows 11, AN515-57-599A (NH.QELAA.002)",ACER,"['Laptops, Tablet', None, None, None]",715.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11', 'Maximum Resolution': '1080p Full HD', 'Refresh Rate': '144Hz', 'SSD Capacity': '512GB'}" +199065,LPHEW01543,"HP 15.6"" Notebook AMD Ryzen 7 5700U, AMD Radeon Graphics, 16GB DDR4, 1TB SSD, Windows 11 Home, 15-ef2030ca",HP,"['Laptops, Tablet', None, None, None]",899.88,"{'Memory': '16GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 11 Home', 'Maximum Resolution': '1080p Full HD', 'SSD Capacity': '1TB', 'CPU': 'Ryzen 7 5700U'}" +198627,LPLEN02299,"Lenovo ThinkPad X13 Yoga Gen 2 20W8002XUS 13.3"" Touchscreen 2 in 1 Notebook - WUXGA - 1920 x 1200 - Intel Core i7 (11th Gen) i7-1165G7 Quad-core (4 Core) 2.80 GHz - 16 GB RAM - 256 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switch",LENOVO,"['Laptops, Tablet', None, None, None]",2892.49,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20W8002XUS', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'X13 Yoga Gen 2'}" +198030,LPLEN02269,"Lenovo ThinkPad T14s Gen 2 20WM007YUS 14"" Notebook - Full HD - 1920 x 1080 - Intel Core i5 11th Gen i5-1145G7 Quad-core (4 Core) 2.60 GHz - 8 GB Total RAM - 256 GB SSD - Intel Chip - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switching (IPS) Techn",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'General InformationManufacturer': 'Lenovo Group Limited', 'General InformationManufacturer Part Number': '20WM007YUS', 'General InformationManufacturer Website Address': 'http://www.lenovo.com/ca/en', 'General InformationBrand Name': 'Lenovo', 'General InformationProduct Line': 'ThinkPad', 'General InformationProduct Series': 'T14s Gen 2'}" +195680,LPLEN02131,"Lenovo ThinkPad E14 Business Notebook, 14"" Full HD, AMD Ryzen 5 5500U, 8GB, 256GB SSD, Windows 10 Pro, 20Y70037US",LENOVO,"['Laptops, Tablet', None, None, None]",999.0,"{'Hard Drive Capacity': 'None', 'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz'}" +195447,LPLEN02112,"Lenovo ThinkBook 14s Yoga ITL Notebook | 14"" FHD Touchscreen, Intel i5-1135G7, 8GB DDR4, 256GB SSD, Intel Iris Xe Graphics | Windows 10 Pro, 20WE0014US",LENOVO,"['Laptops, Tablet', None, None, None]",1249.0,"{'Memory': '16GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}" +194554,LPLEN02071,"Lenovo ThinkPad X13 Yoga Gen 2 20W80037US 13.3"" Touchscreen 2 in 1 Notebook - WUXGA - 1920 x 1200 - Intel Core i5 (11th Gen) i5-1135G7 Quad-core (4 Core) 2.40 GHz - 8 GB RAM - 256 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switchi",LENOVO,"['Laptops, Tablet', None, None, None]",2019.0,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20W80037US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'X13 Yoga Gen 2'}" +194211,LPLEN02056,"Lenovo IdeaPad Slim 7i Notebook | 14"" FHD, Intel i5-1135G7, 8GB DDR4, 512GB SSD, Intel Iris Xe Graphics | Windows 10 Home, 82A60011CC",LENOVO,"['Laptops, Tablet', None, None, None]",1259.99,"{'Memory': '8GB', 'Screen Size': '14""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +187812,LPLEN01870,"Lenovo ThinkPad X1 Nano Gen1 20UN000AUS 13"" Ultrabook - Intel Core i7 i7-1160G7 EVO Quad-core (4 Core) 2.10 GHz - 16 GB RAM - 256 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switching (IPS) Technology - English (US) Keyboard - IEEE",LENOVO,"['Laptops, Tablet', None, None, None]",2399.88,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20UN000AUS', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'X1 Nano Gen1'}" +187650,LPLEN01858,"Lenovo ThinkPad E14 Gen 2 20TA0025US 14"" Notebook - Full HD - 1920 x 1080 - Intel Core i7 i7-1165G7 Quad-core (4 Core) 2.80 GHz - 8 GB Total RAM - 512 GB SSD - Black - Windows 10 Pro - Intel Iris Xe Graphics - In-plane Switching (IPS) Technology - English",LENOVO,"['Laptops, Tablet', None, None, None]",1805.7,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20TA0025US', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkPad', 'Product Series': 'E14 Gen 2'}" +185879,LPLEN01757,"Lenovo ThinkBook 15 G2 ITL 20VE006UUS 15.6"" Touchscreen Notebook - Full HD - 1920 x 1080 - Intel Core i7 i7-1165G7 Quad-core (4 Core) 2.80 GHz - 16 GB RAM - 512 GB SSD - Mineral Gray - Windows 10 Pro - Intel UHD Graphics - In-plane Switching (IPS) Technol",LENOVO,"['Laptops, Tablet', None, None, None]",1549.0,"{'Manufacturer': 'Lenovo Group Limited', 'Manufacturer Part Number': '20VE006UUS', 'Manufacturer Website Address': 'http://www.lenovo.com/ca/en', 'Brand Name': 'Lenovo', 'Product Line': 'ThinkBook', 'Product Series': '15 G2 ITL'}" +183163,LPMIF00603,"Microsoft Surface Pro X Tablet - 13"" - 16 GB RAM - 256 GB SSD - Windows 10 Pro - 4G - Matte Black, 1WX-00014",MICROSOFT,"['Laptops, Tablet', None, None, None]",2229.0,"{'Manufacturer': 'Microsoft Corporation', 'Manufacturer Part Number': 'QGM-00001', 'Manufacturer Website Address': 'http://www.microsoft.ca', 'Brand Name': 'Microsoft', 'Product Line': 'Surface Pro X', 'Product Name': 'Surface Pro X Tablet'}" +168807,LPMIF00436,"Microsoft Surface Go 2 Tablet - 10.5"" - Intel Pentium Gold 4425Y 1.70 GHz - 4 GB RAM - 64 GB Storage - Windows 10 Home - Silver - microSDXC Supported - 1920 x 1280 - PixelSense Display - 5 Megapixel Front Camera - 10 Hour Maximum Battery Run Time",MICROSOFT,"['Laptops, Tablet', None, None, None]",479.88,"{'Manufacturer': 'Microsoft Corporation', 'Manufacturer Part Number': 'STZ-00001', 'Manufacturer Website Address': 'http://www.microsoft.ca', 'Brand Name': 'Microsoft', 'Product Line': 'Surface Go 2', 'Product Name': 'Surface Go 2 Tablet'}" +167980,LPSAS00045,"Samsung Galaxy Tab S6 Lite Tablet | 10.4"" Exynos 9611 8-Core Processor, 4GB RAM, 128GB Flash Memory | Android, Oxford Grey with S PEN, SM-P610NZAEXAC",SAMSUNG,"['Laptops, Tablet', None, None, None]",479.99,"{'Memory': '4GB', 'Screen Size': '10.4""', 'Operating System': 'Android', 'Maximum Resolution': 'Others', 'SSD Capacity': '128GB eMMC', 'CPU': 'Exynos 9611'}" +167978,LPSAS00043,"Samsung Galaxy Tab S6 Lite Tablet | 10.4"" Exynos 9611 8-Core Processor, 4GB RAM, 64GB Flash Memory | Android, Oxford Grey with S PEN, SM-P610NZAAXAC",SAMSUNG,"['Laptops, Tablet', None, None, None]",449.99,"{'Memory': '4GB', 'Screen Size': '10.4""', 'Operating System': 'Android', 'Maximum Resolution': 'Others', 'SSD Capacity': '64GB eMMC', 'CPU': 'Exynos 9611'}" +165263,LPACE00491,"Acer Aspire 5 (Refurbished) Notebook | 15.6"" FHD Intel i7-10510U | 8GB DDR4, 512GB SSD, Intel UHD 620 graphics | Windows 10 Home, A515-54-74LM (RNB-NX.HNAAA.006)",ACER,"['Laptops, Tablet', None, None, None]",585.88,"{'Memory': '8GB', 'Screen Size': '15.6""', 'Operating System': 'Windows 10 Home', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '512GB'}" +162570,LPSAS00039,"Samsung Galaxy Tab Active Pro SM-T547 Tablet - 10.1"" - 4 GB RAM - 64 GB Storage - Android 9.0 Pie - 4G - Black - Qualcomm Snapdragon 670 SoC Dual-core (2 Core) 2 GHz Hexa-core (6 Core) 1.70 GHz - microSD Supported - 8 Megapixel Front Camera - 13 Megapixel",SAMSUNG,"['Laptops, Tablet', None, None, None]",899.99,"{'Manufacturer': 'Samsung', 'Manufacturer Part Number': 'SM-T547UZKAXAC', 'Manufacturer Website Address': 'http://www.samsung.ca', 'Brand Name': 'Samsung', 'Product Line': 'Galaxy Tab Active Pro', 'Product Model': 'SM-T547'}" +150525,LPASU00227,"Asus Chromebook Flip C434 C434TA-Q1-CB 14"" Chromebook Intel m3-8100Y 4 GB RAM - 64GB Flash Memory - Black, Silver - Chrome OS",ASUS,"['Laptops, Tablet', None, None, None]",699.0,"{'General InformationManufacturer': 'ASUS Computer International', 'General InformationManufacturer Part Number': 'C434TA-Q1-CB', 'General InformationManufacturer Website Address': 'http://www.asus.com', 'General InformationBrand Name': 'Asus', 'General InformationProduct Line': 'Chromebook Flip', 'General InformationProduct Series': 'C434'}" +140290,LPICA00012,"iCAN MID1016-MK Tablet | 10.1"" (800x1280) IPS Panel, MT8167B ARM Cortex-A35 1.3Ghz, 2GB RAM, 64GB ROM | IMG PowerVR GE8300, 0.3MP FF, 2.0MP FF, BT4.1, Android 9.0",iSmart,"['Laptops, Tablet', None, None, None]",99.88,"{'Model': 'MID1016-MK', 'Weight': '0.48KG', 'Dimensions': '294*182*10.8mm', 'Display Size': '10.1""', 'USB': 'USB(5V/2A) Micro USB', 'Operating System': 'Android 9.0'}" +216036,LPASU00561,"ASUS ExpertBook B1 Business Notebook, 15.6"" FHD, Intel Core i5-1135G7, Intel Iris Xe Graphics G7, 8GB, 256GB SSD, Windows 10 Pro, 3YR Warranty, 1YR ADP",ASUS,"['Laptops, Tablet', None, None, None]",599.88,"{'Screen Size': '15.6""', 'Memory': '8GB', 'Operating System': 'Windows 10 Pro', 'Maximum Resolution': '1920 x 1080', 'Refresh Rate': '60Hz', 'SSD Capacity': '256GB'}"