( qŒ–`¥_Œ– ùVŒ–àqŒ–P´oŒ–H´oŒ–€ŽSŒ–EH€SŒ–@úVŒ– ‚Œ_Œ–( qŒ– ¥_Œ–@brŒ–ØqŒ–X´oŒ–Ð&AŒ–€ŽSŒ–MPزfŒ–àbrŒ–!‚À°_Œ–( qŒ– ­XŒ–HHsŒ–ÐqŒ–h´oŒ–`´oŒ–à&AŒ–€ŽSŒ–WeŽSŒ– KsŒ–¸qŒ–ack::is€Š·‘–ð&AŒ–ðÿÿÿÀ dŒ–€€NL¸eUðÿÿÿ€ dŒ–€ðÿÿÿdŒ–€ehouse_i¸qŒ–ÐqŒ–ouseŒSŒ–$l0R_Œ–€çWŒ–àqŒ– çWŒ–àqŒ–`æWŒ–àqŒ–æWŒ–àqŒ–¨°fŒ–àqŒ–(Ž·‘–à°fŒ–àqŒ–"‚è_Œ–àqŒ–`©_Œ–àÀ_Œ–ÀqŒ–x´oŒ–p´oŒ–ŒSŒ–KN€‰SŒ–€Á_Œ– ‚PŠ_Œ–àqŒ– ¦_Œ–ÀcrŒ–¸qŒ–€´oŒ–'AŒ–ŒSŒ–SV8.fŒ–`drŒ–!‚p_Œ–àqŒ– ¬XŒ–HMsŒ–°qŒ–´oŒ–ˆ´oŒ–'AŒ–ŒSŒ–]k‰SŒ– PsŒ–˜qŒ–very']]ÀàWŒ– 'AŒ–ðÿÿÿÀdŒ–€€NL¸eUðÿÿÿ€dŒ–€ðÿÿÿ dŒ–€ []; ÀqŒ–ØqŒ– { €‡SŒ–$x€3mŒ–ÐFÖAÀªXŒ–ÀqŒ–ˆüÎA áWŒ–ÀqŒ–(X B€drŒ–ÀqŒ–ÈŠ_Œ–Àṑ–ÀqŒ–PBÎA€ýyŒ–ÀqŒ–H*fŒ–°©[Œ–ÀqŒ–(0⹑–°,fŒ–ÀqŒ–"‚èˆ_Œ–ÀqŒ–À¥_Œ–(ÀdŒ–ÈqŒ– ´oŒ–˜´oŒ–€‡SŒ–X\€‚SŒ– dŒ– ‚ˆ‰_Œ–ÀqŒ–`¦_Œ–@erŒ–ÀqŒ–¨´oŒ–0'AŒ–€‡SŒ–ad€ªXŒ–àerŒ–!‚°^Œ–ÀqŒ–`ªXŒ–0RsŒ–¸qŒ–¸´oŒ–°´oŒ–@'AŒ–€‡SŒ–kw€SŒ–UsŒ– qŒ–tock'] @kMŒ–P'AŒ–ðÿÿÿ@dŒ–€€NL¸eUðÿÿÿdŒ–€ðÿÿÿÀdŒ–€t['cart_($qŒ–@!qŒ–er(): NumberConverterInterface { return $this->numberConverter; } /** * @deprecated In ramsey/uuid version 5.0.0, this will be removed. * It is available at {@see UuidV1::getDateTime()}. * * @return DateTimeImmutable An immutable instance of DateTimeInterface * * @throws UnsupportedOperationException if UUID is not time-based * @throws DateTimeException if DateTime throws an exception/error */ public function getDateTime(): DateTimeInterface { if ($this->fields->getVersion() !== 1) { throw new UnsupportedOperationException('Not a time-based UUID'); } $time = $this->timeConverter->convertTime($this->fields->getTimestamp()); try { return new DateTimeImmutable( '@' . $time->getSeconds()->toString() . '.' . str_pad($time->getMicroseconds()->toString(), 6, '0', STR_PAD_LEFT) ); } catch (Throwable $e) { throw new DateTimeException($e->getMessage(), (int) $e->getCode(), $e); } } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. * * @return string[] */ public function getFieldsHex(): array { return [ 'time_low' => $this->fields->getTimeLow()->toString(), 'time_mid' => $this->fields->getTimeMid()->toString(), 'time_hi_and_version' => $this->fields->getTimeHiAndVersion()->toString(), 'clock_seq_hi_and_reserved' => $this->fields->getClockSeqHiAndReserved()->toString(), 'clock_seq_low' => $this->fields->getClockSeqLow()->toString(), 'node' => $this->fields->getNode()->toString(), ]; } /** * @deprecated This method will be removed in 5.0.0. There is no direct * alternative, but the same information may be obtained by splitting * in half the value returned by {@see UuidInterface::getHex()}. */ public function getLeastSignificantBits(): string { $leastSignificantHex = substr($this->getHex()->toString(), 16); return $this->numberConverter->fromHex($leastSignificantHex); } /** * @deprecated This method will be removed in 5.0.0. There is no direct * alternative, but the same information may be obtained by splitting * in half the value returned by {@see UuidInterface::getHex()}. */ public function getLeastSignificantBitsHex(): string { return substr($this->getHex()->toString(), 16); } /** * @deprecated This method will be removed in 5.0.0. There is no direct * alternative, but the same information may be obtained by splitting * in half the value returned by {@see UuidInterface::getHex()}. */ public function getMostSignificantBits(): string { $mostSignificantHex = substr($this->getHex()->toString(), 0, 16); return $this->numberConverter->fromHex($mostSignificantHex); } /** * @deprecated This method will be removed in 5.0.0. There is no direct * alternative, but the same information may be obtained by splitting * in half the value returned by {@see UuidInterface::getHex()}. */ public function getMostSignificantBitsHex(): string { return substr($this->getHex()->toString(), 0, 16); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface} * instance, you may call {@see Rfc4122FieldsInterface::getNode()} * and use the arbitrary-precision math library of your choice to * convert it to a string integer. */ public function getNode(): string { return $this->numberConverter->fromHex($this->fields->getNode()->toString()); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface} * instance, you may call {@see Rfc4122FieldsInterface::getNode()}. */ public function getNodeHex(): string { return $this->fields->getNode()->toString(); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface} * instance, you may call {@see Rfc4122FieldsInterface::getTimeHiAndVersion()} * and use the arbitrary-precision math library of your choice to * convert it to a string integer. */ public function getTimeHiAndVersion(): string { return $this->numberConverter->fromHex($this->fields->getTimeHiAndVersion()->toString()); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface} * instance, you may call {@see Rfc4122FieldsInterface::getTimeHiAndVersion()}. */ public function getTimeHiAndVersionHex(): string { return $this->fields->getTimeHiAndVersion()->toString(); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface} * instance, you may call {@see Rfc4122FieldsInterface::getTimeLow()} * and use the arbitrary-precision math library of your choice to * convert it to a string integer. */ public function getTimeLow(): string { return $this->numberConverter->fromHex($this->fields->getTimeLow()->toString()); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface} * instance, you may call {@see Rfc4122FieldsInterface::getTimeLow()}. */ public function getTimeLowHex(): string { return $this->fields->getTimeLow()->toString(); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface} * instance, you may call {@see Rfc4122FieldsInterface::getTimeMid()} * and use the arbitrary-precision math library of your choice to * convert it to a string integer. */ public function getTimeMid(): string { return $this->numberConverter->fromHex($this->fields->getTimeMid()->toString()); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface} * instance, you may call {@see Rfc4122FieldsInterface::getTimeMid()}. */ public function getTimeMidHex(): string { return $this->fields->getTimeMid()->toString(); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface} * instance, you may call {@see Rfc4122FieldsInterface::getTimestamp()} * and use the arbitrary-precision math library of your choice to * convert it to a string integer. */ public function getTimestamp(): string { if ($this->fields->getVersion() !== 1) { throw new UnsupportedOperationException('Not a time-based UUID'); } return $this->numberConverter->fromHex($this->fields->getTimestamp()->toString()); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a {@see Rfc4122FieldsInterface} * instance, you may call {@see Rfc4122FieldsInterface::getTimestamp()}. */ public function getTimestampHex(): string { if ($this->fields->getVersion() !== 1) { throw new UnsupportedOperationException('Not a time-based UUID'); } return $this->fields->getTimestamp()->toString(); } /** * @deprecated This has moved to {@see Rfc4122FieldsInterface::getUrn()} and * is available on {@see \Ramsey\Uuid\Rfc4122\UuidV1}, * {@see \Ramsey\Uuid\Rfc4122\UuidV3}, {@see \Ramsey\Uuid\Rfc4122\UuidV4}, * and {@see \Ramsey\Uuid\Rfc4122\UuidV5}. */ public function getUrn(): string { return 'urn:uuid:' . $this->toString(); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a * {@see \Ramsey\Uuid\Rfc4122\FieldsInterface} instance, you may call * {@see \Ramsey\Uuid\Rfc4122\FieldsInterface::getVariant()}. */ public function getVariant(): ?int { return $this->fields->getVariant(); } /** * @deprecated Use {@see UuidInterface::getFields()} to get a * {@see FieldsInterface} instance. If it is a * {@see \Ramsey\Uuid\Rfc4122\FieldsInterface} instance, you may call * {@see \Ramsey\Uuid\Rfc4122\FieldsInterface::getVersion()}. */ public function getVersion(): ?int { return $this->fields->getVersion(); } } Bike Parts
"Technically necessary cookies. Type and purpose of processing:

We use cookies to make our website more user-friendly. Some elements of our website require that the accessing browser can be identified even after a page change. The purpose of using technically necessary cookies is to simplify the use of websites for users. Some functions of our website cannot be offered without the use of cookies. For these it is necessary that the browser is recognized even after a page change. "NO data is passed on,
NO user profiles are created that are used to display advertising.

This website only uses service providers from Germany and NO personal data is transferred to third countries.

For more information see data protection.
close

Filter By

Colour

Colour

Availability

Availability

Price

Price

  • €43.00 - €54.00