').addClass('choose-tv-model-item');
setTimeout(function() {
$arrow.addClass('active');
}, 400);
item_count = 0;
}
});
setTimeout(function() {
$('.choose-tv-model-box .spinner-icon').remove();
}, 300);
if (item_count > 0) {
$row.appendTo($target);
$('.choose-tv-model-item:nth-child(1) .choose-tv-model-radio:nth-child(1) input[type="radio"]').trigger('click');
if ($(window).width() < 769 && window.innerHeight > window.innerWidth) {
setTimeout(function() {
$('html, body').animate({
scrollTop: $('.choose-tv-model-box').offset().top
}, 800);
}, 400);
}
}
});
$modelSlide.on('change', 'input[type="radio"]', function() {
$selectedProduct = $(this).val();
$modelBox.addClass('pointer');
$('.tv-detail-result-box').removeClass('have-details');
if($('.tv-detail-result-content .spinner-icon').length < 1) {
$('.tv-detail-result-content').append($('
').hide().fadeIn(300));
}
setTimeout(function() {
$('.tv-detail-result-box').addClass('visible');
$('.tv-detail-result-content .spinner-icon').fadeOut(400, function() {
$('.tv-detail-result-content .spinner-icon').remove();
});
$modelBox.removeClass('pointer');
}, 400);
setTimeout(function() {
$('.tv-detail-result-box').addClass('have-details');
}, 500);
BindHeadProduct();
BindDetailsProduct();
});
function BindHeadProduct() {
$htmlHead = '';
$.each(myProducts, function (k, v) {
if (v.Product == $selectedProduct) {
if ($(window).width() > 769 && window.innerHeight < window.innerWidth) {
$('.headline-tv-detail-result').fadeOut(300, function() {
$('.headline-tv-detail-result').empty().append(v.Series + ' Series
' + v.Product);
$('.headline-tv-detail-result').fadeIn(300);
});
} else {
if($('.headline-tv-detail-result').length == 1) {
$('.headline-tv-detail-result').removeAttr('style').empty();
}
}
}
});
}
function BindDetailsProduct() {
//$selectedProduct = $(this).val();
$html = '';
$.each(myProducts, function (k, v) {
if (v.Product == $selectedProduct) {
$('.tv-detail-result-detail-image img').fadeOut(300, function() {
$('.tv-detail-result-detail-image img').attr('src', '//images.samsung.com/is/image/samsung/assets/in/support/new-spare-part/' + v.ImageName + '?$ORIGIN_PNG$');
$('.tv-detail-result-detail-image img').fadeIn(300);
});
$('.tv-detail-result-name').fadeOut(300, function() {
$('.tv-detail-result-name span').text(v.Product);
$('.tv-detail-result-name').fadeIn(300);
});
$('.tv-detail-result-code-box').fadeOut(300, function() {
$('.tv-detail-result-code').text('(' + v.ModelNumber + ')');
$('.tv-detail-result-code-box').fadeIn(300);
});
$html += '
';
if (v.Display !== "") {
$html += '
';
$html += '
';
$html += '
';
$html += '

';
$html += '
';
$html += '
';
$html += '
';
if (v.Display !== "") {
$html += '
';
$html += 'Panel';
$html += '' + v.Display + '';
$html += '
';
}
$html += '
';
$html += '
';
$html += '
';
$html += '
';
}
if (v.Pcb) {
$html += '
';
$html += '
';
$html += '
';
$html += '

';
$html += '
';
$html += '
';
$html += '
';
if (v.Pcb !== "") {
$html += '
';
$html += 'PCB';
$html += '' + v.Pcb + '';
$html += '
';
}
$html += '
';
$html += '
';
$html += '
';
$html += '
';
}
if (v.Remocon !== "") {
$html += '
';
$html += '
';
$html += '
';
$html += '

';
$html += '
';
$html += '
';
$html += '
';
if (v.Remocom !== "") {
$html += '
';
$html += 'Remote';
$html += '' + v.Remocon + '';
$html += '
';
}
$html += '
';
$html += '';
$html += '
';
$html += '
';
$html += '
';
}
if (v.SMPS) {
$html += '
';
$html += '
';
$html += '
';
$html += '

';
$html += '
';
$html += '
';
$html += '
';
$html += '
';
$html += 'SMPS';
$html += '' + v.SMPS + '';
$html += '
';
$html += '
';
$html += '
';
}
}
});
$('.tv-detail-result-table').fadeOut(400, function() {
$('.tv-detail-result-table').html($html);
$('.tv-detail-result-table').fadeIn(400);
setTimeout(function() {
$('.tv-detail-result-default').remove();
}, 400);
});
}
$('.choose-tv-model-button-arrow.left').click(function() {
event.preventDefault();
var scroll = $('.choose-tv-model-item').width();
$modelSlide.animate({
scrollLeft: '-=' + scroll + 'px'
}, 600);
});
$('.choose-tv-model-button-arrow.right').click(function() {
event.preventDefault();
var scroll = $('.choose-tv-model-item').width();
$modelSlide.animate({
scrollLeft: '+=' + scroll + 'px'
}, 600);
});
changeImageMode();
$(window).on('resize', function() {
clearTimeout(resizeTimer);
resizeTimer = null;
resizeTimer = setTimeout(function() {
var countitem = $('.choose-tv-model-item').size(),
widthitem = $('.choose-tv-model-item').width(),
halfitem = widthitem / 2,
scroll = widthitem * countitem - widthitem - halfitem,
scrollright = widthitem * countitem - widthitem;
if ($(window).width() > 769 && window.innerHeight < window.innerWidth) {
if (!$('.headline-tv-detail-result').is(':empty')) {
$('.headline-tv-detail-result').removeAttr('style');
}
if ($('.choose-tv-model-box').hasClass('is-open')) {
if($('.choose-tv-model-slide').scrollLeft() >= scroll) {
$('.choose-tv-model-slide').animate({
scrollLeft: '+=' + scrollright + 'px'
}, 600);
} else if($('.choose-tv-model-slide').scrollLeft() > 5 && $('.choose-tv-model-slide').scrollLeft() < scroll) {
setTimeout(function() {
var widthitemS = $('.choose-tv-model-item').width();
$('.choose-tv-model-slide').scrollLeft(0);
$('.choose-tv-model-slide').scrollLeft(widthitemS);
}, 410);
} else {
setTimeout(function() {
$('.choose-tv-model-slide').scrollLeft(0);
}, 100);
}
}
}
BindHeadProduct();
changeImageMode();
}, 10);
});
});
var myProducts=[ {
"Series": "Micro LED",
"Product": "MNA110MS",
"ModelNumber": "MNA110MS1ACXXL",
"Display": "34,800",
"Pcb": "16,480",
"Remocon": "2,350",
"SMPS": "6,740",
"ImageName": "product-micro-led.png"
},{
"Series": "QLED 8K TV",
"Product": "98QN990C",
"ModelNumber": "QA98QN990CKXXL",
"Display": "3,05,190",
"Pcb": "16,330",
"Remocon": "2,610",
"SMPS": "15,290",
"ImageName": "product-98qn990c.png"
},{
"Series": "QLED 8K TV",
"Product": "75QN800D",
"ModelNumber": "QA75QN800DUXXL",
"Display": "99,300",
"Pcb": "15,020",
"Remocon": "2,320",
"SMPS": "5,790",
"ImageName": "product-75qn800d.png"
},{
"Series": "QLED 8K TV",
"Product": "65QN800D",
"ModelNumber": "QA65QN800DUXXL",
"Display": "81,920",
"Pcb": "15,030",
"Remocon": "2,600",
"SMPS": "5,920",
"ImageName": "product-65qn800d.png"
},{
"Series": "QLED 8K TV",
"Product": "85QN900C",
"ModelNumber": "QA85QN900CKXXL",
"Display": "2,23,170",
"Pcb": "17,800",
"Remocon": "2,610",
"SMPS": "10,220",
"ImageName": "product-neo-qled.png"
},{
"Series": "QLED 8K TV",
"Product": "75QN800C",
"ModelNumber": "QA75QN800CKXXL",
"Display": "1,16,700",
"Pcb": "15,000",
"Remocon": "2,610",
"SMPS": "5,790",
"ImageName": "product-neo-qled.png"
},{
"Series": "QLED 8K TV",
"Product": "65QN800C",
"ModelNumber": "QA65QN800CKXXL",
"Display": "99,240",
"Pcb": "16,940",
"Remocon": "2,610",
"SMPS": "5,920",
"ImageName": "product-8cqled.png"
},{
"Series": "QLED 8K TV",
"Product": "65QN700C",
"ModelNumber": "QA65QN700CKXXL",
"Display": "62,660",
"Pcb": "15,170",
"Remocon": "2,610",
"SMPS": "5,670",
"ImageName": "product-7cqled.png"
},{
"Series": "QLED 8K TV",
"Product": "65QN800B",
"ModelNumber": "QA65QN800BKXXL",
"Display": "79,540",
"Pcb": "4,870",
"Remocon": "2,610",
"SMPS": "5,920",
"ImageName": "product-qled.png"
},{
"Series": "QLED 8K TV",
"Product": "65QN800A",
"ModelNumber": "QA65QN800AKXXL",
"Display": "95,320",
"Pcb": "4,640",
"Remocon": "2,350",
"SMPS": "5,160",
"ImageName": "product-qled.png"
},{
"Series": "QLED 8K TV",
"Product": "65Q800T",
"ModelNumber": "QA65Q800TAKXXL",
"Display": "1,24,110",
"Pcb": "11,720",
"Remocon": "3,670",
"SMPS": "9,000",
"ImageName": "product-qled8k.png"
},{
"Series": "QLED 8K TV",
"Product": "65QN700",
"ModelNumber": "QA65QN700AKXXL",
"Display": "1,10,580",
"Pcb": "4,640",
"Remocon": "2,350",
"SMPS": "5,160",
"ImageName": "product-qled.png"
}, {
"Series": "QLED 8K TV",
"Product": "65QN700B",
"ModelNumber": "QA65QN700BKXXL",
"Display": "60,310",
"Pcb": "4,460",
"Remocon": "2,610",
"SMPS": "5,320",
"ImageName": "product-qled.png"
},{
"Series": "QLED 8K TV",
"Product": "75Q800T",
"ModelNumber": "QA75Q800TAKXXL",
"Display": "1,49,890",
"Pcb": "11,990",
"Remocon": "3,670",
"SMPS": "11,660",
"ImageName": "product-qled8k.png"
},{
"Series": "QLED 8K TV",
"Product": "75QN800A",
"ModelNumber": "QA75QN800AKXXL",
"Display": "1,44,140",
"Pcb": "4,640",
"Remocon": "2,350",
"SMPS": "5,280",
"ImageName": "product-qled.png"
},{
"Series": "QLED 8K TV",
"Product": "75QN800B",
"ModelNumber": "QA75QN800BKXXL",
"Display": "1,23,390",
"Pcb": "4,640",
"Remocon": "2,610",
"SMPS": "5,790",
"ImageName": "product-qled.png"
},{
"Series": "QLED 8K TV",
"Product": "75Q950T",
"ModelNumber": "QA75Q950TSKXXL",
"Display": "2,42,190",
"Pcb": "7,930",
"Remocon": "3,670",
"SMPS": "10,760",
"ImageName": "product-qled8k.png"
},{
"Series": "QLED 8K TV",
"Product": "85QN900B",
"ModelNumber": "QA85QN900BKXXL",
"Display": "2,26,950",
"Pcb": "16,530",
"Remocon": "2,610",
"SMPS": "8,910",
"ImageName": "product-qled.png"
}, {
"Series": "QLED 8K TV",
"Product": "85Q950T",
"ModelNumber": "QA85Q950TSKXXL",
"Display": "3,96,940",
"Pcb": "7,930",
"Remocon": "3,670",
"SMPS": "12,880",
"ImageName": "product-qled8k.png"
},{
"Series": "OLED TV",
"Product": "65S90D",
"ModelNumber": "QA65S90DAULXL",
"Display": "70,870",
"Pcb": "7,170",
"Remocon": "2,600",
"SMPS": "4,500",
"ImageName": "product-65s90d.png"
},{
"Series": "OLED TV",
"Product": "55S90D",
"ModelNumber": "QA55S90DAULXL",
"Display": "52,060",
"Pcb": "7,170",
"Remocon": "2,600",
"SMPS": "4,760",
"ImageName": "product-55s90d.png"
},{
"Series": "OLED TV",
"Product": "55S95C",
"ModelNumber": "QA55S95CAKLXL",
"Display": "80,320",
"Pcb": "6,540",
"Remocon": "2,610",
"SMPS": "6,170",
"ImageName": "product-oled95c.png"
}, {
"Series": "OLED TV",
"Product": "55S90C",
"ModelNumber": "QA55S90CAKLXL",
"Display": "59,720",
"Pcb": "5,590",
"Remocon": "2,610",
"SMPS": "4,980",
"ImageName": "product-oled90c.png"
}, {
"Series": "The Serif TV",
"Product": "43LS01B",
"ModelNumber": "QA43LS01BAKLXL",
"Display": "14,270",
"Pcb": "7,020",
"Remocon": "2,610",
"SMPS": "3,000",
"ImageName": "product-serif.png"
},{
"Series": "The Serif TV",
"Product": "43LS01T",
"ModelNumber": "QA43LS01TAKXXL",
"Display": "20,990",
"Pcb": "6,140",
"Remocon": "1,370",
"SMPS": "3,000",
"ImageName": "product-serif.png"
},{
"Series": "The Serif TV",
"Product": "49LS01T",
"ModelNumber": "QA49LS01TAKXXL",
"Display": "16,440",
"Pcb": "6,070",
"Remocon": "1,370",
"SMPS": "3,760",
"ImageName": "product-serif.png"
}, {
"Series": "The Serif TV",
"Product": "50LS01T",
"ModelNumber": "QA50LS01TAKLXL",
"Display": "24,520",
"Pcb": "5,410",
"Remocon": "1,370",
"SMPS": "3,760",
"ImageName": "product-serif.png"
}, {
"Series": "The Serif TV",
"Product": "55LS01B",
"ModelNumber": "QA55LS01BAKLXL",
"Display": "23,210",
"Pcb": "6,630",
"Remocon": "2,610",
"SMPS": "3,760",
"ImageName": "product-serif.png"
}, {
"Series": "The Serif TV",
"Product": "55LS01T",
"ModelNumber": "QA55LS01TAKLXL",
"Display": "26,790",
"Pcb": "4,770",
"Remocon": "1,370",
"SMPS": "3,760",
"ImageName": "product-serif.png"
},{
"Series": "The Frame TV",
"Product": "43LS03B",
"ModelNumber": "QA43LS03BAKLXL",
"Display": "15,190",
"Pcb": "4,620",
"Remocon": "2,610",
"SMPS": "4,550",
"ImageName": "product-frame.png"
},{
"Series": "The Frame TV",
"Product": "50LS03B",
"ModelNumber": "QA50LS03BAKLXL",
"Display": "19,150",
"Pcb": "4,620",
"Remocon": "2,610",
"SMPS": "4,550",
"ImageName": "product-frame.png"
},{
"Series": "The Frame TV",
"Product": "50LS03T",
"ModelNumber": "QA50LS03TAKXXL",
"Display": "48,520",
"Pcb": "4,300",
"Remocon": "1,250",
"SMPS": "4,550",
"ImageName": "product-frame.png"
},{
"Series": "The Frame TV",
"Product": "55LS03B",
"ModelNumber": "QA55LS03BAKLXL",
"Display": "24,110",
"Pcb": "4,620",
"Remocon": "2,610",
"SMPS": "4,550",
"ImageName": "product-frame.png"
},{
"Series": "The Frame TV",
"Product": "55LS03T",
"ModelNumber": "QA55LS03TAKXXL",
"Display": "40,570",
"Pcb": "4,300",
"Remocon": "1,250",
"SMPS": "4,550",
"ImageName": "product-frame.png"
},{
"Series": "The Frame TV",
"Product": "65LS03A",
"ModelNumber": "QA65LS03AAKLXL",
"Display": "40,090",
"Pcb": "4,880",
"Remocon": "2,350",
"SMPS": "4,640",
"ImageName": "product-frame.png"
},{
"Series": "The Frame TV",
"Product": "65LS03B",
"ModelNumber": "QA65LS03BAKLXL",
"Display": "30,350",
"Pcb": "4,620",
"Remocon": "2,610",
"SMPS": "4,640",
"ImageName": "product-frame.png"
}, {
"Series": "The Frame TV",
"Product": "65LS03T",
"ModelNumber": "QA65LS03TAKLXL",
"Display": "39,610",
"Pcb": "4,300",
"Remocon": "1,250",
"SMPS": "4,640",
"ImageName": "product-frame.png"
}, {
"Series": "The Frame TV",
"Product": "75LS03A",
"ModelNumber": "QA75LS03AAKXXL",
"Display": "65,400",
"Pcb": "4,880",
"Remocon": "2,350",
"SMPS": "5,160",
"ImageName": "product-frame.png"
},{
"Series": "The Frame TV",
"Product": "75LS03B",
"ModelNumber": "QA75LS03BAKXXL",
"Display": "51,800",
"Pcb": "4,620",
"Remocon": "2,610",
"SMPS": "5,160",
"ImageName": "product-frame.png"
},{
"Series": "The Frame TV",
"Product": "75LS03T",
"ModelNumber": "QA75LS03TAKXXL",
"Display": "64,350",
"Pcb": "4,300",
"Remocon": "1,250",
"SMPS": "5,160",
"ImageName": "product-frame.png"
},{
"Series": "QLED 4K TV",
"Product": "98QN90D",
"ModelNumber": "QA98QN90DAUXXL",
"Display": " 1,76,020",
"Pcb": " 6,340",
"Remocon": " 2,600",
"SMPS": " 8,550",
"ImageName": "product-98qn90d.png"
},{
"Series": "QLED 4K TV",
"Product": "85QN90D",
"ModelNumber": "QA85QN90DAUXXL",
"Display": " 1,13,180",
"Pcb": " 6,350",
"Remocon": " 2,600",
"SMPS": " 5,710",
"ImageName": "product-85qn90d.png"
},{
"Series": "QLED 4K TV",
"Product": "85QN85D",
"ModelNumber": "QA85QN85DBUXXL",
"Display": "93,110",
"Pcb": "6,150",
"Remocon": " 2,600",
"SMPS": "5,150",
"ImageName": "product-85qn85d.png"
},{
"Series": "QLED 4K TV",
"Product": "75QN85D",
"ModelNumber": "QA75QN85DBUXXL",
"Display": "66,270",
"Pcb": "6,090",
"Remocon": " 2,600",
"SMPS": "4,770",
"ImageName": "product-75qn85d.png"
},{
"Series": "QLED 4K TV",
"Product": "65QN85D",
"ModelNumber": "QA65QN85DBULXL",
"Display": "45,270",
"Pcb": "5,850",
"Remocon": "2,600",
"SMPS": "4,960",
"ImageName": "product-65qn85d.png"
},{
"Series": "QLED 4K TV",
"Product": "55QN85D",
"ModelNumber": "QA55QN85DBULXL",
"Display": "38,560",
"Pcb": "5,780",
"Remocon": "2,600",
"SMPS": "4,400",
"ImageName": "product-55qn85d.png"
},{
"Series": "QLED 4K TV",
"Product": "85Q60D",
"ModelNumber": "QA85Q60DAUXXL",
"Display": "61,670 ",
"Pcb": "4,640 ",
"Remocon": "2,600",
"SMPS": "4,990",
"ImageName": "product-85q60d.png"
},{
"Series": "UHD TV",
"Product": "85DU8300",
"ModelNumber": "UA85DU8300UXXL",
"Display": " 58,280 ",
"Pcb": " 5,920 ",
"Remocon": "2,600",
"SMPS": " 4,770 ",
"ImageName": "product-85du8300.png"
},{
"Series": "QLED 4K TV",
"Product": "75QN90D",
"ModelNumber": "QA75QN90DAUXXL",
"Display": " 83,640 ",
"Pcb": " 6,300 ",
"Remocon": "2,600",
"SMPS": " 4,560",
"ImageName": "product-75qn90d.png"
},{
"Series": "QLED 4K TV",
"Product": "75Q60D",
"ModelNumber": "QA75Q60DAUXXL",
"Display": " 46,450 ",
"Pcb": " 4,640",
"Remocon": " 2,600",
"SMPS": " 4,570",
"ImageName": "product-75q60d.png"
},{
"Series": "UHD TV",
"Product": "75DUE77",
"ModelNumber": "UA75DUE77AKXXL",
"Display": "39,210",
"Pcb": "5,910",
"Remocon": "2,600",
"SMPS": "3,600",
"ImageName": "product-75due77.png"
},{
"Series": "UHD TV",
"Product": "75DU8300",
"ModelNumber": "UA75DU8300UXXL",
"Display": " 39,270",
"Pcb": " 5,660 ",
"Remocon": " 2,600 ",
"SMPS": " 4,390 ",
"ImageName": "product-75du8300.png"
},{
"Series": "QLED 4K TV",
"Product": "65QN90D",
"ModelNumber": "QA65QN90DAULXL",
"Display": " 59,040 ",
"Pcb": " 5,960 ",
"Remocon": " 2,600 ",
"SMPS": " 4,900 ",
"ImageName": "product-65qn90d.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q60D",
"ModelNumber": "QA65Q60DAULXL",
"Display": " 41,750",
"Pcb": " 4,640 ",
"Remocon": " 2,600 ",
"SMPS": " 4,630",
"ImageName": "product-65q60d.png"
},{
"Series": "UHD TV",
"Product": "65DU8300",
"ModelNumber": "UA65DU8300ULXL",
"Display": " 22,950",
"Pcb": " 5,660 ",
"Remocon": " 2,600 ",
"SMPS": " 4,300",
"ImageName": "product-65du8300.png"
},{
"Series": "UHD TV",
"Product": "65DUE77",
"ModelNumber": "UA65DUE77AKLXL",
"Display": " 25,710 ",
"Pcb": " 5,200 ",
"Remocon": " 2,600 ",
"SMPS": " 3,540 ",
"ImageName": "product-65due77.png"
},{
"Series": "QLED 4K TV",
"Product": "55QN90D",
"ModelNumber": "QA55QN90DAULXL",
"Display": " 43,560 ",
"Pcb": " 6,090 ",
"Remocon": " 2,600 ",
"SMPS": " 4,620 ",
"ImageName": "product-55qn90d.png"
},{
"Series": "QLED 4K TV",
"Product": "55Q60D",
"ModelNumber": "QA55Q60DAULXL",
"Display": " 18,470 ",
"Pcb": " 4,640 ",
"Remocon": " 2,600 ",
"SMPS": " 4,160 ",
"ImageName": "product-55q60d.png"
},{
"Series": "UHD TV",
"Product": "55DU8300",
"ModelNumber": "UA55DU8300ULXL",
"Display": " 17,050 ",
"Pcb": " 5,660 ",
"Remocon": " 2,600 ",
"SMPS": " 3,760 ",
"ImageName": "product-55du8300.png"
},{
"Series": "UHD TV",
"Product": "55DUE77",
"ModelNumber": "UA55DUE77AKLXL",
"Display": " 18,200 ",
"Pcb": " 5,380 ",
"Remocon": " 2,600 ",
"SMPS": " 3,190 ",
"ImageName": "product-55due77.png"
},{
"Series": "QLED 4K TV",
"Product": "50Q60D",
"ModelNumber": "QA50Q60DAULXL",
"Display": " 18,630 ",
"Pcb": " 4,640 ",
"Remocon": " 2,600 ",
"SMPS": " 4,320 ",
"ImageName": "product-50q60d.png"
},{
"Series": "UHD TV",
"Product": "50DU8300",
"ModelNumber": "UA50DU8300ULXL",
"Display": " 15,790 ",
"Pcb": " 5,660 ",
"Remocon": " 2,600 ",
"SMPS": " 3,730 ",
"ImageName": "product-50du8300.png"
},{
"Series": "QLED 4K TV",
"Product": "43Q60D",
"ModelNumber": "QA43Q60DAULXL",
"Display": " 14,260 ",
"Pcb": " 4,640 ",
"Remocon": " 2,600 ",
"SMPS": " 4,020 ",
"ImageName": "product-43q60d.png"
},{
"Series": "UHD TV",
"Product": "43DU8300",
"ModelNumber": "UA43DU8300ULXL",
"Display": " 11,870 ",
"Pcb": " 5,660 ",
"Remocon": " 2,600 ",
"SMPS": " 3,530 ",
"ImageName": "product-43du8300.png"
},{
"Series": "UHD TV",
"Product": "43DUE77",
"ModelNumber": "UA43DUE77AKLXL",
"Display": " 10,640 ",
"Pcb": " 4,930 ",
"Remocon": " 2,600 ",
"SMPS": " 3,150 ",
"ImageName": "product-43due77.png"
},{
"Series": "QLED 4K TV",
"Product": "98Q80C",
"ModelNumber": "QA98Q80CAKXXL",
"Display": " 1,37,810",
"Pcb": " 6,580 ",
"Remocon": "2,610",
"SMPS": "7,350",
"ImageName": "product-98q80c.png"
},{
"Series": "QLED 4K TV",
"Product": "85QN90C",
"ModelNumber": "QA85QN90CAKXXL",
"Display": "1,09,490",
"Pcb": "6,670",
"Remocon": "2,610",
"SMPS": "5,810",
"ImageName": "product-85qn90c.png"
},{
"Series": "QLED 4K TV",
"Product": "75QN90C",
"ModelNumber": "QA75QN90CAKXXL",
"Display": "80,730",
"Pcb": "6,370",
"Remocon": "2,610",
"SMPS": "5,450",
"ImageName": "product-75qn90c.png"
},{
"Series": "QLED 4K TV",
"Product": "65QN90C",
"ModelNumber": "QA65QN90CAKLXL",
"Display": "53,510",
"Pcb": "6,550",
"Remocon": "2,610",
"SMPS": "5,290",
"ImageName": "product-cqled.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q60CA",
"ModelNumber": "QA65Q60CAKLXL",
"Display": "30,610",
"Pcb": "4,530",
"Remocon": "2,610",
"SMPS": "4,630",
"ImageName": "product-65q60ca.png"
},{
"Series": "UHD TV",
"Product": "65CU8570",
"ModelNumber": "UA65CU8570ULXL",
"Display": "26,980",
"Pcb": "4,690",
"Remocon": "2,610",
"SMPS": "4,300",
"ImageName": "product-55cu770.png"
},{
"Series": "UHD TV",
"Product": "65CU8000",
"ModelNumber": "UA65CU8000KLXL",
"Display": "31,610",
"Pcb": "4,650",
"Remocon": "2,610",
"SMPS": "4,300",
"ImageName": "product-55cu770.png"
},{
"Series": "UHD TV",
"Product": "85CU8000",
"ModelNumber": "UA85CU8000KXXL",
"Display": "55,420",
"Pcb": "6,260",
"Remocon": "2,610",
"SMPS": "4,770",
"ImageName": "product-85cu8000.png"
},{
"Series": "UHD TV",
"Product": "75CU8000",
"ModelNumber": "UA75CU8000KXXL",
"Display": "34,970",
"Pcb": "4,650",
"Remocon": "2,610",
"SMPS": "4,390",
"ImageName": "product-75cu8000.png"
},{
"Series": "UHD TV",
"Product": "75CU770",
"ModelNumber": "UA75CU7700KXXL",
"Display": "37,740",
"Pcb": "4,770",
"Remocon": "2,610",
"SMPS": "4,220",
"ImageName": "product-75cu770.png"
},{
"Series": "UHD TV",
"Product": "70CU770",
"ModelNumber": "UA70CU7700KLXL",
"Display": "26,100",
"Pcb": "4,770",
"Remocon": "2,610",
"SMPS": "4,220",
"ImageName": "product-70cu770.png"
},{
"Series": "UHD TV",
"Product": "65CU770",
"ModelNumber": "UA65CU7700KLXL",
"Display": "24,350",
"Pcb": "4,770",
"Remocon": "2,610",
"SMPS": "3,730",
"ImageName": "product-65cu770.png"
},{
"Series": "UHD TV",
"Product": "65CUE60",
"ModelNumber": "UA65CUE60AKLXL",
"Display": "24,350",
"Pcb": "4,770",
"Remocon": "350",
"SMPS": "3,730",
"ImageName": "product-65cue60.png"
},{
"Series": "UHD TV",
"Product": "65CUE70",
"ModelNumber": "UA65CUE70AKLXL",
"Display": "24,340",
"Pcb": "4,770",
"Remocon": "2,610",
"SMPS": "3,730",
"ImageName": "product-65cue70.png"
},{
"Series": "QLED 4K TV",
"Product": "55QE1C",
"ModelNumber": "QA55QE1CAKLXL",
"Display": "20,140",
"Pcb": "4,530",
"Remocon": "2,610",
"SMPS": "4,160",
"ImageName": "product-cqled.png"
},{
"Series": "QLED 4K TV",
"Product": "55Q60CA",
"ModelNumber": "QA55Q60CAKLXL",
"Display": "21,020",
"Pcb": "4,720",
"Remocon": "2,610",
"SMPS": "4,160",
"ImageName": "product-55Q60CA.png"
},{
"Series": "UHD TV",
"Product": "55CU8570",
"ModelNumber": "UA55CU8570ULXL",
"Display": "22,620",
"Pcb": "4,690",
"Remocon": "2,610",
"SMPS": "3,760",
"ImageName": "product-55cu8570.png"
},{
"Series": "UHD TV",
"Product": "55CU8000",
"ModelNumber": "UA55CU8000KLXL",
"Display": "19,410",
"Pcb": "4,650",
"Remocon": "2,610",
"SMPS": "3,760",
"ImageName": "product-55cu8000.png"
},{
"Series": "UHD TV",
"Product": "55CU770",
"ModelNumber": "UA55CU7700KLXL",
"Display": "18,540",
"Pcb": "",
"Remocon": "2,610",
"SMPS": "5,820",
"ImageName": "product-55cu770.png"
},{
"Series": "UHD TV",
"Product": "55CUE70",
"ModelNumber": "UA55CUE70AKLXL",
"Display": "18,520",
"Pcb": "",
"Remocon": "2,610",
"SMPS": "5,400",
"ImageName": "product-55cue70.png"
},{
"Series": "UHD TV",
"Product": "55CUE60",
"ModelNumber": "UA55CUE60AKLXL",
"Display": "18,540",
"Pcb": "",
"Remocon": "350",
"SMPS": "5,820",
"ImageName": "product-55cue60.png"
},{
"Series": "UHD TV",
"Product": "50CU8000",
"ModelNumber": "UA50CU8000KLXL",
"Display": "15,790",
"Pcb": "4,650",
"Remocon": "2,610",
"SMPS": "3,730",
"ImageName": "product-50cu8000.png"
},{
"Series": "UHD TV",
"Product": "50CU770",
"ModelNumber": "UA50CU7700KLXL",
"Display": "14,930",
"Pcb": "",
"Remocon": "2,610",
"SMPS": "5,400",
"ImageName": "product-50cu770.png"
},{
"Series": "UHD TV",
"Product": "50CUE60",
"ModelNumber": "UA50CUE60AKLXL",
"Display": "14,930",
"Pcb": "",
"Remocon": "350",
"SMPS": "5,400",
"ImageName": "product-50cue60.png"
},{
"Series": "QLED 4K TV",
"Product": "50Q60C",
"ModelNumber": "QA50Q60CAKLXL",
"Display": "16,090",
"Pcb": "4,530",
"Remocon": "2,610",
"SMPS": "4,320",
"ImageName": "product-cqled.png"
},{
"Series": "QLED 4K TV",
"Product": "43Q60C",
"ModelNumber": "QA43Q60CAKLXL",
"Display": "13,730",
"Pcb": "4,530",
"Remocon": "2,610",
"SMPS": "4,020",
"ImageName": "product-cqled.png"
},{
"Series": "QLED 4K TV",
"Product": "55QN95C",
"ModelNumber": "QA55QN95CAKLXL",
"Display": "53,160",
"Pcb": "6,670",
"Remocon": "2,610",
"SMPS": "9,460",
"ImageName": "product-95cqled.png"
},{
"Series": "QLED 4K TV",
"Product": "55QN90C",
"ModelNumber": "QA55QN90CAKLXL",
"Display": "43,970",
"Pcb": "6,420",
"Remocon": "2,610",
"SMPS": "4,690",
"ImageName": "product-95cqled.png"
},{
"Series": "QLED 4K TV",
"Product": "65QN95C",
"ModelNumber": "QA65QN95CAKLXL",
"Display": "72,020",
"Pcb": "6,660",
"Remocon": "2,610",
"SMPS": "11,170",
"ImageName": "product-95cqled.png"
},{
"Series": "QLED 4K TV",
"Product": "50QN90C",
"ModelNumber": "QA50QN90CAKLXL",
"Display": "40,050",
"Pcb": "7,100",
"Remocon": "2,610",
"SMPS": "4,860",
"ImageName": "product-90cqled.png"
},{
"Series": "QLED 4K TV",
"Product": "55QN85C",
"ModelNumber": "QA55QN85CAKLXL",
"Display": "41,690",
"Pcb": "6,020",
"Remocon": "2,610",
"SMPS": "4,620",
"ImageName": "product-85cqled.png"
},{
"Series": "UHD TV",
"Product": "43CUE70",
"ModelNumber": "UA43CUE70AKLXL",
"Display": "11,040",
"Pcb": "",
"Remocon": "2,610",
"SMPS": "5,170",
"ImageName": "product-43cue70.png"
},{
"Series": "UHD TV",
"Product": "43CUE60A",
"ModelNumber": "UA43CUE60AKLXL",
"Display": "10,700",
"Pcb": "",
"Remocon": "350",
"SMPS": "5,170",
"ImageName": "product-e60a.png"
},{
"Series": "UHD TV",
"Product": "43CU8570",
"ModelNumber": "UA43CU8570ULXL",
"Display": "12,370",
"Pcb": "4,690",
"Remocon": "2,610",
"SMPS": "3,530",
"ImageName": "product-43cu8570.png"
},{
"Series": "UHD TV",
"Product": "43CU8000",
"ModelNumber": "UA43CU8000KLXL",
"Display": "12,340",
"Pcb": "4,650",
"Remocon": "2,610",
"SMPS": "3,530",
"ImageName": "product-43cu8000.png"
},{
"Series": "QLED 4K TV",
"Product": "43CU770",
"ModelNumber": "UA43CU7700KLXL",
"Display": "11,070",
"Pcb": "",
"Remocon": "2,610",
"SMPS": "5,170",
"ImageName": "product-43cu770.png"
},{
"Series": "QLED 4K TV",
"Product": "43Q60A",
"ModelNumber": "QA43Q60ABKLXL",
"Display": "14,840",
"Pcb": "4,590",
"Remocon": "2,350",
"SMPS": "3,710",
"ImageName": "product-qled4k.png"
},{
"Series": "UHD TV",
"Product": "43AU7600K",
"ModelNumber": "UA43AU7600KXXL",
"Display": "17,890",
"Pcb": "6,520",
"Remocon": "1,380",
"SMPS": "",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "43AU8000K",
"ModelNumber": "UA43AU8000KLXL",
"Display": "11,830",
"Pcb": "4,850",
"Remocon": "1,230",
"SMPS": "3,520",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "43AU8200K",
"ModelNumber": "UA43AU8200KLXL",
"Display": "11,560",
"Pcb": "4,810",
"Remocon": "1,230",
"SMPS": "3,520",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "43AU9070U",
"ModelNumber": "UA43AU9070ULXL",
"Display": "10,870",
"Pcb": "4,730",
"Remocon": "1,180",
"SMPS": "3,520",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "43AUE65A",
"ModelNumber": "UA43AUE65AKXXL",
"Display": "17,890",
"Pcb": "6,520",
"Remocon": "1,380",
"SMPS": "",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "43BU8570U",
"ModelNumber": "UA43BU8570ULXL",
"Display": "12,070",
"Pcb": "4,810",
"Remocon": "2,610",
"SMPS": "3,530",
"ImageName": "product-cuhd.png"
},{
"Series": "UHD TV",
"Product": "43TU7200K",
"ModelNumber": "UA43TU7200KBXL/XXL",
"Display": "11,310",
"Pcb": "4,840",
"Remocon": "250",
"SMPS": "3,130",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "43TU8000",
"ModelNumber": "UA43TU8000KBXL",
"Display": "15,790",
"Pcb": "4,850",
"Remocon": "1,250",
"SMPS": "2,840",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "43TU8200",
"ModelNumber": "UA43TU8200KXXL",
"Display": "15,610",
"Pcb": "4,660",
"Remocon": "1,250",
"SMPS": "2,840",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "43TU8570",
"ModelNumber": "UA43TU8570UXXL",
"Display": "20,210",
"Pcb": "4,410",
"Remocon": "1,250",
"SMPS": "2,930",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "43TUE60F",
"ModelNumber": "UA43TUE60FKXXL",
"Display": "15,790",
"Pcb": "4,920",
"Remocon": "1,250",
"SMPS": "2,840",
"ImageName": "product-uhd.png"
},{
"Series": "QLED 4K TV",
"Product": "43Q60B",
"ModelNumber": "QA43Q60BAKLXL",
"Display": "12,290",
"Pcb": "4,510",
"Remocon": "2,610",
"SMPS": "4,020",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "43Q60T",
"ModelNumber": "QA43Q60TAKXXL",
"Display": "20,170",
"Pcb": "5,010",
"Remocon": "1,250",
"SMPS": "2,930",
"ImageName": "product-43q60t.png"
},{
"Series": "QLED 4K TV",
"Product": "49Q80T",
"ModelNumber": "QA49Q80TAKXXL",
"Display": "27,770",
"Pcb": "5,990",
"Remocon": "1,540",
"SMPS": "4,390",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "50Q60A",
"ModelNumber": "QA50Q60ABKLXL",
"Display": "24,740",
"Pcb": "4,570",
"Remocon": "2,350",
"SMPS": "3,840",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "50Q60B",
"ModelNumber": "QA50Q60BAKLXL",
"Display": "14,120",
"Pcb": "4,510",
"Remocon": "2,610",
"SMPS": "4,320",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "50Q60T",
"ModelNumber": "QA50Q60TAKXXL",
"Display": "32,760",
"Pcb": "4,470",
"Remocon": "1,250",
"SMPS": "3,730",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "50Q80B",
"ModelNumber": "QA50Q80BAKLXL",
"Display": "22,820",
"Pcb": "6,340",
"Remocon": "2,610",
"SMPS": "4,490",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "50QN90B",
"ModelNumber": "QA50QN90BAKLXL",
"Display": "36,160",
"Pcb": "6,450",
"Remocon": "2,610",
"SMPS": "4,860",
"ImageName": "product-qledneo.png"
},{
"Series": "UHD TV",
"Product": "50AU8000K",
"ModelNumber": "UA50AU8000KLXL",
"Display": "22,530",
"Pcb": "4,850",
"Remocon": "1,230",
"SMPS": "3,890",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "50BU8000",
"ModelNumber": "UA50BU8000KLXL",
"Display": "12,060",
"Pcb": "4,440",
"Remocon": "2,610",
"SMPS": "3,730",
"ImageName": "product-cuhd.png"
},{
"Series": "UHD TV",
"Product": "50TU8000",
"ModelNumber": "UA50TU8000KXXL",
"Display": "14,740",
"Pcb": "4,520",
"Remocon": "1,250",
"SMPS": "3,370",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "50TUE60A",
"ModelNumber": "UA50TUE60AKXXL",
"Display": "14,740",
"Pcb": "4,520",
"Remocon": "1,250",
"SMPS": "3,370",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55AU7600K",
"ModelNumber": "UA55AU7600KXXL",
"Display": "26,190",
"Pcb": "6,940",
"Remocon": "1,380",
"SMPS": "-",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55AU8000K",
"ModelNumber": "UA55AU8000KLXL",
"Display": "19,420",
"Pcb": "4,810",
"Remocon": "1,230",
"SMPS": "3,970",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55AU8200K",
"ModelNumber": "UA55AU8200KLXL",
"Display": "19,820",
"Pcb": "4,810",
"Remocon": "1,230",
"SMPS": "3,970",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55AU9070",
"ModelNumber": "UA55AU9070ULXL",
"Display": "17,350",
"Pcb": "4,730",
"Remocon": "1,180",
"SMPS": "3,970",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55AUE65A",
"ModelNumber": "UA55AUE65AKXXL",
"Display": "26,190",
"Pcb": "6,940",
"Remocon": "1,380",
"SMPS": "-",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55BU8000",
"ModelNumber": "UA55BU8000KLXL",
"Display": "16,090",
"Pcb": "4,440",
"Remocon": "2,610",
"SMPS": "3,760",
"ImageName": "product-cuhd.png"
},{
"Series": "UHD TV",
"Product": "55BU8570",
"ModelNumber": "UA55BU8570ULXL",
"Display": "19,960",
"Pcb": "4,810",
"Remocon": "2,610",
"SMPS": "3,760",
"ImageName": "product-cuhd.png"
},{
"Series": "UHD TV",
"Product": "55TU8000",
"ModelNumber": "UA55TU8000KBXL",
"Display": "12,870",
"Pcb": "4,360",
"Remocon": "1,250",
"SMPS": "3,340",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55TU8000K",
"ModelNumber": "UA55TU8000KLXL",
"Display": "12,870",
"Pcb": "4,360",
"Remocon": "1,250",
"SMPS": "3,340",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55TU8200K",
"ModelNumber": "UA55TU8200KBXL",
"Display": "24,490",
"Pcb": "4,360",
"Remocon": "1,250",
"SMPS": "3,340",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55TU8200",
"ModelNumber": "UA55TU8200KLXL",
"Display": "24,490",
"Pcb": "4,360",
"Remocon": "1,250",
"SMPS": "3,340",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "TU8200",
"ModelNumber": "UA55TU8200KXXL",
"Display": "32,090",
"Pcb": "4,610",
"Remocon": "1,250",
"SMPS": "3,340",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55TU8570U",
"ModelNumber": "UA55TU8570UBXL",
"Display": "24,690",
"Pcb": "5,120",
"Remocon": "1,250",
"SMPS": "3,420",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55TU8570",
"ModelNumber": "UA55TU8570UXXL",
"Display": "24,690",
"Pcb": "5,120",
"Remocon": "1,250",
"SMPS": "3,420",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "TUE60A",
"ModelNumber": "UA55TUE60AKBXL",
"Display": "24,490",
"Pcb": "4,360",
"Remocon": "1,250",
"SMPS": "3,340",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55TUE60A",
"ModelNumber": "UA55TUE60AKXXL",
"Display": "35,490",
"Pcb": "4,610",
"Remocon": "1,250",
"SMPS": "3,340",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "55TUE60",
"ModelNumber": "UA55TUE60FKLXL/BXL",
"Display": "12,870",
"Pcb": "4,360",
"Remocon": "1,250",
"SMPS": "3,340",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "TUE60",
"ModelNumber": "UA55TUE60FKXXL",
"Display": "35,490",
"Pcb": "4,610",
"Remocon": "1,250",
"SMPS": "3,340",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "58AUE70A",
"ModelNumber": "UA58AUE70AKLXL",
"Display": "17,190",
"Pcb": "5,000",
"Remocon": "1,230",
"SMPS": "3,340",
"ImageName": "product-uhd.png"
},{
"Series": "QLED 4K TV",
"Product": "55Q60A",
"ModelNumber": "QA55Q60ABKLXL",
"Display": "21,360",
"Pcb": "4,590",
"Remocon": "2,350",
"SMPS": "3,890",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "55Q60B",
"ModelNumber": "QA55Q60BAKLXL",
"Display": "28,420",
"Pcb": "4,510",
"Remocon": "2,610",
"SMPS": "4,160",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "55Q60T",
"ModelNumber": "QA55Q60TAKXXL",
"Display": "17,400",
"Pcb": "4,720",
"Remocon": "1,250",
"SMPS": "3,730",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "55Q70B",
"ModelNumber": "QA55Q70BAKLXL",
"Display": "24,070",
"Pcb": "6,230",
"Remocon": "2,610",
"SMPS": "4,550",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "55Q70T",
"ModelNumber": "QA55Q70TAKXXL",
"Display": "26,200",
"Pcb": "6,160",
"Remocon": "1,540",
"SMPS": "4,250",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "55Q80B",
"ModelNumber": "QA55Q80BAKLXL",
"Display": "28,230",
"Pcb": "6,450",
"Remocon": "2,610",
"SMPS": "4,490",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "55Q95TA",
"ModelNumber": "QA55Q95TAKXXL",
"Display": "64,160",
"Pcb": "5,770",
"Remocon": "1,540",
"SMPS": "4,640",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "55QN85A",
"ModelNumber": "QA55QN85AAKLXL",
"Display": "57,580",
"Pcb": "7,320",
"Remocon": "2,350",
"SMPS": "4,640",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "55QN85B",
"ModelNumber": "QA55QN85BAKLXL",
"Display": "38,030",
"Pcb": "4,520",
"Remocon": "2,610",
"SMPS": "4,860",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "55QN90A",
"ModelNumber": "QA55QN90AAKLXL",
"Display": "39,980",
"Pcb": "5,390",
"Remocon": "2,350",
"SMPS": "4,720",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "55QN90B",
"ModelNumber": "QA55QN90BAKLXL",
"Display": "52,890",
"Pcb": "4,520",
"Remocon": "2,610",
"SMPS": "4,860",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "55QN95B",
"ModelNumber": "QA55QN95BAKLXL",
"Display": "45,080",
"Pcb": "7,410",
"Remocon": "2,610",
"SMPS": "4,460",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "58Q60T",
"ModelNumber": "QA58Q60TAKXXL",
"Display": "25,050",
"Pcb": "4,730",
"Remocon": "1,250",
"SMPS": "3,730",
"ImageName": "product-qled4k.png"
},{
"Series": "UHD TV",
"Product": "58TU7200K",
"ModelNumber": "UA58TU7200KXXL",
"Display": "16,820",
"Pcb": "4,420",
"Remocon": "250",
"SMPS": "3,120",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "58TU8200K",
"ModelNumber": "UA58TU8200KXXL",
"Display": "26,770",
"Pcb": "4,800",
"Remocon": "1,250",
"SMPS": "3,370",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "60AU8000",
"ModelNumber": "UA60AU8000KLXL",
"Display": "19,580",
"Pcb": "4,850",
"Remocon": "1,230",
"SMPS": "3,750",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "60BU8000",
"ModelNumber": "UA60BU8000KLXL",
"Display": "19,920",
"Pcb": "4,440",
"Remocon": "2,610",
"SMPS": "3,790",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65AU7500",
"ModelNumber": "UA65AU7500KLXL",
"Display": "31,400",
"Pcb": "5,000",
"Remocon": "360",
"SMPS": "3,730",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65AU7700",
"ModelNumber": "UA65AU7700KLXL",
"Display": "31,400",
"Pcb": "5,000",
"Remocon": "1,230",
"SMPS": "3,730",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65AU8000",
"ModelNumber": "UA65AU8000KLXL",
"Display": "44,040",
"Pcb": "4,850",
"Remocon": "1,230",
"SMPS": "4,300",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65AU8200",
"ModelNumber": "UA65AU8200KLXL",
"Display": "27,030",
"Pcb": "4,850",
"Remocon": "1,230",
"SMPS": "4,300",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65AU9070",
"ModelNumber": "UA65AU9070ULXL",
"Display": "23,210",
"Pcb": "4,730",
"Remocon": "1,180",
"SMPS": "4,300",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65AUE60A",
"ModelNumber": "UA65AUE60AKLXL",
"Display": "31,830",
"Pcb": "5,000",
"Remocon": "360",
"SMPS": "3,730",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65AUE70",
"ModelNumber": "UA65AUE70AKLXL",
"Display": "31,830",
"Pcb": "5,000",
"Remocon": "1,230",
"SMPS": "3,730",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65BU8000K",
"ModelNumber": "UA65BU8000KLXL",
"Display": "26,550",
"Pcb": "4,440",
"Remocon": "2,610",
"SMPS": "4,300",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65BU8570U",
"ModelNumber": "UA65BU8570ULXL",
"Display": "22,590",
"Pcb": "4,810",
"Remocon": "2,610",
"SMPS": "4,300",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65TU8000K",
"ModelNumber": "UA65TU8000KBXL/XXL",
"Display": "40,830",
"Pcb": "4,940",
"Remocon": "1,250",
"SMPS": "3,730",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65TU8200K",
"ModelNumber": "UA65TU8200KBXL/XXL",
"Display": "45,580",
"Pcb": "4,940",
"Remocon": "1,250",
"SMPS": "3,730",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65TU8570U",
"ModelNumber": "UA65TU8570UBXL",
"Display": "35,620",
"Pcb": "4,340",
"Remocon": "1,250",
"SMPS": "3,280",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65TU8570",
"ModelNumber": "UA65TU8570UXXL",
"Display": "36,250",
"Pcb": "4,370",
"Remocon": "1,250",
"SMPS": "3,280",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "65TUE60A",
"ModelNumber": "UA65TUE60AKBXL/XXL",
"Display": "45,580",
"Pcb": "4,940",
"Remocon": "1,250",
"SMPS": "3,730",
"ImageName": "product-uhd.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q60A",
"ModelNumber": "QA65Q60AAKLXL",
"Display": "26,420",
"Pcb": "4,590",
"Remocon": "2,350",
"SMPS": "4,180",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q60B",
"ModelNumber": "QA65Q60BAKLXL",
"Display": "32,460",
"Pcb": "4,610",
"Remocon": "2,610",
"SMPS": "4,630",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q60T",
"ModelNumber": "QA65Q60TAKXXL",
"Display": "35,150",
"Pcb": "4,920",
"Remocon": "1,250",
"SMPS": "3,280",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q70A",
"ModelNumber": "QA65Q70AAKLXL",
"Display": "39,050",
"Pcb": "6,320",
"Remocon": "2,350",
"SMPS": "4,220",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q70B",
"ModelNumber": "QA65Q70BAKLXL",
"Display": "31,630",
"Pcb": "6,230",
"Remocon": "2,610",
"SMPS": "4,530",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q70T",
"ModelNumber": "QA65Q70TAKXXL",
"Display": "41,190",
"Pcb": "6,060",
"Remocon": "1,540",
"SMPS": "3,550",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q80A",
"ModelNumber": "QA65Q80AAKLXL",
"Display": "42,860",
"Pcb": "6,200",
"Remocon": "2,350",
"SMPS": "4,660",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q80B",
"ModelNumber": "QA65Q80BAKLXL",
"Display": "36,660",
"Pcb": "7,790",
"Remocon": "2,610",
"SMPS": "4,660",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q80T",
"ModelNumber": "QA65Q80TAKXXL",
"Display": "68,990",
"Pcb": "5,890",
"Remocon": "1,540",
"SMPS": "4,660",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "65Q95T",
"ModelNumber": "QA65Q95TAKXXL",
"Display": "59,540",
"Pcb": "5,790",
"Remocon": "1,540",
"SMPS": "4,480",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "65QN85C",
"ModelNumber": "QA65QN85CAKLXL",
"Display": "50,330",
"Pcb": "6,030",
"Remocon": "2,610",
"SMPS": "4,900",
"ImageName": "product-65qn85c.png"
},{
"Series": "QLED 4K TV",
"Product": "65QN85A",
"ModelNumber": "QA65QN85AAKLXL",
"Display": "60,410",
"Pcb": "6,010",
"Remocon": "2,350",
"SMPS": "4,610",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "65QN85B",
"ModelNumber": "QA65QN85BAKLXL",
"Display": "51,100",
"Pcb": "6,790",
"Remocon": "2,610",
"SMPS": "4,500",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "65QN90A",
"ModelNumber": "QA65QN90AAKLXL",
"Display": "82,970",
"Pcb": "6,500",
"Remocon": "2,350",
"SMPS": "5,030",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "65QN90B",
"ModelNumber": "QA65QN90BAKLXL",
"Display": "59,490",
"Pcb": "4,540",
"Remocon": "2,610",
"SMPS": "4,890",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "65QN95B",
"ModelNumber": "QA65QN95BAKLXL",
"Display": "74,340",
"Pcb": "8,540",
"Remocon": "2,610",
"SMPS": "5,510",
"ImageName": "product-qledneo.png"
},{
"Series": "UHD TV",
"Product": "70AU7700K",
"ModelNumber": "UA70AU7700KLXL",
"Display": "37,680",
"Pcb": "5,000",
"Remocon": "1,230",
"SMPS": "4,220",
"ImageName": "product-uhd.png"
},{
"Series": "QLED 4K TV",
"Product": "75QN90B",
"ModelNumber": "QA75QN90BAKXXL",
"Display": "78,320",
"Pcb": "5,080",
"Remocon": "2,610",
"SMPS": "5,450",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "75QN85A",
"ModelNumber": "QA75QN85AAKXXL",
"Display": "85,710",
"Pcb": "6,710",
"Remocon": "2,350",
"SMPS": "4,970",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "75Q60AA",
"ModelNumber": "QA75Q60AAKXXL",
"Display": "52,640",
"Pcb": "4,590",
"Remocon": "2,350",
"SMPS": "4,830",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "75Q60AB",
"ModelNumber": "QA75Q60ABKXXL",
"Display": "44,560",
"Pcb": "4,590",
"Remocon": "2,350",
"SMPS": "4,830",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "75Q60BA",
"ModelNumber": "QA75Q60BAKXXL",
"Display": "42,300",
"Pcb": "4,510",
"Remocon": "2,610",
"SMPS": "4,570",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "75Q70A",
"ModelNumber": "QA75Q70AAKXXL",
"Display": "48,180",
"Pcb": "6,320",
"Remocon": "2,350",
"SMPS": "5,060",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "75Q70B",
"ModelNumber": "QA75Q70BAKXXL",
"Display": "45,410",
"Pcb": "6,230",
"Remocon": "2,610",
"SMPS": "5,040",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "75Q70T",
"ModelNumber": "QA75Q70TAKXXL",
"Display": "47,990",
"Pcb": "5,750",
"Remocon": "1,540",
"SMPS": "4,290",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "75Q95T",
"ModelNumber": "QA75Q95TAKXXL",
"Display": "1,05,590",
"Pcb": "5,160",
"Remocon": "1,540",
"SMPS": "5,110",
"ImageName": "product-qled4k.png"
},{
"Series": "UHD TV",
"Product": "75AU7700K",
"ModelNumber": "UA75AU7700KXXL",
"Display": "37,030",
"Pcb": "4,220",
"Remocon": "1,230",
"SMPS": "4,300",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "75AU8000K",
"ModelNumber": "UA75AU8000KLXL/XXL",
"Display": "35,970",
"Pcb": "4,850",
"Remocon": "1,230",
"SMPS": "4,610",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "75AU8200K",
"ModelNumber": "UA75AU8200KLXL",
"Display": "35,970",
"Pcb": "4,850",
"Remocon": "1,230",
"SMPS": "4,610",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "75AU8200",
"ModelNumber": "UA75AU8200KXXL",
"Display": "52,980",
"Pcb": "4,850",
"Remocon": "1,230",
"SMPS": "4,610",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "75BU8000K",
"ModelNumber": "UA75BU8000KXXL",
"Display": "37,360",
"Pcb": "4,440",
"Remocon": "2,610",
"SMPS": "4,390",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "75TU8000K",
"ModelNumber": "UA75TU8000KXXL",
"Display": "66,840",
"Pcb": "4,470",
"Remocon": "1,250",
"SMPS": "4,220",
"ImageName": "product-uhd.png"
},{
"Series": "UHD TV",
"Product": "75TU8200K",
"ModelNumber": "UA75TU8200KXXL",
"Display": "48,070",
"Pcb": "4,470",
"Remocon": "1,250",
"SMPS": "4,220",
"ImageName": "product-uhd.png"
},{
"Series": "QLED 4K TV",
"Product": "85Q70A",
"ModelNumber": "QA85Q70AAKXXL",
"Display": "54,210",
"Pcb": "6,320",
"Remocon": "2,350",
"SMPS": "4,530",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "85QN90A",
"ModelNumber": "QA85QN90AAKXXL",
"Display": "1,58,310",
"Pcb": "6,890",
"Remocon": "2,350",
"SMPS": "6,020",
"ImageName": "product-qledneo.png"
},{
"Series": "QLED 4K TV",
"Product": "85QN90B",
"ModelNumber": "QA85QN90BAKXXL",
"Display": "1,38,880",
"Pcb": "5,080",
"Remocon": "2,610",
"SMPS": "5,810",
"ImageName": "product-qledneo.png"
},{
"Series": "UHD TV",
"Product": "85BU8000K",
"ModelNumber": "UA85BU8000KXXL",
"Display": "56,530",
"Pcb": "4,440",
"Remocon": "2,610",
"SMPS": "4,770",
"ImageName": "product-cuhd.png"
},{
"Series": "QLED 4K TV",
"Product": "85Q60T",
"ModelNumber": "QA85Q60TAKXXL",
"Display": "85,620",
"Pcb": "4,930",
"Remocon": "1,250",
"SMPS": "4,190",
"ImageName": "product-qled4k.png"
},{
"Series": "QLED 4K TV",
"Product": "98QN90A",
"ModelNumber": "QA98QN90AAKXXL",
"Display": "2,17,330",
"Pcb": "6,700",
"Remocon": "2,350",
"SMPS": "8,550",
"ImageName": "product-qledneo.png"
},{
"Series": "Full HD LED TV",
"Product": "43T5310A",
"ModelNumber": "UA43T5310AKXXL",
"Display": "17,890",
"Pcb": "6,180",
"Remocon": "360",
"SMPS": "",
"ImageName": "product-fhd.png"
},{
"Series": "HD LED TV",
"Product": "32T4010",
"ModelNumber": "UA32T4010ARXXL",
"Display": "7,420",
"Pcb": "4,510",
"Remocon": "190",
"SMPS": "",
"ImageName": "product-hdtv.png"
},{
"Series": "Full HD LED TV",
"Product": "43T5310B",
"ModelNumber": "UA43T5310BKXXL",
"Display": "12,440",
"Pcb": "6,160",
"Remocon": "360",
"SMPS": "",
"ImageName": "product-fhd.png"
},{
"Series": "Full HD LED TV",
"Product": "43T5350A",
"ModelNumber": "UA43T5350AKXXL",
"Display": "10,950",
"Pcb": "6,180",
"Remocon": "360",
"SMPS": "",
"ImageName": "product-fhd.png"
},{
"Series": "Full HD LED TV",
"Product": "43T5350B",
"ModelNumber": "UA43T5350BKXXL",
"Display": "12,440",
"Pcb": "6,160",
"Remocon": "360",
"SMPS": "",
"ImageName": "product-fhd.png"
},{
"Series": "Full HD LED TV",
"Product": "43T5500A",
"ModelNumber": "UA43T5500AKXXL",
"Display": "12,010",
"Pcb": "4,380",
"Remocon": "950",
"SMPS": "2,680",
"ImageName": "product-fhd.png"
},{
"Series": "Full HD LED TV",
"Product": "43T5770A",
"ModelNumber": "UA43T5770AUBXL",
"Display": "12,010",
"Pcb": "4,230",
"Remocon": "950",
"SMPS": "2,680",
"ImageName": "product-fhd.png"
},{
"Series": "Full HD LED TV",
"Product": "43T5770",
"ModelNumber": "UA43T5770AUXXL",
"Display": "12,010",
"Pcb": "4,630",
"Remocon": "950",
"SMPS": "2,680",
"ImageName": "product-fhd.png"
},{
"Series": "Full HD LED TV",
"Product": "43TE50A",
"ModelNumber": "UA43TE50AAKXXL",
"Display": "10,630",
"Pcb": "4,380",
"Remocon": "950",
"SMPS": "2,680",
"ImageName": "product-fhd.png"
},{
"Series": "Full HD LED TV",
"Product": "43TE50F",
"ModelNumber": "UA43TE50FAKXXL",
"Display": "12,010",
"Pcb": "4,380",
"Remocon": "950",
"SMPS": "2,680",
"ImageName": "product-fhd.png"
},{
"Series": "Full HD LED TV",
"Product": "49M5570",
"ModelNumber": "UA49M5570AULXL",
"Display": "19,230",
"Pcb": "4,680",
"Remocon": "1,130",
"SMPS": "2,630",
"ImageName": "product-49m5570.png"
},{
"Series": "HD LED TV",
"Product": "32T4050A",
"ModelNumber": "UA32T4050ARXXL",
"Display": "7,420",
"Pcb": "4,720",
"Remocon": "190",
"SMPS": "",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4310A",
"ModelNumber": "UA32T4310AKXXL",
"Display": "7,420",
"Pcb": "4,720",
"Remocon": "360",
"SMPS": "",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4310B",
"ModelNumber": "UA32T4310BKXXL",
"Display": "7,420",
"Pcb": "6,030",
"Remocon": "360",
"SMPS": "",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4340A",
"ModelNumber": "UA32T4340AKXXL",
"Display": "7,420",
"Pcb": "4,720",
"Remocon": "360",
"SMPS": "",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4340B",
"ModelNumber": "UA32T4340BKXXL",
"Display": "7,420",
"Pcb": "6,030",
"Remocon": "360",
"SMPS": "",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4350A",
"ModelNumber": "UA32T4350AKXXL",
"Display": "7,420",
"Pcb": "4,870",
"Remocon": "360",
"SMPS": "",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4350B",
"ModelNumber": "UA32T4350BKXXL",
"Display": "7,420",
"Pcb": "6,030",
"Remocon": "360",
"SMPS": "",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4410A",
"ModelNumber": "UA32T4410AKLXL",
"Display": "8,810",
"Pcb": "",
"Remocon": "250",
"SMPS": "280",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4600A",
"ModelNumber": "UA32T4600AKBXL",
"Display": "4,580",
"Pcb": "5,040",
"Remocon": "1,180",
"SMPS": "460",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4600",
"ModelNumber": "UA32T4600AKXXL",
"Display": "4,580",
"Pcb": "5,040",
"Remocon": "950",
"SMPS": "460",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4700A",
"ModelNumber": "UA32T4700AKBXL",
"Display": "4,580",
"Pcb": "5,110",
"Remocon": "950",
"SMPS": "280",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4750A",
"ModelNumber": "UA32T4750AKBXL",
"Display": "7,110",
"Pcb": "5,110",
"Remocon": "950",
"SMPS": "280",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4750",
"ModelNumber": "UA32T4750AKXXL",
"Display": "7,100",
"Pcb": "5,110",
"Remocon": "950",
"SMPS": "280",
"ImageName": "product-hdtv.png"
},{
"Series": "HD LED TV",
"Product": "32T4900A",
"ModelNumber": "UA32T4900AKXXL",
"Display": "4,580",
"Pcb": "4,790",
"Remocon": "1,180",
"SMPS": "460",
"ImageName": "product-hdtv.png"
}, ];
});