Vom Fachmann für dein Motorrad
- Hersteller: Meiwa
- Artikelnummer: B.025.L9
- Produktart: Slip-On Auspuffanlage
- Farbe: Schwarz (Edelstahl, schwarz beschichtet)
- Material: Edelstahl
- Oberfläche: Matt schwarz
- Passend für: BMW S 1000 XR (Modelljahre 2015–2016)
- Bauart: Slip-On Endschalldämpfer
- Zulassung: Mit EG-ABE (je nach Ausführung und Land)
Der MIVV Suono Edelstahl schwarz ist ein hochwertiger Slip-On Endschalldämpfer, entwickelt für die BMW S 1000 XR der Baujahre 2015 und 2016. Das Produkt stammt vom renommierten Hersteller Meiwa und bietet eine Kombination aus sportlichem Design und moderner Abgastechnologie.
Vorteile auf einen Blick
Diese Auspuffanlage überzeugt durch ihre durchdachte Konstruktion und hochwertige Verarbeitung.
- Sichtbar sportliches Design mit mattschwarzer Oberfläche
- Gewichtsersparnis gegenüber dem Originalauspuff
- Langlebige Materialien für hohe Widerstandsfähigkeit
- Klangoptimierung für ein markantes Sounderlebnis
Technische Daten
Die wichtigsten technischen Merkmale im Überblick:
- Edelstahl-Korpus mit schwarzer Beschichtung für Korrosionsschutz
- Bauform: Slip-On, einfache Montage am Originalkrümmer
- Kompakte Bauweise für optimale Bodenfreiheit und sportliche Optik
- Dämpfungseinsatz (DB-Killer) in der Regel herausnehmbar (je nach Zulassungsvorgabe)
- Zugelassen im Bereich der StVZO mit EG-ABE (modell- und länderspezifisch)
Einsatzbereiche
Der MIVV Suono Edelstahl schwarz eignet sich besonders für Motorradbegeisterte, die Wert auf Performance, Design und Klang legen. Typische Anwendende sind Privatpersonen, Werkstätten sowie Fachbetriebe im Bereich Motorradtechnik.
Lieferumfang
- MIVV Suono Slip-On Endschalldämpfer in Edelstahl schwarz mattiert
- Anbaumaterial (Montagehalter, Schellen, ggf. Adapterstücke)
- Dämpfungseinsatz/DB-Killer (je nach Ausführung vormontiert oder lose beigelegt)
- Anbauanleitung (herstellerabhängig in mehreren Sprachen verfügbar)
- Hinweis: Der Lieferumfang kann je nach Modelljahr oder Ausführung variieren.
FAQ
Ist der Auspuff für die BMW S 1000 XR aller Baujahre geeignet?
Der MIVV Suono Edelstahl schwarz ist speziell für die BMW S 1000 XR der Baujahre 2015–2016 konzipiert.
Muss das Steuergerät angepasst werden?
In der Regel ist keine Anpassung des Steuergeräts erforderlich. Bei weiteren Modifikationen am Abgassystem kann eine Abstimmung sinnvoll sein.
Darf der DB-Killer entfernt werden?
Das Entfernen des DB-Killers führt zum Erlöschen der Betriebserlaubnis im öffentlichen Straßenverkehr.
Bietet das Produkt eine Straßenzulassung?
Laut Hersteller verfügt das Produkt über eine EG-ABE; Details können je nach Land abweichen.
Lässt sich die Montage selbst durchführen?
Die Montage erfolgt als Slip-On-System meist unkompliziert; bei Unsicherheiten empfiehlt sich die Installation durch Fachpersonal.
Hinweis: Alle Angaben ohne Gewähr.
Gottlieb-Daimler-Str. 10
45711 Datteln
Nordrhein-Westfalen Deutschland
info@langenscheidt-gmbh.de
Zona Industriale 0
64027 Sant’Omero
Italien
moto@mivv.it
Du musst angemeldet sein, um eine Bewertung abgeben zu können.
Verwandte Produkte

<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>MIVV GP-C Carbon mit Carbonendkappe YAMAHA MT-125 2015 > 2019
MIVV Komplettanlage GP-C Carbon mit Carbonendkappe YAMAHA MT-125 2015 > 2019 Originalkat entfällt. Nachrüstkat ACC.041.A1…
497,00€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>MIVV GP-C Edelstahl schwarz mit Carbonendkappe YAMAHA MT-125 2015 > 2019
MIVV Komplettanlage GP-C Edelstahl schwarz mit Carbonendkappe YAMAHA MT-125 2015 > 2019 Originalkat entfällt. Nachrüstkat…
450,00€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>MIVV GP-C Edelstahl schwarz mit Carbonendkappe YAMAHA MT-07 / FZ-07 2014 > 2023
MIVV Komplettanlage GP-C Edelstahl schwarz mit Carbonendkappe YAMAHA MT-07 / FZ-07 2014 > 2023 Originalkat…
497,00€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>MIVV GP-C Carbon mit Carbonendkappe YAMAHA MT-07 / FZ-07 2014 > 2023
MIVV Komplettanlage GP-C Carbon mit Carbonendkappe YAMAHA MT-07 / FZ-07 2014 > 2023 Originalkat entfällt.…
535,00€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>

MIVV GP-C Carbon mit Carbonendkappe YAMAHA MT-125 2015 > 2019
MIVV Komplettanlage GP-C Carbon mit Carbonendkappe YAMAHA MT-125 2015 > 2019 Originalkat entfällt. Nachrüstkat ACC.041.A1...
497,00€

MIVV GP-C Edelstahl schwarz mit Carbonendkappe YAMAHA MT-125 2015 > 2019
MIVV Komplettanlage GP-C Edelstahl schwarz mit Carbonendkappe YAMAHA MT-125 2015 > 2019 Originalkat entfällt. Nachrüstkat...
450,00€

MIVV GP-C Edelstahl schwarz mit Carbonendkappe YAMAHA MT-07 / FZ-07 2014 > 2023
MIVV Komplettanlage GP-C Edelstahl schwarz mit Carbonendkappe YAMAHA MT-07 / FZ-07 2014 > 2023 Originalkat...
497,00€

MIVV GP-C Carbon mit Carbonendkappe YAMAHA MT-07 / FZ-07 2014 > 2023
MIVV Komplettanlage GP-C Carbon mit Carbonendkappe YAMAHA MT-07 / FZ-07 2014 > 2023 Originalkat entfällt....
535,00€










Bewertungen
Es gibt noch keine Bewertungen.