SELECT url_to, r404
FROM pod_redirect
WHERE BINARY REPLACE(url_from,'/ru/','/') = '/konstruktory_kits/developing-led-transformery-magplayer-same_toy-led.html' LIMIT 0,1 [0.00077104568481445 sec]
SELECT pod_filter.id,pod_filter.url FROM pod_filter WHERE BINARY pod_filter.url IN ('developing','led','transformery','magplayer','same_toy','led') order by url [0.0027289390563965 sec]
SELECT pod_sub_icon.id,pod_sub_icon.url FROM pod_sub_icon WHERE BINARY pod_sub_icon.url IN ('developing','led','transformery','magplayer','same_toy','led') order by url [0.0010168552398682 sec]
select id,url from pod_cat_brand where BINARY url IN ('developing','led','transformery','magplayer','same_toy','led') [0.0034439563751221 sec]
SELECT id, url FROM pod_filter WHERE url IN ('developing','led','transformery','magplayer','same_toy','led') [0.00038886070251465 sec]
SELECT id, url FROM pod_sub_icon WHERE url IN ('developing','led','transformery','magplayer','same_toy','led') [0.00038695335388184 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_base_goods;
CREATE TEMPORARY TABLE tmp_base_goods (
id INT NOT NULL PRIMARY KEY,
brand_id INT,
price DECIMAL(10,2),
old_price DECIMAL(10,2),
ordr INT,
is_present TINYINT(1),
sub_icon_id INT,
fast_delivery TINYINT(1),
is_new TINYINT(1),
is_sale TINYINT(1),
KEY idx_brand (brand_id)
) ENGINE=MEMORY [0.00015807151794434 sec]
INSERT INTO tmp_base_goods
(id, brand_id, price, old_price, ordr, is_present, sub_icon_id, fast_delivery, is_new, is_sale)
SELECT g.id, g.brand_id, g.price, g.old_price, g.ordr, g.is_present,
g.sub_icon_id, g.fast_delivery, g.is_new, g.is_sale
FROM pod_cat_good g
WHERE g.cat_id IN (3297,437,447,446) AND g.entry=0 AND g.is_active AND g.is_present_all_mods
UNION
SELECT g.id, g.brand_id, g.price, g.old_price, g.ordr, g.is_present,
g.sub_icon_id, g.fast_delivery, g.is_new, g.is_sale
FROM pod_cat_good g
INNER JOIN pod_dop_cat_category dc ON dc.good_id = g.id
WHERE dc.dop_cat_id IN (3297,437,447,446) AND g.entry=0 AND g.is_active AND g.is_present_all_mods [0.048953056335449 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_sub_goods;
CREATE TEMPORARY TABLE tmp_sub_goods (
id INT NOT NULL PRIMARY KEY,
entry INT NOT NULL,
price DECIMAL(10,2),
old_price DECIMAL(10,2),
sub_icon_id INT,
is_present TINYINT(1),
fast_delivery TINYINT(1),
is_new TINYINT(1),
is_sale TINYINT(1),
KEY idx_entry (entry)
) ENGINE=MEMORY [0.00055885314941406 sec]
INSERT INTO tmp_sub_goods
(id, entry, price, old_price, sub_icon_id, is_present, fast_delivery, is_new, is_sale)
SELECT go.id, go.entry, go.price, go.old_price, go.sub_icon_id, go.is_present,
go.fast_delivery, go.is_new, go.is_sale
FROM pod_cat_good go
INNER JOIN tmp_base_goods t ON go.entry = t.id
WHERE go.is_active AND go.is_present [0.0007472038269043 sec]
SELECT g.id /* cats:3297,437,447,446 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (463,2223)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (3460)
WHERE g.brand_id IN (1600,2553,1470) AND
1
[0.00058102607727051 sec]
CREATE TEMPORARY TABLE temp_brand_counts_6a300467d631b (
id INT,
gid INT,
INDEX idx_id (id),
INDEX idx_gid (gid)
) [0.00018191337585449 sec]
INSERT INTO temp_brand_counts_6a300467d631b (id, gid)
SELECT g.brand_id AS id, g.id AS gid /* cats:3297,437,447,446 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (463,2223)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (3460)
WHERE 1
UNION
SELECT id, null gid
FROM pod_cat_category
WHERE id in (1600,2553,1470) [0.00099897384643555 sec]
SELECT b.id, b.name_ua AS name, pc.name_ua AS country, b.country_id,
b.image_icon, b.url, b.ordr, pc.code,
COALESCE(tc.count, 0) as count
FROM pod_cat_brand b
INNER JOIN (
SELECT id, COUNT(gid) as count
FROM temp_brand_counts_6a300467d631b
GROUP BY id
HAVING COUNT(gid) > 0
) tc ON b.id = tc.id
LEFT JOIN pod_country pc ON (pc.id = b.country_id AND pc.is_active = 1)
WHERE b.is_active = '1'
ORDER BY b.ordr [0.00034999847412109 sec]
DROP TEMPORARY TABLE IF EXISTS temp_brand_counts_6a300467d631b [5.9843063354492E-5 sec]
SELECT MIN(min_price) AS min_price, MAX(max_price) AS max_price
FROM (
SELECT MIN(g.price) AS min_price, MAX(g.price) AS max_price /* cats:3297,437,447,446 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (463,2223)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (3460)
WHERE g.brand_id IN (1600,2553,1470) AND
g.is_present AND
1
UNION
SELECT MIN(go.price) AS min_price, MAX(go.price) AS max_price /* cats:3297,437,447,446 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (463,2223)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (3460)
WHERE g.brand_id IN (1600,2553,1470) AND
1
) A
[0.00032496452331543 sec]
SELECT g.id,if(g.is_present and g.price >= '0' and g.price <= '99999',least(g.price,ifnull(min(pcg.price),g.price)),ifnull(min(pcg.price),g.price)) min_sort_price
, if(g.is_present and g.price >= '0' and g.price <= '99999',greatest(g.price,ifnull(max(pcg.price),g.price)),ifnull(max(pcg.price),g.price)) max_sort_price
FROM (
SELECT g.id /* cats:3297,437,447,446 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (463,2223)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (3460)
WHERE g.brand_id IN (1600,2553,1470) AND
1
) a INNER JOIN pod_cat_good g ON a.id = g.id
LEFT JOIN pod_cat_good pcg ON pcg.entry=g.id and pcg.is_present=1 and pcg.is_present=1 and pcg.price >= '0' and pcg.price <= '99999' GROUP BY g.id
ORDER BY g.ordr desc
LIMIT 0, 32 [0.00041580200195312 sec]
SELECT name_ua AS name, url FROM pod_cat_brand WHERE id='1600.2553.1470' [0.00011587142944336 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467d8e39;
CREATE TEMPORARY TABLE tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467d8e39 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00034403800964355 sec]
INSERT INTO tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467d8e39 (goods_id, filter_id)
SELECT DISTINCT
t.id AS goods_id,
f.id AS filter_id
FROM pod_cat_filter cf
INNER JOIN pod_filter fm ON cf.filter_id = fm.id AND fm.is_split = 0 AND fm.is_active
INNER JOIN pod_good_filter gf USE INDEX (idx_cat_filter_good)
ON gf.filter_id = cf.filter_id AND gf.cat_id IN (3297,437,447,446) AND gf.filter_id_value NOT IN (463,2223,3460)
INNER JOIN pod_filter f ON gf.filter_id_value = f.id AND f.is_active
INNER JOIN tmp_base_goods t ON gf.id_good = t.id
WHERE cf.category_id = 3297 [0.048748016357422 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467d8e39;
CREATE TEMPORARY TABLE tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467d8e39 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00015401840209961 sec]
INSERT IGNORE INTO tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467d8e39 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467d8e39 p
GROUP BY p.filter_id [0.00018310546875 sec]
SELECT
c.filter_id,
c.count,
f.entry,
f.name_ua AS name,
f.url,
f.ord,
fm.name_ua AS mname,
fm.url AS murl,
fm.ord AS mord
FROM tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467d8e39 c
INNER JOIN pod_filter f ON c.filter_id = f.id
INNER JOIN pod_filter fm ON f.entry = fm.id
ORDER BY fm.ord DESC, f.ord DESC, c.filter_id [0.00022101402282715 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467d8e39 [9.0837478637695E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467d8e39 [3.9100646972656E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e54b9;
CREATE TEMPORARY TABLE tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e54b9 (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00010204315185547 sec]
INSERT INTO tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e54b9 (goods_id, filter_id)
SELECT DISTINCT
ts.entry AS goods_id,
f.id AS filter_id
FROM pod_cat_filter cf
INNER JOIN pod_filter fm ON cf.filter_id = fm.id AND fm.is_split = 1 AND fm.is_active
INNER JOIN pod_good_filter gf USE INDEX (idx_cat_filter_good)
ON gf.filter_id = cf.filter_id AND gf.cat_id IN (3297,437,447,446) AND gf.filter_id_value NOT IN (463,2223,3460)
INNER JOIN pod_filter f ON gf.filter_id_value = f.id AND f.is_active
INNER JOIN tmp_sub_goods ts ON gf.id_good = ts.id
WHERE cf.category_id = 3297 [0.00030112266540527 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e54b9;
CREATE TEMPORARY TABLE tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e54b9 (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00011396408081055 sec]
INSERT IGNORE INTO tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e54b9 (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e54b9 p
GROUP BY p.filter_id [0.00011897087097168 sec]
SELECT
c.filter_id,
c.count,
f.entry,
f.name_ua AS name,
f.url,
f.ord,
fm.name_ua AS mname,
fm.url AS murl,
fm.ord AS mord
FROM tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e54b9 c
INNER JOIN pod_filter f ON c.filter_id = f.id
INNER JOIN pod_filter fm ON f.entry = fm.id
ORDER BY fm.ord DESC, f.ord DESC, c.filter_id [0.00010108947753906 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e54b9 [7.3909759521484E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e54b9 [3.6954879760742E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c;
CREATE TEMPORARY TABLE tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00010895729064941 sec]
INSERT INTO tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c (goods_id, filter_id)
SELECT DISTINCT
t.id AS goods_id,
f.id AS filter_id
FROM pod_cat_filter cf
INNER JOIN pod_filter fm ON cf.filter_id = fm.id AND fm.is_split = 0 AND fm.is_active
INNER JOIN pod_good_filter gf USE INDEX (idx_cat_filter_good)
ON gf.filter_id = cf.filter_id AND gf.cat_id IN (3297,437,447,446) AND gf.filter_id = 461
INNER JOIN pod_filter f ON gf.filter_id_value = f.id AND f.is_active
INNER JOIN tmp_base_goods t ON gf.id_good = t.id
WHERE cf.category_id = 3297 [0.0059189796447754 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c;
CREATE TEMPORARY TABLE tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00012898445129395 sec]
INSERT INTO tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c p
GROUP BY p.filter_id [0.00012803077697754 sec]
INSERT IGNORE INTO tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c (filter_id, count)
SELECT pf.id, 0
FROM pod_filter pf
LEFT JOIN tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c c ON c.filter_id = pf.id
WHERE pf.id in (463,2223) AND c.filter_id IS NULL [0.00014996528625488 sec]
SELECT
c.filter_id,
c.count,
f.entry,
f.name_ua AS name,
f.url,
f.ord,
fm.name_ua AS mname,
fm.url AS murl,
fm.ord AS mord
FROM tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c c
INNER JOIN pod_filter f ON c.filter_id = f.id
INNER JOIN pod_filter fm ON f.entry = fm.id
ORDER BY fm.ord DESC, f.ord DESC, c.filter_id [0.00017809867858887 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c [8.0108642578125E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e5c0c [3.6001205444336E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e;
CREATE TEMPORARY TABLE tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e (
goods_id INT NOT NULL,
filter_id INT NOT NULL,
PRIMARY KEY (goods_id, filter_id)
) ENGINE=MEMORY; [0.00010395050048828 sec]
INSERT INTO tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e (goods_id, filter_id)
SELECT DISTINCT
t.id AS goods_id,
f.id AS filter_id
FROM pod_cat_filter cf
INNER JOIN pod_filter fm ON cf.filter_id = fm.id AND fm.is_split = 0 AND fm.is_active
INNER JOIN pod_good_filter gf USE INDEX (idx_cat_filter_good)
ON gf.filter_id = cf.filter_id AND gf.cat_id IN (3297,437,447,446) AND gf.filter_id = 3436
INNER JOIN pod_filter f ON gf.filter_id_value = f.id AND f.is_active
INNER JOIN tmp_base_goods t ON gf.id_good = t.id
WHERE cf.category_id = 3297 [0.0013878345489502 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e;
CREATE TEMPORARY TABLE tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e (
filter_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00078201293945312 sec]
INSERT INTO tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e (filter_id, count)
SELECT
p.filter_id,
COUNT(*) AS count
FROM tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e p
GROUP BY p.filter_id [0.00012898445129395 sec]
INSERT IGNORE INTO tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e (filter_id, count)
SELECT pf.id, 0
FROM pod_filter pf
LEFT JOIN tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e c ON c.filter_id = pf.id
WHERE pf.id in (3460) AND c.filter_id IS NULL [0.00010180473327637 sec]
SELECT
c.filter_id,
c.count,
f.entry,
f.name_ua AS name,
f.url,
f.ord,
fm.name_ua AS mname,
fm.url AS murl,
fm.ord AS mord
FROM tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e c
INNER JOIN pod_filter f ON c.filter_id = f.id
INNER JOIN pod_filter fm ON f.entry = fm.id
ORDER BY fm.ord DESC, f.ord DESC, c.filter_id [0.00034499168395996 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_pairs_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e [9.2983245849609E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e7a1e [3.814697265625E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_piirlj8sg44m1b6qcufop9h59d_6a300467e8881;
CREATE TEMPORARY TABLE tmp_A_piirlj8sg44m1b6qcufop9h59d_6a300467e8881 (
entry INT NOT NULL,
sub_icon_id INT NOT NULL,
PRIMARY KEY (entry, sub_icon_id),
INDEX idx_sub_icon_id (sub_icon_id)
) ENGINE=MEMORY; [0.00014686584472656 sec]
INSERT IGNORE INTO tmp_A_piirlj8sg44m1b6qcufop9h59d_6a300467e8881 (entry, sub_icon_id)
SELECT DISTINCT A.entry, A.sub_icon_id FROM (
SELECT g.id as id, g.id as entry, g.sub_icon_id /* cats:3297,437,447,446 */
FROM tmp_base_goods g
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (463,2223)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (3460)
WHERE g.brand_id IN (1600,2553,1470) AND
g.is_present AND
1
UNION
SELECT go.id as id, g.id as entry, go.sub_icon_id /* cats:3297,437,447,446 */
FROM tmp_sub_goods go
INNER JOIN tmp_base_goods g ON go.entry = g.id
INNER JOIN pod_good_filter gf0 ON g.id = gf0.id_good AND gf0.filter_id_value in (463,2223)
INNER JOIN pod_good_filter gf1 ON g.id = gf1.id_good AND gf1.filter_id_value in (3460)
WHERE g.brand_id IN (1600,2553,1470) AND
1
) A [0.0003821849822998 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e8881;
CREATE TEMPORARY TABLE tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e8881 (
sub_icon_id INT NOT NULL PRIMARY KEY,
count INT NOT NULL
) ENGINE=MEMORY; [0.00012898445129395 sec]
INSERT IGNORE INTO tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e8881 (sub_icon_id, count)
SELECT
sub_icon_id,
COUNT(DISTINCT entry) AS count
FROM (
SELECT A.entry, A.sub_icon_id
FROM tmp_A_piirlj8sg44m1b6qcufop9h59d_6a300467e8881 A
INNER JOIN pod_sub_icon si ON A.sub_icon_id = si.id AND si.is_active_filter = 1
) AA
GROUP BY sub_icon_id [0.0001530647277832 sec]
SELECT
c.sub_icon_id AS id,
c.count,
si.entry,
si.name_ua AS name,
si.url
FROM tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e8881 c
INNER JOIN pod_sub_icon si ON c.sub_icon_id = si.id AND si.is_active_filter = 1
ORDER BY si.ordr, si.name [0.00011801719665527 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_A_piirlj8sg44m1b6qcufop9h59d_6a300467e8881 [7.7962875366211E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_counts_piirlj8sg44m1b6qcufop9h59d_6a300467e8881 [3.3855438232422E-5 sec]
DROP TEMPORARY TABLE IF EXISTS tmp_base_goods;
DROP TEMPORARY TABLE IF EXISTS tmp_sub_goods [9.3936920166016E-5 sec]
Низькі ціни на Дитячі конструктори Magplayer ... Led (Maгплaиeр ... Лeд) - великий вибір, фото. Купити Дитячі конструктори Magplayer ... Led (Maгплaиeр ... Лeд) в Києві і Україні
Ваше замовлення оформлено! На e-mail відправлено лист з підтвердженням Найближчим часом з Вами зв'яжеться менеджер Дякємо за замовлення!
Ваш профіль буде видалений назавжди. Його не можна відновити. Продовжити?
Залиште свій номер телефону і наші менеджери Вам зателефонують
Оплату картами Visa і MasterCard забезпечує сервіс онлайн-платежів Portmone.com. Безпека оплати підтверджена міжнародним аудитом PCI DSS. Служба підтримки: тел. +380 (44) 2000902