Uploaded From CV. Swandhana Server
No files matched your search
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class BarcodeDynamicHtmlTest extends TestCase
|
||||
{
|
||||
public function test_dynamic_html_barcode_generator_can_generate_code_128_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorDynamicHTML();
|
||||
$generated = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/081231723897-dynamic-code128.html', $generated);
|
||||
}
|
||||
|
||||
public function test_dynamic_html_barcode_generator_can_generate_imb_barcode_to_test_heights()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorDynamicHTML();
|
||||
$generated = $generator->getBarcode('12345678903', $generator::TYPE_IMB);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/12345678903-dynamic-imb.html', $generated);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class BarcodeHtmlTest extends TestCase
|
||||
{
|
||||
public function test_html_barcode_generator_can_generate_code_128_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorHTML();
|
||||
$generated = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/081231723897-code128.html', $generated);
|
||||
}
|
||||
|
||||
public function test_html_barcode_generator_can_generate_imb_barcode_to_test_heights()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorHTML();
|
||||
$generated = $generator->getBarcode('12345678903', $generator::TYPE_IMB);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/12345678903-imb.html', $generated);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,135 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class BarcodeJpgTest extends TestCase
|
||||
{
|
||||
public function test_jpg_barcode_generator_can_generate_code_128_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorJPG();
|
||||
$generator->useGd();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_generate_code_39_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorJPG();
|
||||
$generator->useGd();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_39, 1);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(224, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_use_different_height()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorJPG();
|
||||
$generator->useGd();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128, 2, 45);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(45, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_use_different_width_factor()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorJPG();
|
||||
$generator->useGd();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128, 5);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(505, $imageInfo[0]); // Image width
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
|
||||
// Copied as Imagick
|
||||
|
||||
public function test_jpg_barcode_generator_can_generate_code_128_barcode_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorJPG();
|
||||
$generator->useImagick();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_generate_code_39_barcode_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorJPG();
|
||||
$generator->useImagick();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_39, 1);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(224, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_use_different_height_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorJPG();
|
||||
$generator->useImagick();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128, 2, 45);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(45, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_use_different_width_factor_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorJPG();
|
||||
$generator->useImagick();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128, 5);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(505, $imageInfo[0]); // Image width
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class BarcodePngTest extends TestCase
|
||||
{
|
||||
public function test_png_barcode_generator_can_generate_code_128_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorPNG();
|
||||
$generator->useGd();
|
||||
$generated = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128);
|
||||
|
||||
$this->assertEquals('PNG', substr($generated, 1, 3));
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_generate_code_39_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorPNG();
|
||||
$generator->useGd();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_39, 1);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(224, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_use_different_height()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorPNG();
|
||||
$generator->useGd();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128, 2, 45);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(45, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_use_different_width_factor()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorPNG();
|
||||
$generator->useGd();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128, 5);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(505, $imageInfo[0]); // Image width
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
|
||||
// Copied as Imagick
|
||||
|
||||
public function test_png_barcode_generator_can_generate_code_128_barcode_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorPNG();
|
||||
$generator->useImagick();
|
||||
$generated = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128);
|
||||
|
||||
$this->assertEquals('PNG', substr($generated, 1, 3));
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_generate_code_39_barcode_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorPNG();
|
||||
$generator->useImagick();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_39, 1);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(224, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_use_different_height_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorPNG();
|
||||
$generator->useImagick();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128, 2, 45);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(45, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_use_different_width_factor_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorPNG();
|
||||
$generator->useImagick();
|
||||
$result = $generator->getBarcode('081231723897', $generator::TYPE_CODE_128, 5);
|
||||
|
||||
$imageInfo = getimagesizefromstring($result);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
$this->assertEquals(505, $imageInfo[0]); // Image width
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class BarcodeSvgTest extends TestCase
|
||||
{
|
||||
public function test_svg_barcode_generator_can_generate_ean_13_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$generated = $generator->getBarcode('081231723897', $generator::TYPE_EAN_13);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/081231723897-ean13.svg', $generated);
|
||||
}
|
||||
|
||||
public function test_svg_barcode_generator_can_generate_ean_13_barcode_with_fractional_width()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$generated = $generator->getBarcode('081231723897', $generator::TYPE_EAN_13, 0.25, 25.75);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/081231723897-ean13-fractional-width.svg', $generated);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Picqer\Barcode\Exceptions\BarcodeException;
|
||||
use Picqer\Barcode\Exceptions\InvalidCheckDigitException;
|
||||
use Picqer\Barcode\Types\TypeEan13;
|
||||
use Picqer\Barcode\Types\TypeInterface;
|
||||
use Picqer\Barcode\Types\TypeITF14;
|
||||
|
||||
class ChecksumBarcodeTest extends TestCase
|
||||
{
|
||||
private const VALID_BARCODES = [
|
||||
['type' => TypeEan13::class, 'barcodes' => [
|
||||
'081231723897' => '0812317238973',
|
||||
'004900000463' => '0049000004632',
|
||||
]],
|
||||
['type' => TypeITF14::class, 'barcodes' => [
|
||||
'0001234560001' => '00012345600012',
|
||||
'0540014128876' => '05400141288766',
|
||||
]],
|
||||
];
|
||||
private const INVALID_BARCODES = [
|
||||
['type' => TypeEan13::class, 'barcodes' => ['0812317238972', '0049000004633']],
|
||||
['type' => TypeITF14::class, 'barcodes' => ['00012345600016', '05400141288762']],
|
||||
];
|
||||
|
||||
public function testAllValidBarcodeTypes()
|
||||
{
|
||||
foreach (self::VALID_BARCODES as $barcodeTestSet) {
|
||||
$barcodeType = $this->getBarcodeType($barcodeTestSet['type']);
|
||||
|
||||
foreach ($barcodeTestSet['barcodes'] as $testBarcode => $validBarcode) {
|
||||
$this->assertEquals($validBarcode, $barcodeType->getBarcode($testBarcode)->getBarcode());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function testAllInvalidBarcodeTypes()
|
||||
{
|
||||
foreach (self::INVALID_BARCODES as $barcodeTestSet) {
|
||||
$barcodeType = $this->getBarcodeType($barcodeTestSet['type']);
|
||||
|
||||
foreach ($barcodeTestSet['barcodes'] as $invalidBarcode) {
|
||||
try {
|
||||
$barcodeType->getBarcode($invalidBarcode)->getBarcode();
|
||||
} catch (BarcodeException $exception) {
|
||||
$this->assertInstanceOf(InvalidCheckDigitException::class, $exception);
|
||||
continue;
|
||||
}
|
||||
|
||||
$this->assertTrue(false, sprintf('Exception was not thrown for barcode "%s".', $invalidBarcode));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private function getBarcodeType(string $typeClass): TypeInterface
|
||||
{
|
||||
return new $typeClass;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class DynamicHtmlRendererTest extends TestCase
|
||||
{
|
||||
public function test_dynamic_html_barcode_generator_can_generate_code_128_barcode()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\DynamicHtmlRenderer();
|
||||
$generated = $renderer->render($barcode);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/081231723897-dynamic-code128.html', $generated);
|
||||
}
|
||||
|
||||
public function test_dynamic_html_barcode_generator_can_generate_imb_barcode_to_test_heights()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeIntelligentMailBarcode())->getBarcode('12345678903');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\DynamicHtmlRenderer();
|
||||
$generated = $renderer->render($barcode);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/12345678903-dynamic-imb.html', $generated);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class GeneratorTest extends TestCase
|
||||
{
|
||||
public function test_throws_exception_if_empty_barcode_is_used_in_ean13()
|
||||
{
|
||||
$this->expectException(Picqer\Barcode\Exceptions\InvalidLengthException::class);
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$generator->getBarcode('', $generator::TYPE_EAN_13);
|
||||
}
|
||||
|
||||
public function test_throws_exception_if_empty_barcode_is_used_in_code128()
|
||||
{
|
||||
$this->expectException(Picqer\Barcode\Exceptions\InvalidLengthException::class);
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$generator->getBarcode('', $generator::TYPE_CODE_128);
|
||||
}
|
||||
|
||||
public function test_ean13_generator_throws_exception_if_invalid_chars_are_used()
|
||||
{
|
||||
$this->expectException(Picqer\Barcode\Exceptions\InvalidCharacterException::class);
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$generator->getBarcode('A123', $generator::TYPE_EAN_13);
|
||||
}
|
||||
|
||||
public function test_ean13_generator_accepting_13_chars()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$generated = $generator->getBarcode('0049000004632', $generator::TYPE_EAN_13);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/0049000004632-ean13.svg', $generated);
|
||||
}
|
||||
|
||||
public function test_ean13_generator_accepting_12_chars_and_generates_13th_check_digit()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$generated = $generator->getBarcode('004900000463', $generator::TYPE_EAN_13);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/0049000004632-ean13.svg', $generated);
|
||||
}
|
||||
|
||||
public function test_ean13_generator_accepting_11_chars_and_generates_13th_check_digit_and_adds_leading_zero()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$generated = $generator->getBarcode('04900000463', $generator::TYPE_EAN_13);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/0049000004632-ean13.svg', $generated);
|
||||
}
|
||||
|
||||
public function test_ean13_generator_throws_exception_when_wrong_check_digit_is_given()
|
||||
{
|
||||
$this->expectException(Picqer\Barcode\Exceptions\InvalidCheckDigitException::class);
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$generator->getBarcode('0049000004633', $generator::TYPE_EAN_13);
|
||||
}
|
||||
|
||||
public function test_generator_throws_unknown_type_exceptions()
|
||||
{
|
||||
$this->expectException(Picqer\Barcode\Exceptions\UnknownTypeException::class);
|
||||
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$generator->getBarcode('0049000004633', 'vladimir');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class HtmlRendererTest extends TestCase
|
||||
{
|
||||
public function test_html_barcode_generator_can_generate_code_128_barcode()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\HtmlRenderer();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 2);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/081231723897-code128.html', $generated);
|
||||
}
|
||||
|
||||
public function test_html_barcode_generator_can_generate_imb_barcode_to_test_heights()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeIntelligentMailBarcode())->getBarcode('12345678903');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\HtmlRenderer();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 2);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/12345678903-imb.html', $generated);
|
||||
}
|
||||
|
||||
public function test_html_barcode_generator_with_background()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\HtmlRenderer();
|
||||
$renderer->setBackgroundColor([255, 0, 0]);
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 2);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/081231723897-code128-red-background.html', $generated);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,152 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class JpgRendererTest extends TestCase
|
||||
{
|
||||
public function test_jpg_barcode_generator_can_generate_code_128_barcode()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\JpgRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 2);
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
|
||||
public function test_jpg_barcode_generator_can_generate_code_39_barcode()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode39())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\JpgRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth());
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(224, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_use_different_height()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\JpgRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 2, 45);
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(45, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_use_different_width_factor()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\JpgRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 5);
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(505, $imageInfo[0]); // Image width
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
|
||||
// Copied as Imagick
|
||||
|
||||
public function test_jpg_barcode_generator_can_generate_code_128_barcode_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\JpgRenderer();
|
||||
$renderer->useImagick();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 2);
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_generate_code_39_barcode_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode39())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\JpgRenderer();
|
||||
$renderer->useImagick();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth());
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(224, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_use_different_height_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\JpgRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 2, 45);
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(45, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_jpg_barcode_generator_can_use_different_width_factor_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\JpgRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 5);
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(505, $imageInfo[0]); // Image width
|
||||
$this->assertEquals('image/jpeg', $imageInfo['mime']);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class PharmacodeTest extends TestCase
|
||||
{
|
||||
public function test_validation_triggerd_when_generating_zero_code()
|
||||
{
|
||||
$pharmacode = new Picqer\Barcode\Types\TypePharmacodeTwoCode();
|
||||
|
||||
$this->expectException(Picqer\Barcode\Exceptions\InvalidLengthException::class);
|
||||
|
||||
$pharmacode->getBarcode('0');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,142 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class PngRendererTest extends TestCase
|
||||
{
|
||||
public function test_png_barcode_generator_can_generate_code_128_barcode()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\PngRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode);
|
||||
|
||||
$this->assertEquals('PNG', substr($generated, 1, 3));
|
||||
}
|
||||
|
||||
|
||||
public function test_png_barcode_generator_can_generate_code_39_barcode()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode39())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\PngRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth());
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(224, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_use_different_height()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\PngRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 2, 45);
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(45, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_use_different_width_factor()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\PngRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 5);
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(505, $imageInfo[0]); // Image width
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
|
||||
// Copied as Imagick
|
||||
|
||||
public function test_png_barcode_generator_can_generate_code_128_barcode_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\PngRenderer();
|
||||
$renderer->useImagick();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 2);
|
||||
|
||||
$this->assertEquals('PNG', substr($generated, 1, 3));
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_generate_code_39_barcode_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode39())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\PngRenderer();
|
||||
$renderer->useImagick();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth());
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(224, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(30, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_use_different_height_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\PngRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 2, 45);
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(202, $imageInfo[0]); // Image width
|
||||
$this->assertEquals(45, $imageInfo[1]); // Image height
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
|
||||
public function test_png_barcode_generator_can_use_different_width_factor_imagick()
|
||||
{
|
||||
if (! extension_loaded('imagick')) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$barcode = (new Picqer\Barcode\Types\TypeCode128())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\PngRenderer();
|
||||
$renderer->useGd();
|
||||
$generated = $renderer->render($barcode, $barcode->getWidth() * 5);
|
||||
|
||||
$imageInfo = getimagesizefromstring($generated);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($generated));
|
||||
$this->assertEquals(505, $imageInfo[0]); // Image width
|
||||
$this->assertEquals('image/png', $imageInfo['mime']);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class SvgRendererTest extends TestCase
|
||||
{
|
||||
public function test_svg_barcode_generator_can_generate_ean_13_barcode()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeEan13())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\SvgRenderer();
|
||||
$generated = $renderer->render($barcode, 190);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/081231723897-ean13.svg', $generated);
|
||||
}
|
||||
|
||||
public function test_svg_barcode_generator_can_generate_ean_13_barcode_with_fractional_width()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeEan13())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\SvgRenderer();
|
||||
$generated = $renderer->render($barcode, 23.75, 25.75);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/081231723897-ean13-fractional-width.svg', $generated);
|
||||
}
|
||||
|
||||
public function test_svg_barcode_generator_as_standalone()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeEan13())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\SvgRenderer();
|
||||
$renderer->setSvgType(\Picqer\Barcode\Renderers\SvgRenderer::TYPE_SVG_STANDALONE);
|
||||
$generated = $renderer->render($barcode);
|
||||
|
||||
$this->assertStringStartsWith('<?xml version="1.0"', $generated);
|
||||
$this->assertStringContainsString('<!DOCTYPE svg PUBLIC', $generated);
|
||||
}
|
||||
|
||||
public function test_svg_barcode_generator_as_inline()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeEan13())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\SvgRenderer();
|
||||
$renderer->setSvgType(\Picqer\Barcode\Renderers\SvgRenderer::TYPE_SVG_INLINE);
|
||||
$generated = $renderer->render($barcode);
|
||||
|
||||
$this->assertStringStartsWith('<svg width=', $generated);
|
||||
$this->assertStringNotContainsString('<?xml version="1.0"', $generated);
|
||||
$this->assertStringNotContainsString('<!DOCTYPE svg PUBLIC', $generated);
|
||||
}
|
||||
|
||||
public function test_svg_renderer_throws_exception_wrong_type()
|
||||
{
|
||||
$this->expectException(\Picqer\Barcode\Exceptions\InvalidOptionException::class);
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\SvgRenderer();
|
||||
$renderer->setSvgType('other');
|
||||
}
|
||||
|
||||
public function test_svg_barcode_generator_can_use_background_color()
|
||||
{
|
||||
$barcode = (new Picqer\Barcode\Types\TypeEan13())->getBarcode('081231723897');
|
||||
|
||||
$renderer = new Picqer\Barcode\Renderers\SvgRenderer();
|
||||
$renderer->setBackgroundColor([255, 0, 0]);
|
||||
$generated = $renderer->render($barcode, 190);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/081231723897-ean13-red-background.svg', $generated);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,261 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Picqer\Barcode\Renderers\SvgRenderer;
|
||||
use Picqer\Barcode\Types\TypeCode39;
|
||||
use Picqer\Barcode\Types\TypeCode39Checksum;
|
||||
use Picqer\Barcode\Types\TypeCode39Extended;
|
||||
|
||||
class TypesTest extends TestCase
|
||||
{
|
||||
public function test_generator_can_generate_code_39_barcode()
|
||||
{
|
||||
$barcode = (new TypeCode39())->getBarcode('1234567890ABC');
|
||||
$renderer = new SvgRenderer();
|
||||
$result = $renderer->render($barcode, $barcode->getWidth() * 2);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/TypeCode39-1234567890ABC.svg', $result);
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_code_39_checksum_barcode()
|
||||
{
|
||||
$barcode = (new TypeCode39Checksum())->getBarcode('1234567890ABC');
|
||||
$renderer = new SvgRenderer();
|
||||
$result = $renderer->render($barcode, $barcode->getWidth() * 2);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_code_39_extended_barcode()
|
||||
{
|
||||
$barcode = (new TypeCode39Extended())->getBarcode('1234567890abcABC');
|
||||
$renderer = new SvgRenderer();
|
||||
$result = $renderer->render($barcode, $barcode->getWidth() * 2);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/TypeCode39Extended-1234567890abcABC.svg', $result);
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_code_39_extended_checksum_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890abcABC', $generator::TYPE_CODE_39E_CHECKSUM);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_code_93_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890abcABC', $generator::TYPE_CODE_93);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_standard_2_5_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890', $generator::TYPE_STANDARD_2_5);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_standard_2_5_checksum_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890', $generator::TYPE_STANDARD_2_5_CHECKSUM);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_interleaved_2_5_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890', $generator::TYPE_INTERLEAVED_2_5);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_interleaved_2_5_checksum_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890', $generator::TYPE_INTERLEAVED_2_5_CHECKSUM);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_code_128_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890abcABC-283*33', $generator::TYPE_CODE_128);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/TypeCode128-1234567890abcABC-283-33.svg', $result);
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_code_128_a_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890', $generator::TYPE_CODE_128_A);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/TypeCode128A-1234567890.svg', $result);
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_code_128_b_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890abcABC-283*33', $generator::TYPE_CODE_128_B);
|
||||
|
||||
$this->assertStringEqualsFile('tests/verified-files/TypeCode128B-1234567890abcABC-283-33.svg', $result);
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_ean_2_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('22', $generator::TYPE_EAN_2);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_ean_5_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890abcABC-283*33', $generator::TYPE_EAN_5);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_ean_8_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234568', $generator::TYPE_EAN_8);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_ean_13_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890', $generator::TYPE_EAN_13);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_upc_a_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_UPC_A);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_upc_e_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_UPC_E);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_msi_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_MSI);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_msi_checksum_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_MSI_CHECKSUM);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_postnet_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_POSTNET);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_planet_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_PLANET);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_rms4cc_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_RMS4CC);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_kix_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_KIX);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_imb_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_IMB);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_codabar_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_CODABAR);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_code_11_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_CODE_11);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_pharma_code_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_PHARMA_CODE);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_pharma_code_2_tracks_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('123456789', $generator::TYPE_PHARMA_CODE_TWO_TRACKS);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_telepen_alpha_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890ASCD', $generator::TYPE_TELEPEN_ALPHA);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
|
||||
public function test_generator_can_generate_telepen_numeric_barcode()
|
||||
{
|
||||
$generator = new Picqer\Barcode\BarcodeGeneratorSVG();
|
||||
$result = $generator->getBarcode('1234567890', $generator::TYPE_TELEPEN_NUMERIC);
|
||||
|
||||
$this->assertGreaterThan(100, strlen($result));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Picqer\Barcode\Helpers\StringHelpers;
|
||||
|
||||
/*
|
||||
* Test all supported barcodes types, with as much different but supported input strings.
|
||||
* Verified files can be built with generate-verified-files.php file.
|
||||
* Only run that file if you added new types or new strings to test.
|
||||
*
|
||||
* We use SVG because that output is vector and should be the same on every host system.
|
||||
*/
|
||||
|
||||
class VerifiedBarcodeTest extends TestCase
|
||||
{
|
||||
public static array $supportedBarcodes = [
|
||||
['type' => \Picqer\Barcode\Types\TypeCode39::class, 'barcodes' => ['1234567890ABC']],
|
||||
['type' => \Picqer\Barcode\Types\TypeCode39Checksum::class, 'barcodes' => ['1234567890ABC']],
|
||||
['type' => \Picqer\Barcode\Types\TypeCode39Extended::class, 'barcodes' => ['1234567890abcABC']],
|
||||
['type' => \Picqer\Barcode\Types\TypeCode39ExtendedChecksum::class, 'barcodes' => ['1234567890abcABC']],
|
||||
['type' => \Picqer\Barcode\Types\TypeCode93::class, 'barcodes' => ['1234567890abcABC']],
|
||||
['type' => \Picqer\Barcode\Types\TypeStandard2of5::class, 'barcodes' => ['1234567890']],
|
||||
['type' => \Picqer\Barcode\Types\TypeStandard2of5Checksum::class, 'barcodes' => ['1234567890']],
|
||||
['type' => \Picqer\Barcode\Types\TypeInterleaved25::class, 'barcodes' => ['1234567890']],
|
||||
['type' => \Picqer\Barcode\Types\TypeInterleaved25Checksum::class, 'barcodes' => ['1234567890']],
|
||||
['type' => \Picqer\Barcode\Types\TypeEan13::class, 'barcodes' => ['081231723897', '0049000004632', '004900000463']],
|
||||
['type' => \Picqer\Barcode\Types\TypeITF14::class, 'barcodes' => ['00012345600012', '05400141288766']],
|
||||
['type' => \Picqer\Barcode\Types\TypeCode128::class, 'barcodes' => ['081231723897', '1234567890abcABC-283*33']],
|
||||
['type' => \Picqer\Barcode\Types\TypeCode128A::class, 'barcodes' => ['1234567890']],
|
||||
['type' => \Picqer\Barcode\Types\TypeCode128B::class, 'barcodes' => ['081231723897', '1234567890abcABC-283*33']],
|
||||
['type' => \Picqer\Barcode\Types\TypeUpcExtension2::class, 'barcodes' => ['22']],
|
||||
['type' => \Picqer\Barcode\Types\TypeUpcExtension5::class, 'barcodes' => ['1234567890abcABC-283*33']],
|
||||
['type' => \Picqer\Barcode\Types\TypeEan8::class, 'barcodes' => ['1234568']],
|
||||
['type' => \Picqer\Barcode\Types\TypeUpcA::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypeUpcE::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypeMsi::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypeMsiChecksum::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypePostnet::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypePlanet::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypeRms4cc::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypeKix::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypeIntelligentMailBarcode::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypeCodabar::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypeCode11::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypePharmacode::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypePharmacodeTwoCode::class, 'barcodes' => ['123456789']],
|
||||
['type' => \Picqer\Barcode\Types\TypeTelepen::class, 'barcodes' => ['1234567890ASCD']],
|
||||
['type' => \Picqer\Barcode\Types\TypeTelepenNumeric::class, 'barcodes' => ['1234567890']]
|
||||
];
|
||||
|
||||
public function testAllSupportedBarcodeTypes()
|
||||
{
|
||||
$renderer = new Picqer\Barcode\Renderers\SvgRenderer();
|
||||
|
||||
foreach ($this::$supportedBarcodes as $barcodeTestSet) {
|
||||
foreach ($barcodeTestSet['barcodes'] as $barcodeText) {
|
||||
$barcode = (new $barcodeTestSet['type']())->getBarcode($barcodeText);
|
||||
$result = $renderer->render($barcode, $barcode->getWidth() * 2);
|
||||
|
||||
$this->assertStringEqualsFile(
|
||||
sprintf('tests/verified-files/%s.svg', StringHelpers::getSafeFilenameFrom($barcodeTestSet['type'] . '-' . $barcodeText)),
|
||||
$result,
|
||||
sprintf('%s x %s dynamic test failed', $barcodeTestSet['type'], $barcodeText)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="190" height="30" viewBox="0 0 190 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>0049000004632</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="4" height="30" />
|
||||
<rect x="18" y="0" width="2" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="30" y="0" width="4" height="30" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="4" height="30" />
|
||||
<rect x="54" y="0" width="4" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="4" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="82" y="0" width="4" height="30" />
|
||||
<rect x="88" y="0" width="2" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="6" height="30" />
|
||||
<rect x="110" y="0" width="2" height="30" />
|
||||
<rect x="114" y="0" width="6" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="6" height="30" />
|
||||
<rect x="142" y="0" width="2" height="30" />
|
||||
<rect x="146" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="166" y="0" width="2" height="30" />
|
||||
<rect x="170" y="0" width="4" height="30" />
|
||||
<rect x="176" y="0" width="4" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,30 @@
|
||||
<div style="font-size:0;position:relative;width:202px;height:30px;background-color:rgb(255,0,0);">
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:0px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:6px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:6px;height:30px;position:absolute;left:12px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:22px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:30px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:38px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:44px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:48px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:6px;height:30px;position:absolute;left:56px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:66px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:72px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:82px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:88px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:94px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:106px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:110px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:118px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:128px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:8px;height:30px;position:absolute;left:132px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:142px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:146px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:6px;height:30px;position:absolute;left:154px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:162px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:166px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:176px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:6px;height:30px;position:absolute;left:186px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:194px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:198px;top:0"> </div>
|
||||
</div>
|
||||
@@ -0,0 +1,30 @@
|
||||
<div style="font-size:0;position:relative;width:202px;height:30px;">
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:0px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:6px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:6px;height:30px;position:absolute;left:12px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:22px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:30px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:38px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:44px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:48px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:6px;height:30px;position:absolute;left:56px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:66px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:72px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:82px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:88px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:94px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:106px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:110px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:118px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:128px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:8px;height:30px;position:absolute;left:132px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:142px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:146px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:6px;height:30px;position:absolute;left:154px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:162px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:166px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:176px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:6px;height:30px;position:absolute;left:186px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:194px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:4px;height:30px;position:absolute;left:198px;top:0"> </div>
|
||||
</div>
|
||||
@@ -0,0 +1,30 @@
|
||||
<div style="font-size:0;position:relative;width:100%;height:100%">
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:0%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:2.970297%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2.970297%;height:100%;position:absolute;left:5.940594%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:10.891089%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:14.851485%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:18.811881%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:21.782178%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:23.762376%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2.970297%;height:100%;position:absolute;left:27.722772%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:32.673267%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:35.643564%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:40.594059%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:43.564356%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:46.534653%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:52.475248%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:54.455446%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:58.415842%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:63.366337%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:3.960396%;height:100%;position:absolute;left:65.346535%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:70.29703%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:72.277228%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2.970297%;height:100%;position:absolute;left:76.237624%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:80.19802%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:82.178218%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:87.128713%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2.970297%;height:100%;position:absolute;left:92.079208%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.990099%;height:100%;position:absolute;left:96.039604%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:1.980198%;height:100%;position:absolute;left:98.019802%;top:0"> </div>
|
||||
</div>
|
||||
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="23.75" height="25.75" viewBox="0 0 23.75 25.75" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>0812317238973</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="0.25" height="25.75" />
|
||||
<rect x="0.5" y="0" width="0.25" height="25.75" />
|
||||
<rect x="1" y="0" width="0.5" height="25.75" />
|
||||
<rect x="1.75" y="0" width="0.75" height="25.75" />
|
||||
<rect x="3" y="0" width="0.5" height="25.75" />
|
||||
<rect x="4" y="0" width="0.25" height="25.75" />
|
||||
<rect x="4.75" y="0" width="0.25" height="25.75" />
|
||||
<rect x="5.5" y="0" width="0.5" height="25.75" />
|
||||
<rect x="6.25" y="0" width="1" height="25.75" />
|
||||
<rect x="7.5" y="0" width="0.25" height="25.75" />
|
||||
<rect x="8.25" y="0" width="0.5" height="25.75" />
|
||||
<rect x="9.25" y="0" width="0.25" height="25.75" />
|
||||
<rect x="9.75" y="0" width="0.75" height="25.75" />
|
||||
<rect x="10.75" y="0" width="0.5" height="25.75" />
|
||||
<rect x="11.5" y="0" width="0.25" height="25.75" />
|
||||
<rect x="12" y="0" width="0.25" height="25.75" />
|
||||
<rect x="12.5" y="0" width="0.5" height="25.75" />
|
||||
<rect x="13.25" y="0" width="0.5" height="25.75" />
|
||||
<rect x="14.25" y="0" width="0.25" height="25.75" />
|
||||
<rect x="15.5" y="0" width="0.25" height="25.75" />
|
||||
<rect x="16" y="0" width="0.25" height="25.75" />
|
||||
<rect x="16.75" y="0" width="0.25" height="25.75" />
|
||||
<rect x="17.75" y="0" width="0.75" height="25.75" />
|
||||
<rect x="18.75" y="0" width="0.25" height="25.75" />
|
||||
<rect x="19.5" y="0" width="0.25" height="25.75" />
|
||||
<rect x="20.5" y="0" width="0.25" height="25.75" />
|
||||
<rect x="21.25" y="0" width="0.25" height="25.75" />
|
||||
<rect x="22.5" y="0" width="0.25" height="25.75" />
|
||||
<rect x="23" y="0" width="0.25" height="25.75" />
|
||||
<rect x="23.5" y="0" width="0.25" height="25.75" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="190" height="30" viewBox="0 0 190 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>0812317238973</desc>
|
||||
<rect id="background" width="100%" height="100%" fill="rgb(255,0,0)"/>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="4" height="30" />
|
||||
<rect x="14" y="0" width="6" height="30" />
|
||||
<rect x="24" y="0" width="4" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="38" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="4" height="30" />
|
||||
<rect x="50" y="0" width="8" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="66" y="0" width="4" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="78" y="0" width="6" height="30" />
|
||||
<rect x="86" y="0" width="4" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="4" height="30" />
|
||||
<rect x="106" y="0" width="4" height="30" />
|
||||
<rect x="114" y="0" width="2" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="134" y="0" width="2" height="30" />
|
||||
<rect x="142" y="0" width="6" height="30" />
|
||||
<rect x="150" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="164" y="0" width="2" height="30" />
|
||||
<rect x="170" y="0" width="2" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="190" height="30" viewBox="0 0 190 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>0812317238973</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="4" height="30" />
|
||||
<rect x="14" y="0" width="6" height="30" />
|
||||
<rect x="24" y="0" width="4" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="38" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="4" height="30" />
|
||||
<rect x="50" y="0" width="8" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="66" y="0" width="4" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="78" y="0" width="6" height="30" />
|
||||
<rect x="86" y="0" width="4" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="4" height="30" />
|
||||
<rect x="106" y="0" width="4" height="30" />
|
||||
<rect x="114" y="0" width="2" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="134" y="0" width="2" height="30" />
|
||||
<rect x="142" y="0" width="6" height="30" />
|
||||
<rect x="150" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="164" y="0" width="2" height="30" />
|
||||
<rect x="170" y="0" width="2" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,67 @@
|
||||
<div style="font-size:0;position:relative;width:100%;height:100%">
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:0%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:1.550388%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:3.100775%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:4.651163%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:6.20155%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:7.751938%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:9.302326%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:10.852713%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:12.403101%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:13.953488%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:15.503876%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:17.054264%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:18.604651%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:20.155039%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:21.705426%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:23.255814%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:24.806202%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:26.356589%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:27.906977%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:29.457364%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:31.007752%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:32.55814%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:34.108527%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:35.658915%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:37.209302%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:38.75969%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:40.310078%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:41.860465%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:43.410853%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:44.96124%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:46.511628%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:48.062016%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:49.612403%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:51.162791%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:52.713178%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:54.263566%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:55.813953%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:57.364341%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:58.914729%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:60.465116%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:62.015504%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:63.565891%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:65.116279%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:66.666667%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:68.217054%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:69.767442%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:71.317829%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:72.868217%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:74.418605%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:75.968992%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:77.51938%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:79.069767%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:80.620155%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:82.170543%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:83.72093%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:85.271318%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:33.333%;position:absolute;left:86.821705%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:88.372093%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:89.922481%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:91.472868%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:93.023256%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:94.573643%;top:33.333%"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:96.124031%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:100%;position:absolute;left:97.674419%;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:0.775194%;height:66.667%;position:absolute;left:99.224806%;top:33.333%"> </div>
|
||||
</div>
|
||||
@@ -0,0 +1,67 @@
|
||||
<div style="font-size:0;position:relative;width:258px;height:30px;">
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:0px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:4px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:8px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:12px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:16px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:20px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:24px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:28px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:32px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:36px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:40px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:44px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:48px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:52px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:56px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:60px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:64px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:68px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:72px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:76px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:80px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:84px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:88px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:92px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:96px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:100px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:104px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:108px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:112px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:116px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:120px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:124px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:128px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:132px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:136px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:140px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:144px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:148px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:152px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:156px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:160px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:164px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:168px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:172px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:176px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:180px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:184px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:188px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:192px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:196px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:200px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:204px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:208px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:212px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:216px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:220px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:10px;position:absolute;left:224px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:228px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:232px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:236px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:240px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:244px;top:10px"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:248px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:30px;position:absolute;left:252px;top:0"> </div>
|
||||
<div style="background-color:rgb(0,0,0);width:2px;height:20px;position:absolute;left:256px;top:10px"> </div>
|
||||
</div>
|
||||
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="224" height="30" viewBox="0 0 224 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>123456789</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="4" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="18" y="0" width="2" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="26" y="0" width="2" height="30" />
|
||||
<rect x="30" y="0" width="4" height="30" />
|
||||
<rect x="38" y="0" width="2" height="30" />
|
||||
<rect x="42" y="0" width="2" height="30" />
|
||||
<rect x="46" y="0" width="2" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="56" y="0" width="4" height="30" />
|
||||
<rect x="62" y="0" width="4" height="30" />
|
||||
<rect x="70" y="0" width="2" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="78" y="0" width="2" height="30" />
|
||||
<rect x="82" y="0" width="2" height="30" />
|
||||
<rect x="86" y="0" width="4" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="98" y="0" width="2" height="30" />
|
||||
<rect x="102" y="0" width="4" height="30" />
|
||||
<rect x="108" y="0" width="2" height="30" />
|
||||
<rect x="112" y="0" width="2" height="30" />
|
||||
<rect x="118" y="0" width="2" height="30" />
|
||||
<rect x="122" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="136" y="0" width="4" height="30" />
|
||||
<rect x="142" y="0" width="2" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="4" height="30" />
|
||||
<rect x="158" y="0" width="2" height="30" />
|
||||
<rect x="162" y="0" width="2" height="30" />
|
||||
<rect x="168" y="0" width="4" height="30" />
|
||||
<rect x="174" y="0" width="2" height="30" />
|
||||
<rect x="178" y="0" width="2" height="30" />
|
||||
<rect x="182" y="0" width="4" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="194" y="0" width="2" height="30" />
|
||||
<rect x="198" y="0" width="2" height="30" />
|
||||
<rect x="202" y="0" width="2" height="30" />
|
||||
<rect x="206" y="0" width="4" height="30" />
|
||||
<rect x="214" y="0" width="2" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="188" height="30" viewBox="0 0 188 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>123456789</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="4" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="16" y="0" width="4" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="26" y="0" width="4" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="38" y="0" width="2" height="30" />
|
||||
<rect x="42" y="0" width="4" height="30" />
|
||||
<rect x="48" y="0" width="4" height="30" />
|
||||
<rect x="56" y="0" width="2" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="4" height="30" />
|
||||
<rect x="74" y="0" width="4" height="30" />
|
||||
<rect x="80" y="0" width="4" height="30" />
|
||||
<rect x="86" y="0" width="4" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="102" y="0" width="4" height="30" />
|
||||
<rect x="108" y="0" width="2" height="30" />
|
||||
<rect x="112" y="0" width="2" height="30" />
|
||||
<rect x="116" y="0" width="2" height="30" />
|
||||
<rect x="122" y="0" width="4" height="30" />
|
||||
<rect x="128" y="0" width="4" height="30" />
|
||||
<rect x="134" y="0" width="2" height="30" />
|
||||
<rect x="140" y="0" width="2" height="30" />
|
||||
<rect x="144" y="0" width="4" height="30" />
|
||||
<rect x="150" y="0" width="2" height="30" />
|
||||
<rect x="154" y="0" width="2" height="30" />
|
||||
<rect x="158" y="0" width="2" height="30" />
|
||||
<rect x="162" y="0" width="2" height="30" />
|
||||
<rect x="166" y="0" width="4" height="30" />
|
||||
<rect x="172" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="4" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="202" height="30" viewBox="0 0 202 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>081231723897</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="4" height="30" />
|
||||
<rect x="6" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="6" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="30" y="0" width="4" height="30" />
|
||||
<rect x="38" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="2" height="30" />
|
||||
<rect x="48" y="0" width="4" height="30" />
|
||||
<rect x="56" y="0" width="6" height="30" />
|
||||
<rect x="66" y="0" width="4" height="30" />
|
||||
<rect x="72" y="0" width="4" height="30" />
|
||||
<rect x="82" y="0" width="4" height="30" />
|
||||
<rect x="88" y="0" width="2" height="30" />
|
||||
<rect x="94" y="0" width="4" height="30" />
|
||||
<rect x="106" y="0" width="2" height="30" />
|
||||
<rect x="110" y="0" width="2" height="30" />
|
||||
<rect x="118" y="0" width="4" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="8" height="30" />
|
||||
<rect x="142" y="0" width="2" height="30" />
|
||||
<rect x="146" y="0" width="2" height="30" />
|
||||
<rect x="154" y="0" width="6" height="30" />
|
||||
<rect x="162" y="0" width="2" height="30" />
|
||||
<rect x="166" y="0" width="4" height="30" />
|
||||
<rect x="176" y="0" width="4" height="30" />
|
||||
<rect x="186" y="0" width="6" height="30" />
|
||||
<rect x="194" y="0" width="2" height="30" />
|
||||
<rect x="198" y="0" width="4" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="488" height="30" viewBox="0 0 488 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>1234567890abcABC-283*33</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="4" height="30" />
|
||||
<rect x="6" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="6" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="26" y="0" width="4" height="30" />
|
||||
<rect x="34" y="0" width="6" height="30" />
|
||||
<rect x="44" y="0" width="2" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="56" y="0" width="4" height="30" />
|
||||
<rect x="66" y="0" width="6" height="30" />
|
||||
<rect x="78" y="0" width="2" height="30" />
|
||||
<rect x="82" y="0" width="4" height="30" />
|
||||
<rect x="88" y="0" width="4" height="30" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
<rect x="104" y="0" width="2" height="30" />
|
||||
<rect x="110" y="0" width="4" height="30" />
|
||||
<rect x="116" y="0" width="8" height="30" />
|
||||
<rect x="126" y="0" width="4" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="136" y="0" width="8" height="30" />
|
||||
<rect x="146" y="0" width="6" height="30" />
|
||||
<rect x="154" y="0" width="2" height="30" />
|
||||
<rect x="160" y="0" width="2" height="30" />
|
||||
<rect x="164" y="0" width="4" height="30" />
|
||||
<rect x="176" y="0" width="2" height="30" />
|
||||
<rect x="182" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="4" height="30" />
|
||||
<rect x="198" y="0" width="2" height="30" />
|
||||
<rect x="208" y="0" width="2" height="30" />
|
||||
<rect x="212" y="0" width="4" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
<rect x="224" y="0" width="2" height="30" />
|
||||
<rect x="232" y="0" width="4" height="30" />
|
||||
<rect x="242" y="0" width="2" height="30" />
|
||||
<rect x="250" y="0" width="2" height="30" />
|
||||
<rect x="254" y="0" width="4" height="30" />
|
||||
<rect x="264" y="0" width="2" height="30" />
|
||||
<rect x="272" y="0" width="2" height="30" />
|
||||
<rect x="280" y="0" width="4" height="30" />
|
||||
<rect x="286" y="0" width="2" height="30" />
|
||||
<rect x="292" y="0" width="4" height="30" />
|
||||
<rect x="298" y="0" width="6" height="30" />
|
||||
<rect x="308" y="0" width="4" height="30" />
|
||||
<rect x="316" y="0" width="6" height="30" />
|
||||
<rect x="326" y="0" width="2" height="30" />
|
||||
<rect x="330" y="0" width="6" height="30" />
|
||||
<rect x="338" y="0" width="2" height="30" />
|
||||
<rect x="344" y="0" width="4" height="30" />
|
||||
<rect x="352" y="0" width="4" height="30" />
|
||||
<rect x="360" y="0" width="2" height="30" />
|
||||
<rect x="364" y="0" width="6" height="30" />
|
||||
<rect x="374" y="0" width="4" height="30" />
|
||||
<rect x="382" y="0" width="2" height="30" />
|
||||
<rect x="390" y="0" width="2" height="30" />
|
||||
<rect x="396" y="0" width="4" height="30" />
|
||||
<rect x="404" y="0" width="2" height="30" />
|
||||
<rect x="408" y="0" width="6" height="30" />
|
||||
<rect x="418" y="0" width="4" height="30" />
|
||||
<rect x="426" y="0" width="2" height="30" />
|
||||
<rect x="430" y="0" width="6" height="30" />
|
||||
<rect x="440" y="0" width="2" height="30" />
|
||||
<rect x="444" y="0" width="8" height="30" />
|
||||
<rect x="454" y="0" width="6" height="30" />
|
||||
<rect x="462" y="0" width="4" height="30" />
|
||||
<rect x="472" y="0" width="6" height="30" />
|
||||
<rect x="480" y="0" width="2" height="30" />
|
||||
<rect x="484" y="0" width="4" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="290" height="30" viewBox="0 0 290 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>1234567890</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="4" height="30" />
|
||||
<rect x="6" y="0" width="2" height="30" />
|
||||
<rect x="16" y="0" width="2" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="28" y="0" width="6" height="30" />
|
||||
<rect x="38" y="0" width="4" height="30" />
|
||||
<rect x="44" y="0" width="4" height="30" />
|
||||
<rect x="52" y="0" width="6" height="30" />
|
||||
<rect x="62" y="0" width="2" height="30" />
|
||||
<rect x="66" y="0" width="4" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="78" y="0" width="6" height="30" />
|
||||
<rect x="88" y="0" width="4" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="102" y="0" width="6" height="30" />
|
||||
<rect x="110" y="0" width="4" height="30" />
|
||||
<rect x="116" y="0" width="6" height="30" />
|
||||
<rect x="126" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="4" height="30" />
|
||||
<rect x="140" y="0" width="6" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="154" y="0" width="6" height="30" />
|
||||
<rect x="162" y="0" width="4" height="30" />
|
||||
<rect x="168" y="0" width="6" height="30" />
|
||||
<rect x="176" y="0" width="6" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="190" y="0" width="4" height="30" />
|
||||
<rect x="198" y="0" width="6" height="30" />
|
||||
<rect x="208" y="0" width="2" height="30" />
|
||||
<rect x="212" y="0" width="4" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
<rect x="226" y="0" width="6" height="30" />
|
||||
<rect x="234" y="0" width="4" height="30" />
|
||||
<rect x="242" y="0" width="4" height="30" />
|
||||
<rect x="252" y="0" width="4" height="30" />
|
||||
<rect x="258" y="0" width="4" height="30" />
|
||||
<rect x="264" y="0" width="4" height="30" />
|
||||
<rect x="274" y="0" width="6" height="30" />
|
||||
<rect x="282" y="0" width="2" height="30" />
|
||||
<rect x="286" y="0" width="4" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="334" height="30" viewBox="0 0 334 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>081231723897</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="4" height="30" />
|
||||
<rect x="6" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="28" y="0" width="6" height="30" />
|
||||
<rect x="36" y="0" width="4" height="30" />
|
||||
<rect x="44" y="0" width="6" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="58" y="0" width="4" height="30" />
|
||||
<rect x="66" y="0" width="2" height="30" />
|
||||
<rect x="72" y="0" width="6" height="30" />
|
||||
<rect x="82" y="0" width="4" height="30" />
|
||||
<rect x="88" y="0" width="4" height="30" />
|
||||
<rect x="96" y="0" width="6" height="30" />
|
||||
<rect x="106" y="0" width="2" height="30" />
|
||||
<rect x="110" y="0" width="4" height="30" />
|
||||
<rect x="118" y="0" width="2" height="30" />
|
||||
<rect x="122" y="0" width="6" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="138" y="0" width="6" height="30" />
|
||||
<rect x="148" y="0" width="4" height="30" />
|
||||
<rect x="154" y="0" width="6" height="30" />
|
||||
<rect x="162" y="0" width="4" height="30" />
|
||||
<rect x="168" y="0" width="6" height="30" />
|
||||
<rect x="176" y="0" width="4" height="30" />
|
||||
<rect x="184" y="0" width="6" height="30" />
|
||||
<rect x="194" y="0" width="2" height="30" />
|
||||
<rect x="198" y="0" width="4" height="30" />
|
||||
<rect x="206" y="0" width="2" height="30" />
|
||||
<rect x="210" y="0" width="6" height="30" />
|
||||
<rect x="220" y="0" width="6" height="30" />
|
||||
<rect x="228" y="0" width="2" height="30" />
|
||||
<rect x="234" y="0" width="4" height="30" />
|
||||
<rect x="242" y="0" width="6" height="30" />
|
||||
<rect x="252" y="0" width="2" height="30" />
|
||||
<rect x="256" y="0" width="4" height="30" />
|
||||
<rect x="264" y="0" width="6" height="30" />
|
||||
<rect x="272" y="0" width="4" height="30" />
|
||||
<rect x="278" y="0" width="6" height="30" />
|
||||
<rect x="286" y="0" width="2" height="30" />
|
||||
<rect x="292" y="0" width="2" height="30" />
|
||||
<rect x="300" y="0" width="4" height="30" />
|
||||
<rect x="308" y="0" width="4" height="30" />
|
||||
<rect x="318" y="0" width="6" height="30" />
|
||||
<rect x="326" y="0" width="2" height="30" />
|
||||
<rect x="330" y="0" width="4" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@@ -0,0 +1,86 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="576" height="30" viewBox="0 0 576 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>1234567890abcABC-283*33</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="4" height="30" />
|
||||
<rect x="6" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="28" y="0" width="6" height="30" />
|
||||
<rect x="38" y="0" width="4" height="30" />
|
||||
<rect x="44" y="0" width="4" height="30" />
|
||||
<rect x="52" y="0" width="6" height="30" />
|
||||
<rect x="62" y="0" width="2" height="30" />
|
||||
<rect x="66" y="0" width="4" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="78" y="0" width="6" height="30" />
|
||||
<rect x="88" y="0" width="4" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="102" y="0" width="6" height="30" />
|
||||
<rect x="110" y="0" width="4" height="30" />
|
||||
<rect x="116" y="0" width="6" height="30" />
|
||||
<rect x="126" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="4" height="30" />
|
||||
<rect x="140" y="0" width="6" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="154" y="0" width="6" height="30" />
|
||||
<rect x="162" y="0" width="4" height="30" />
|
||||
<rect x="168" y="0" width="6" height="30" />
|
||||
<rect x="176" y="0" width="6" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="190" y="0" width="4" height="30" />
|
||||
<rect x="198" y="0" width="6" height="30" />
|
||||
<rect x="208" y="0" width="2" height="30" />
|
||||
<rect x="212" y="0" width="4" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
<rect x="226" y="0" width="6" height="30" />
|
||||
<rect x="234" y="0" width="4" height="30" />
|
||||
<rect x="242" y="0" width="2" height="30" />
|
||||
<rect x="248" y="0" width="2" height="30" />
|
||||
<rect x="252" y="0" width="4" height="30" />
|
||||
<rect x="264" y="0" width="2" height="30" />
|
||||
<rect x="270" y="0" width="2" height="30" />
|
||||
<rect x="280" y="0" width="4" height="30" />
|
||||
<rect x="286" y="0" width="2" height="30" />
|
||||
<rect x="296" y="0" width="2" height="30" />
|
||||
<rect x="300" y="0" width="4" height="30" />
|
||||
<rect x="308" y="0" width="2" height="30" />
|
||||
<rect x="312" y="0" width="2" height="30" />
|
||||
<rect x="320" y="0" width="4" height="30" />
|
||||
<rect x="330" y="0" width="2" height="30" />
|
||||
<rect x="338" y="0" width="2" height="30" />
|
||||
<rect x="342" y="0" width="4" height="30" />
|
||||
<rect x="352" y="0" width="2" height="30" />
|
||||
<rect x="360" y="0" width="2" height="30" />
|
||||
<rect x="368" y="0" width="4" height="30" />
|
||||
<rect x="374" y="0" width="2" height="30" />
|
||||
<rect x="380" y="0" width="4" height="30" />
|
||||
<rect x="386" y="0" width="6" height="30" />
|
||||
<rect x="396" y="0" width="4" height="30" />
|
||||
<rect x="404" y="0" width="6" height="30" />
|
||||
<rect x="414" y="0" width="2" height="30" />
|
||||
<rect x="418" y="0" width="6" height="30" />
|
||||
<rect x="426" y="0" width="2" height="30" />
|
||||
<rect x="432" y="0" width="4" height="30" />
|
||||
<rect x="440" y="0" width="4" height="30" />
|
||||
<rect x="448" y="0" width="2" height="30" />
|
||||
<rect x="452" y="0" width="6" height="30" />
|
||||
<rect x="462" y="0" width="4" height="30" />
|
||||
<rect x="470" y="0" width="2" height="30" />
|
||||
<rect x="478" y="0" width="2" height="30" />
|
||||
<rect x="484" y="0" width="4" height="30" />
|
||||
<rect x="492" y="0" width="2" height="30" />
|
||||
<rect x="496" y="0" width="6" height="30" />
|
||||
<rect x="506" y="0" width="4" height="30" />
|
||||
<rect x="514" y="0" width="2" height="30" />
|
||||
<rect x="518" y="0" width="6" height="30" />
|
||||
<rect x="528" y="0" width="2" height="30" />
|
||||
<rect x="534" y="0" width="2" height="30" />
|
||||
<rect x="540" y="0" width="4" height="30" />
|
||||
<rect x="550" y="0" width="4" height="30" />
|
||||
<rect x="560" y="0" width="6" height="30" />
|
||||
<rect x="568" y="0" width="2" height="30" />
|
||||
<rect x="572" y="0" width="4" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.9 KiB |
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="480" height="30" viewBox="0 0 480 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>*1234567890ABC*</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="6" height="30" />
|
||||
<rect x="20" y="0" width="6" height="30" />
|
||||
<rect x="28" y="0" width="2" height="30" />
|
||||
<rect x="32" y="0" width="6" height="30" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="48" y="0" width="2" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="56" y="0" width="6" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="6" height="30" />
|
||||
<rect x="80" y="0" width="2" height="30" />
|
||||
<rect x="84" y="0" width="2" height="30" />
|
||||
<rect x="88" y="0" width="6" height="30" />
|
||||
<rect x="96" y="0" width="6" height="30" />
|
||||
<rect x="104" y="0" width="6" height="30" />
|
||||
<rect x="116" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="2" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="140" y="0" width="6" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="6" height="30" />
|
||||
<rect x="160" y="0" width="6" height="30" />
|
||||
<rect x="168" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="6" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="196" y="0" width="6" height="30" />
|
||||
<rect x="208" y="0" width="6" height="30" />
|
||||
<rect x="216" y="0" width="2" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
<rect x="224" y="0" width="2" height="30" />
|
||||
<rect x="228" y="0" width="2" height="30" />
|
||||
<rect x="236" y="0" width="2" height="30" />
|
||||
<rect x="240" y="0" width="6" height="30" />
|
||||
<rect x="248" y="0" width="6" height="30" />
|
||||
<rect x="256" y="0" width="6" height="30" />
|
||||
<rect x="264" y="0" width="2" height="30" />
|
||||
<rect x="272" y="0" width="2" height="30" />
|
||||
<rect x="276" y="0" width="6" height="30" />
|
||||
<rect x="284" y="0" width="2" height="30" />
|
||||
<rect x="288" y="0" width="2" height="30" />
|
||||
<rect x="292" y="0" width="6" height="30" />
|
||||
<rect x="304" y="0" width="2" height="30" />
|
||||
<rect x="308" y="0" width="6" height="30" />
|
||||
<rect x="316" y="0" width="2" height="30" />
|
||||
<rect x="320" y="0" width="2" height="30" />
|
||||
<rect x="324" y="0" width="2" height="30" />
|
||||
<rect x="332" y="0" width="6" height="30" />
|
||||
<rect x="340" y="0" width="6" height="30" />
|
||||
<rect x="348" y="0" width="2" height="30" />
|
||||
<rect x="352" y="0" width="6" height="30" />
|
||||
<rect x="360" y="0" width="2" height="30" />
|
||||
<rect x="364" y="0" width="2" height="30" />
|
||||
<rect x="372" y="0" width="2" height="30" />
|
||||
<rect x="376" y="0" width="6" height="30" />
|
||||
<rect x="384" y="0" width="2" height="30" />
|
||||
<rect x="388" y="0" width="6" height="30" />
|
||||
<rect x="396" y="0" width="2" height="30" />
|
||||
<rect x="404" y="0" width="2" height="30" />
|
||||
<rect x="408" y="0" width="6" height="30" />
|
||||
<rect x="416" y="0" width="6" height="30" />
|
||||
<rect x="424" y="0" width="6" height="30" />
|
||||
<rect x="432" y="0" width="2" height="30" />
|
||||
<rect x="440" y="0" width="2" height="30" />
|
||||
<rect x="444" y="0" width="2" height="30" />
|
||||
<rect x="448" y="0" width="2" height="30" />
|
||||
<rect x="456" y="0" width="2" height="30" />
|
||||
<rect x="460" y="0" width="6" height="30" />
|
||||
<rect x="468" y="0" width="6" height="30" />
|
||||
<rect x="476" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.7 KiB |
@@ -0,0 +1,87 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="512" height="30" viewBox="0 0 512 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>*1234567890ABCZ*</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="6" height="30" />
|
||||
<rect x="20" y="0" width="6" height="30" />
|
||||
<rect x="28" y="0" width="2" height="30" />
|
||||
<rect x="32" y="0" width="6" height="30" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="48" y="0" width="2" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="56" y="0" width="6" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="6" height="30" />
|
||||
<rect x="80" y="0" width="2" height="30" />
|
||||
<rect x="84" y="0" width="2" height="30" />
|
||||
<rect x="88" y="0" width="6" height="30" />
|
||||
<rect x="96" y="0" width="6" height="30" />
|
||||
<rect x="104" y="0" width="6" height="30" />
|
||||
<rect x="116" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="2" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="140" y="0" width="6" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="6" height="30" />
|
||||
<rect x="160" y="0" width="6" height="30" />
|
||||
<rect x="168" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="6" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="196" y="0" width="6" height="30" />
|
||||
<rect x="208" y="0" width="6" height="30" />
|
||||
<rect x="216" y="0" width="2" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
<rect x="224" y="0" width="2" height="30" />
|
||||
<rect x="228" y="0" width="2" height="30" />
|
||||
<rect x="236" y="0" width="2" height="30" />
|
||||
<rect x="240" y="0" width="6" height="30" />
|
||||
<rect x="248" y="0" width="6" height="30" />
|
||||
<rect x="256" y="0" width="6" height="30" />
|
||||
<rect x="264" y="0" width="2" height="30" />
|
||||
<rect x="272" y="0" width="2" height="30" />
|
||||
<rect x="276" y="0" width="6" height="30" />
|
||||
<rect x="284" y="0" width="2" height="30" />
|
||||
<rect x="288" y="0" width="2" height="30" />
|
||||
<rect x="292" y="0" width="6" height="30" />
|
||||
<rect x="304" y="0" width="2" height="30" />
|
||||
<rect x="308" y="0" width="6" height="30" />
|
||||
<rect x="316" y="0" width="2" height="30" />
|
||||
<rect x="320" y="0" width="2" height="30" />
|
||||
<rect x="324" y="0" width="2" height="30" />
|
||||
<rect x="332" y="0" width="6" height="30" />
|
||||
<rect x="340" y="0" width="6" height="30" />
|
||||
<rect x="348" y="0" width="2" height="30" />
|
||||
<rect x="352" y="0" width="6" height="30" />
|
||||
<rect x="360" y="0" width="2" height="30" />
|
||||
<rect x="364" y="0" width="2" height="30" />
|
||||
<rect x="372" y="0" width="2" height="30" />
|
||||
<rect x="376" y="0" width="6" height="30" />
|
||||
<rect x="384" y="0" width="2" height="30" />
|
||||
<rect x="388" y="0" width="6" height="30" />
|
||||
<rect x="396" y="0" width="2" height="30" />
|
||||
<rect x="404" y="0" width="2" height="30" />
|
||||
<rect x="408" y="0" width="6" height="30" />
|
||||
<rect x="416" y="0" width="6" height="30" />
|
||||
<rect x="424" y="0" width="6" height="30" />
|
||||
<rect x="432" y="0" width="2" height="30" />
|
||||
<rect x="440" y="0" width="2" height="30" />
|
||||
<rect x="444" y="0" width="2" height="30" />
|
||||
<rect x="448" y="0" width="2" height="30" />
|
||||
<rect x="456" y="0" width="6" height="30" />
|
||||
<rect x="464" y="0" width="6" height="30" />
|
||||
<rect x="472" y="0" width="2" height="30" />
|
||||
<rect x="476" y="0" width="2" height="30" />
|
||||
<rect x="480" y="0" width="2" height="30" />
|
||||
<rect x="488" y="0" width="2" height="30" />
|
||||
<rect x="492" y="0" width="6" height="30" />
|
||||
<rect x="500" y="0" width="6" height="30" />
|
||||
<rect x="508" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1,112 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="672" height="30" viewBox="0 0 672 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>*1234567890+A+B+CABC*</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="6" height="30" />
|
||||
<rect x="20" y="0" width="6" height="30" />
|
||||
<rect x="28" y="0" width="2" height="30" />
|
||||
<rect x="32" y="0" width="6" height="30" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="48" y="0" width="2" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="56" y="0" width="6" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="6" height="30" />
|
||||
<rect x="80" y="0" width="2" height="30" />
|
||||
<rect x="84" y="0" width="2" height="30" />
|
||||
<rect x="88" y="0" width="6" height="30" />
|
||||
<rect x="96" y="0" width="6" height="30" />
|
||||
<rect x="104" y="0" width="6" height="30" />
|
||||
<rect x="116" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="2" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="140" y="0" width="6" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="6" height="30" />
|
||||
<rect x="160" y="0" width="6" height="30" />
|
||||
<rect x="168" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="6" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="196" y="0" width="6" height="30" />
|
||||
<rect x="208" y="0" width="6" height="30" />
|
||||
<rect x="216" y="0" width="2" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
<rect x="224" y="0" width="2" height="30" />
|
||||
<rect x="228" y="0" width="2" height="30" />
|
||||
<rect x="236" y="0" width="2" height="30" />
|
||||
<rect x="240" y="0" width="6" height="30" />
|
||||
<rect x="248" y="0" width="6" height="30" />
|
||||
<rect x="256" y="0" width="6" height="30" />
|
||||
<rect x="264" y="0" width="2" height="30" />
|
||||
<rect x="272" y="0" width="2" height="30" />
|
||||
<rect x="276" y="0" width="6" height="30" />
|
||||
<rect x="284" y="0" width="2" height="30" />
|
||||
<rect x="288" y="0" width="2" height="30" />
|
||||
<rect x="292" y="0" width="6" height="30" />
|
||||
<rect x="304" y="0" width="2" height="30" />
|
||||
<rect x="308" y="0" width="6" height="30" />
|
||||
<rect x="316" y="0" width="2" height="30" />
|
||||
<rect x="320" y="0" width="2" height="30" />
|
||||
<rect x="324" y="0" width="2" height="30" />
|
||||
<rect x="332" y="0" width="6" height="30" />
|
||||
<rect x="340" y="0" width="6" height="30" />
|
||||
<rect x="348" y="0" width="2" height="30" />
|
||||
<rect x="352" y="0" width="2" height="30" />
|
||||
<rect x="360" y="0" width="2" height="30" />
|
||||
<rect x="364" y="0" width="2" height="30" />
|
||||
<rect x="372" y="0" width="2" height="30" />
|
||||
<rect x="380" y="0" width="2" height="30" />
|
||||
<rect x="384" y="0" width="6" height="30" />
|
||||
<rect x="392" y="0" width="2" height="30" />
|
||||
<rect x="396" y="0" width="2" height="30" />
|
||||
<rect x="404" y="0" width="2" height="30" />
|
||||
<rect x="408" y="0" width="6" height="30" />
|
||||
<rect x="416" y="0" width="2" height="30" />
|
||||
<rect x="424" y="0" width="2" height="30" />
|
||||
<rect x="428" y="0" width="2" height="30" />
|
||||
<rect x="436" y="0" width="2" height="30" />
|
||||
<rect x="444" y="0" width="2" height="30" />
|
||||
<rect x="448" y="0" width="2" height="30" />
|
||||
<rect x="452" y="0" width="6" height="30" />
|
||||
<rect x="460" y="0" width="2" height="30" />
|
||||
<rect x="468" y="0" width="2" height="30" />
|
||||
<rect x="472" y="0" width="6" height="30" />
|
||||
<rect x="480" y="0" width="2" height="30" />
|
||||
<rect x="488" y="0" width="2" height="30" />
|
||||
<rect x="492" y="0" width="2" height="30" />
|
||||
<rect x="500" y="0" width="2" height="30" />
|
||||
<rect x="508" y="0" width="2" height="30" />
|
||||
<rect x="512" y="0" width="6" height="30" />
|
||||
<rect x="520" y="0" width="6" height="30" />
|
||||
<rect x="528" y="0" width="2" height="30" />
|
||||
<rect x="536" y="0" width="2" height="30" />
|
||||
<rect x="540" y="0" width="2" height="30" />
|
||||
<rect x="544" y="0" width="6" height="30" />
|
||||
<rect x="552" y="0" width="2" height="30" />
|
||||
<rect x="556" y="0" width="2" height="30" />
|
||||
<rect x="564" y="0" width="2" height="30" />
|
||||
<rect x="568" y="0" width="6" height="30" />
|
||||
<rect x="576" y="0" width="2" height="30" />
|
||||
<rect x="580" y="0" width="6" height="30" />
|
||||
<rect x="588" y="0" width="2" height="30" />
|
||||
<rect x="596" y="0" width="2" height="30" />
|
||||
<rect x="600" y="0" width="6" height="30" />
|
||||
<rect x="608" y="0" width="6" height="30" />
|
||||
<rect x="616" y="0" width="6" height="30" />
|
||||
<rect x="624" y="0" width="2" height="30" />
|
||||
<rect x="632" y="0" width="2" height="30" />
|
||||
<rect x="636" y="0" width="2" height="30" />
|
||||
<rect x="640" y="0" width="2" height="30" />
|
||||
<rect x="648" y="0" width="2" height="30" />
|
||||
<rect x="652" y="0" width="6" height="30" />
|
||||
<rect x="660" y="0" width="6" height="30" />
|
||||
<rect x="668" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.1 KiB |
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="704" height="30" viewBox="0 0 704 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>*1234567890+A+B+CABCJ*</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="6" height="30" />
|
||||
<rect x="20" y="0" width="6" height="30" />
|
||||
<rect x="28" y="0" width="2" height="30" />
|
||||
<rect x="32" y="0" width="6" height="30" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="48" y="0" width="2" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="56" y="0" width="6" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="6" height="30" />
|
||||
<rect x="80" y="0" width="2" height="30" />
|
||||
<rect x="84" y="0" width="2" height="30" />
|
||||
<rect x="88" y="0" width="6" height="30" />
|
||||
<rect x="96" y="0" width="6" height="30" />
|
||||
<rect x="104" y="0" width="6" height="30" />
|
||||
<rect x="116" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="2" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="140" y="0" width="6" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="6" height="30" />
|
||||
<rect x="160" y="0" width="6" height="30" />
|
||||
<rect x="168" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="6" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="196" y="0" width="6" height="30" />
|
||||
<rect x="208" y="0" width="6" height="30" />
|
||||
<rect x="216" y="0" width="2" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
<rect x="224" y="0" width="2" height="30" />
|
||||
<rect x="228" y="0" width="2" height="30" />
|
||||
<rect x="236" y="0" width="2" height="30" />
|
||||
<rect x="240" y="0" width="6" height="30" />
|
||||
<rect x="248" y="0" width="6" height="30" />
|
||||
<rect x="256" y="0" width="6" height="30" />
|
||||
<rect x="264" y="0" width="2" height="30" />
|
||||
<rect x="272" y="0" width="2" height="30" />
|
||||
<rect x="276" y="0" width="6" height="30" />
|
||||
<rect x="284" y="0" width="2" height="30" />
|
||||
<rect x="288" y="0" width="2" height="30" />
|
||||
<rect x="292" y="0" width="6" height="30" />
|
||||
<rect x="304" y="0" width="2" height="30" />
|
||||
<rect x="308" y="0" width="6" height="30" />
|
||||
<rect x="316" y="0" width="2" height="30" />
|
||||
<rect x="320" y="0" width="2" height="30" />
|
||||
<rect x="324" y="0" width="2" height="30" />
|
||||
<rect x="332" y="0" width="6" height="30" />
|
||||
<rect x="340" y="0" width="6" height="30" />
|
||||
<rect x="348" y="0" width="2" height="30" />
|
||||
<rect x="352" y="0" width="2" height="30" />
|
||||
<rect x="360" y="0" width="2" height="30" />
|
||||
<rect x="364" y="0" width="2" height="30" />
|
||||
<rect x="372" y="0" width="2" height="30" />
|
||||
<rect x="380" y="0" width="2" height="30" />
|
||||
<rect x="384" y="0" width="6" height="30" />
|
||||
<rect x="392" y="0" width="2" height="30" />
|
||||
<rect x="396" y="0" width="2" height="30" />
|
||||
<rect x="404" y="0" width="2" height="30" />
|
||||
<rect x="408" y="0" width="6" height="30" />
|
||||
<rect x="416" y="0" width="2" height="30" />
|
||||
<rect x="424" y="0" width="2" height="30" />
|
||||
<rect x="428" y="0" width="2" height="30" />
|
||||
<rect x="436" y="0" width="2" height="30" />
|
||||
<rect x="444" y="0" width="2" height="30" />
|
||||
<rect x="448" y="0" width="2" height="30" />
|
||||
<rect x="452" y="0" width="6" height="30" />
|
||||
<rect x="460" y="0" width="2" height="30" />
|
||||
<rect x="468" y="0" width="2" height="30" />
|
||||
<rect x="472" y="0" width="6" height="30" />
|
||||
<rect x="480" y="0" width="2" height="30" />
|
||||
<rect x="488" y="0" width="2" height="30" />
|
||||
<rect x="492" y="0" width="2" height="30" />
|
||||
<rect x="500" y="0" width="2" height="30" />
|
||||
<rect x="508" y="0" width="2" height="30" />
|
||||
<rect x="512" y="0" width="6" height="30" />
|
||||
<rect x="520" y="0" width="6" height="30" />
|
||||
<rect x="528" y="0" width="2" height="30" />
|
||||
<rect x="536" y="0" width="2" height="30" />
|
||||
<rect x="540" y="0" width="2" height="30" />
|
||||
<rect x="544" y="0" width="6" height="30" />
|
||||
<rect x="552" y="0" width="2" height="30" />
|
||||
<rect x="556" y="0" width="2" height="30" />
|
||||
<rect x="564" y="0" width="2" height="30" />
|
||||
<rect x="568" y="0" width="6" height="30" />
|
||||
<rect x="576" y="0" width="2" height="30" />
|
||||
<rect x="580" y="0" width="6" height="30" />
|
||||
<rect x="588" y="0" width="2" height="30" />
|
||||
<rect x="596" y="0" width="2" height="30" />
|
||||
<rect x="600" y="0" width="6" height="30" />
|
||||
<rect x="608" y="0" width="6" height="30" />
|
||||
<rect x="616" y="0" width="6" height="30" />
|
||||
<rect x="624" y="0" width="2" height="30" />
|
||||
<rect x="632" y="0" width="2" height="30" />
|
||||
<rect x="636" y="0" width="2" height="30" />
|
||||
<rect x="640" y="0" width="2" height="30" />
|
||||
<rect x="644" y="0" width="2" height="30" />
|
||||
<rect x="648" y="0" width="6" height="30" />
|
||||
<rect x="660" y="0" width="6" height="30" />
|
||||
<rect x="668" y="0" width="2" height="30" />
|
||||
<rect x="672" y="0" width="2" height="30" />
|
||||
<rect x="680" y="0" width="2" height="30" />
|
||||
<rect x="684" y="0" width="6" height="30" />
|
||||
<rect x="692" y="0" width="6" height="30" />
|
||||
<rect x="700" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.4 KiB |
@@ -0,0 +1,77 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="416" height="30" viewBox="0 0 416 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>*1234567890dAdBdCABC6-*</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="8" height="30" />
|
||||
<rect x="18" y="0" width="2" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="28" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="2" height="30" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="48" y="0" width="2" height="30" />
|
||||
<rect x="54" y="0" width="2" height="30" />
|
||||
<rect x="58" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="2" height="30" />
|
||||
<rect x="72" y="0" width="2" height="30" />
|
||||
<rect x="78" y="0" width="2" height="30" />
|
||||
<rect x="82" y="0" width="2" height="30" />
|
||||
<rect x="90" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="102" y="0" width="2" height="30" />
|
||||
<rect x="108" y="0" width="2" height="30" />
|
||||
<rect x="114" y="0" width="2" height="30" />
|
||||
<rect x="122" y="0" width="2" height="30" />
|
||||
<rect x="126" y="0" width="2" height="30" />
|
||||
<rect x="130" y="0" width="2" height="30" />
|
||||
<rect x="134" y="0" width="2" height="30" />
|
||||
<rect x="144" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="2" height="30" />
|
||||
<rect x="158" y="0" width="2" height="30" />
|
||||
<rect x="162" y="0" width="2" height="30" />
|
||||
<rect x="172" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="2" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="198" y="0" width="2" height="30" />
|
||||
<rect x="204" y="0" width="4" height="30" />
|
||||
<rect x="212" y="0" width="2" height="30" />
|
||||
<rect x="216" y="0" width="4" height="30" />
|
||||
<rect x="222" y="0" width="2" height="30" />
|
||||
<rect x="226" y="0" width="2" height="30" />
|
||||
<rect x="234" y="0" width="2" height="30" />
|
||||
<rect x="240" y="0" width="4" height="30" />
|
||||
<rect x="248" y="0" width="2" height="30" />
|
||||
<rect x="252" y="0" width="4" height="30" />
|
||||
<rect x="258" y="0" width="2" height="30" />
|
||||
<rect x="264" y="0" width="2" height="30" />
|
||||
<rect x="270" y="0" width="2" height="30" />
|
||||
<rect x="276" y="0" width="4" height="30" />
|
||||
<rect x="284" y="0" width="2" height="30" />
|
||||
<rect x="288" y="0" width="4" height="30" />
|
||||
<rect x="294" y="0" width="2" height="30" />
|
||||
<rect x="302" y="0" width="2" height="30" />
|
||||
<rect x="306" y="0" width="4" height="30" />
|
||||
<rect x="312" y="0" width="2" height="30" />
|
||||
<rect x="316" y="0" width="2" height="30" />
|
||||
<rect x="324" y="0" width="4" height="30" />
|
||||
<rect x="330" y="0" width="2" height="30" />
|
||||
<rect x="336" y="0" width="2" height="30" />
|
||||
<rect x="342" y="0" width="4" height="30" />
|
||||
<rect x="348" y="0" width="2" height="30" />
|
||||
<rect x="356" y="0" width="2" height="30" />
|
||||
<rect x="360" y="0" width="2" height="30" />
|
||||
<rect x="366" y="0" width="2" height="30" />
|
||||
<rect x="374" y="0" width="2" height="30" />
|
||||
<rect x="378" y="0" width="2" height="30" />
|
||||
<rect x="384" y="0" width="2" height="30" />
|
||||
<rect x="388" y="0" width="6" height="30" />
|
||||
<rect x="396" y="0" width="2" height="30" />
|
||||
<rect x="400" y="0" width="2" height="30" />
|
||||
<rect x="404" y="0" width="8" height="30" />
|
||||
<rect x="414" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="190" height="30" viewBox="0 0 190 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>0049000004632</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="4" height="30" />
|
||||
<rect x="18" y="0" width="2" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="30" y="0" width="4" height="30" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="4" height="30" />
|
||||
<rect x="54" y="0" width="4" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="4" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="82" y="0" width="4" height="30" />
|
||||
<rect x="88" y="0" width="2" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="6" height="30" />
|
||||
<rect x="110" y="0" width="2" height="30" />
|
||||
<rect x="114" y="0" width="6" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="6" height="30" />
|
||||
<rect x="142" y="0" width="2" height="30" />
|
||||
<rect x="146" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="166" y="0" width="2" height="30" />
|
||||
<rect x="170" y="0" width="4" height="30" />
|
||||
<rect x="176" y="0" width="4" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="190" height="30" viewBox="0 0 190 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>0049000004632</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="4" height="30" />
|
||||
<rect x="18" y="0" width="2" height="30" />
|
||||
<rect x="22" y="0" width="2" height="30" />
|
||||
<rect x="30" y="0" width="4" height="30" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="4" height="30" />
|
||||
<rect x="54" y="0" width="4" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="4" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="82" y="0" width="4" height="30" />
|
||||
<rect x="88" y="0" width="2" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="6" height="30" />
|
||||
<rect x="110" y="0" width="2" height="30" />
|
||||
<rect x="114" y="0" width="6" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="6" height="30" />
|
||||
<rect x="142" y="0" width="2" height="30" />
|
||||
<rect x="146" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="166" y="0" width="2" height="30" />
|
||||
<rect x="170" y="0" width="4" height="30" />
|
||||
<rect x="176" y="0" width="4" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="190" height="30" viewBox="0 0 190 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>0812317238973</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="4" height="30" />
|
||||
<rect x="14" y="0" width="6" height="30" />
|
||||
<rect x="24" y="0" width="4" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="38" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="4" height="30" />
|
||||
<rect x="50" y="0" width="8" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="66" y="0" width="4" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="78" y="0" width="6" height="30" />
|
||||
<rect x="86" y="0" width="4" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="4" height="30" />
|
||||
<rect x="106" y="0" width="4" height="30" />
|
||||
<rect x="114" y="0" width="2" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="134" y="0" width="2" height="30" />
|
||||
<rect x="142" y="0" width="6" height="30" />
|
||||
<rect x="150" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="164" y="0" width="2" height="30" />
|
||||
<rect x="170" y="0" width="2" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="134" height="30" viewBox="0 0 134 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>12345687</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="10" y="0" width="4" height="30" />
|
||||
<rect x="18" y="0" width="2" height="30" />
|
||||
<rect x="24" y="0" width="2" height="30" />
|
||||
<rect x="30" y="0" width="4" height="30" />
|
||||
<rect x="36" y="0" width="8" height="30" />
|
||||
<rect x="46" y="0" width="2" height="30" />
|
||||
<rect x="50" y="0" width="2" height="30" />
|
||||
<rect x="58" y="0" width="4" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="2" height="30" />
|
||||
<rect x="72" y="0" width="2" height="30" />
|
||||
<rect x="78" y="0" width="6" height="30" />
|
||||
<rect x="86" y="0" width="2" height="30" />
|
||||
<rect x="90" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
<rect x="106" y="0" width="2" height="30" />
|
||||
<rect x="114" y="0" width="2" height="30" />
|
||||
<rect x="122" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="214" height="30" viewBox="0 0 214 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>00012345600012</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="16" y="0" width="4" height="30" />
|
||||
<rect x="24" y="0" width="4" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="2" height="30" />
|
||||
<rect x="42" y="0" width="2" height="30" />
|
||||
<rect x="46" y="0" width="4" height="30" />
|
||||
<rect x="52" y="0" width="4" height="30" />
|
||||
<rect x="58" y="0" width="2" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="70" y="0" width="4" height="30" />
|
||||
<rect x="78" y="0" width="2" height="30" />
|
||||
<rect x="82" y="0" width="2" height="30" />
|
||||
<rect x="86" y="0" width="4" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="98" y="0" width="2" height="30" />
|
||||
<rect x="102" y="0" width="4" height="30" />
|
||||
<rect x="110" y="0" width="2" height="30" />
|
||||
<rect x="114" y="0" width="4" height="30" />
|
||||
<rect x="120" y="0" width="2" height="30" />
|
||||
<rect x="124" y="0" width="4" height="30" />
|
||||
<rect x="130" y="0" width="4" height="30" />
|
||||
<rect x="138" y="0" width="2" height="30" />
|
||||
<rect x="144" y="0" width="2" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="4" height="30" />
|
||||
<rect x="164" y="0" width="4" height="30" />
|
||||
<rect x="172" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="4" height="30" />
|
||||
<rect x="182" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="196" y="0" width="4" height="30" />
|
||||
<rect x="204" y="0" width="4" height="30" />
|
||||
<rect x="210" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="214" height="30" viewBox="0 0 214 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>05400141288766</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="14" y="0" width="2" height="30" />
|
||||
<rect x="18" y="0" width="4" height="30" />
|
||||
<rect x="26" y="0" width="4" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="2" height="30" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="4" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="58" y="0" width="4" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="70" y="0" width="2" height="30" />
|
||||
<rect x="74" y="0" width="4" height="30" />
|
||||
<rect x="80" y="0" width="4" height="30" />
|
||||
<rect x="86" y="0" width="2" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="98" y="0" width="2" height="30" />
|
||||
<rect x="102" y="0" width="4" height="30" />
|
||||
<rect x="108" y="0" width="2" height="30" />
|
||||
<rect x="112" y="0" width="4" height="30" />
|
||||
<rect x="120" y="0" width="2" height="30" />
|
||||
<rect x="126" y="0" width="4" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="136" y="0" width="2" height="30" />
|
||||
<rect x="142" y="0" width="4" height="30" />
|
||||
<rect x="148" y="0" width="4" height="30" />
|
||||
<rect x="154" y="0" width="2" height="30" />
|
||||
<rect x="158" y="0" width="2" height="30" />
|
||||
<rect x="162" y="0" width="4" height="30" />
|
||||
<rect x="170" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="2" height="30" />
|
||||
<rect x="180" y="0" width="4" height="30" />
|
||||
<rect x="188" y="0" width="4" height="30" />
|
||||
<rect x="196" y="0" width="2" height="30" />
|
||||
<rect x="200" y="0" width="2" height="30" />
|
||||
<rect x="204" y="0" width="4" height="30" />
|
||||
<rect x="210" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="258" height="30" viewBox="0 0 258 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>123456789</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="10" width="2" height="10" />
|
||||
<rect x="4" y="10" width="2" height="20" />
|
||||
<rect x="8" y="0" width="2" height="20" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="16" y="10" width="2" height="20" />
|
||||
<rect x="20" y="0" width="2" height="20" />
|
||||
<rect x="24" y="0" width="2" height="30" />
|
||||
<rect x="28" y="10" width="2" height="10" />
|
||||
<rect x="32" y="0" width="2" height="20" />
|
||||
<rect x="36" y="10" width="2" height="20" />
|
||||
<rect x="40" y="10" width="2" height="20" />
|
||||
<rect x="44" y="0" width="2" height="20" />
|
||||
<rect x="48" y="0" width="2" height="20" />
|
||||
<rect x="52" y="0" width="2" height="20" />
|
||||
<rect x="56" y="0" width="2" height="30" />
|
||||
<rect x="60" y="10" width="2" height="10" />
|
||||
<rect x="64" y="0" width="2" height="20" />
|
||||
<rect x="68" y="10" width="2" height="10" />
|
||||
<rect x="72" y="10" width="2" height="20" />
|
||||
<rect x="76" y="0" width="2" height="20" />
|
||||
<rect x="80" y="0" width="2" height="20" />
|
||||
<rect x="84" y="10" width="2" height="10" />
|
||||
<rect x="88" y="0" width="2" height="30" />
|
||||
<rect x="92" y="10" width="2" height="20" />
|
||||
<rect x="96" y="0" width="2" height="20" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
<rect x="104" y="10" width="2" height="20" />
|
||||
<rect x="108" y="10" width="2" height="20" />
|
||||
<rect x="112" y="0" width="2" height="30" />
|
||||
<rect x="116" y="10" width="2" height="10" />
|
||||
<rect x="120" y="0" width="2" height="30" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="10" width="2" height="10" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="136" y="10" width="2" height="10" />
|
||||
<rect x="140" y="0" width="2" height="30" />
|
||||
<rect x="144" y="10" width="2" height="20" />
|
||||
<rect x="148" y="10" width="2" height="20" />
|
||||
<rect x="152" y="10" width="2" height="10" />
|
||||
<rect x="156" y="10" width="2" height="10" />
|
||||
<rect x="160" y="10" width="2" height="10" />
|
||||
<rect x="164" y="0" width="2" height="30" />
|
||||
<rect x="168" y="10" width="2" height="20" />
|
||||
<rect x="172" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="2" height="30" />
|
||||
<rect x="180" y="10" width="2" height="10" />
|
||||
<rect x="184" y="10" width="2" height="20" />
|
||||
<rect x="188" y="10" width="2" height="10" />
|
||||
<rect x="192" y="10" width="2" height="20" />
|
||||
<rect x="196" y="0" width="2" height="30" />
|
||||
<rect x="200" y="0" width="2" height="20" />
|
||||
<rect x="204" y="10" width="2" height="10" />
|
||||
<rect x="208" y="0" width="2" height="30" />
|
||||
<rect x="212" y="0" width="2" height="30" />
|
||||
<rect x="216" y="0" width="2" height="30" />
|
||||
<rect x="220" y="10" width="2" height="10" />
|
||||
<rect x="224" y="10" width="2" height="20" />
|
||||
<rect x="228" y="0" width="2" height="30" />
|
||||
<rect x="232" y="0" width="2" height="30" />
|
||||
<rect x="236" y="0" width="2" height="30" />
|
||||
<rect x="240" y="0" width="2" height="30" />
|
||||
<rect x="244" y="0" width="2" height="30" />
|
||||
<rect x="248" y="0" width="2" height="30" />
|
||||
<rect x="252" y="10" width="2" height="20" />
|
||||
<rect x="256" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="158" height="30" viewBox="0 0 158 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>AA1234567890ZA</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="4" height="30" />
|
||||
<rect x="14" y="0" width="2" height="30" />
|
||||
<rect x="20" y="0" width="2" height="30" />
|
||||
<rect x="24" y="0" width="2" height="30" />
|
||||
<rect x="28" y="0" width="4" height="30" />
|
||||
<rect x="36" y="0" width="4" height="30" />
|
||||
<rect x="42" y="0" width="4" height="30" />
|
||||
<rect x="48" y="0" width="2" height="30" />
|
||||
<rect x="54" y="0" width="2" height="30" />
|
||||
<rect x="58" y="0" width="2" height="30" />
|
||||
<rect x="64" y="0" width="4" height="30" />
|
||||
<rect x="70" y="0" width="2" height="30" />
|
||||
<rect x="76" y="0" width="4" height="30" />
|
||||
<rect x="84" y="0" width="2" height="30" />
|
||||
<rect x="88" y="0" width="2" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="98" y="0" width="2" height="30" />
|
||||
<rect x="102" y="0" width="2" height="30" />
|
||||
<rect x="106" y="0" width="4" height="30" />
|
||||
<rect x="114" y="0" width="4" height="30" />
|
||||
<rect x="120" y="0" width="2" height="30" />
|
||||
<rect x="124" y="0" width="4" height="30" />
|
||||
<rect x="130" y="0" width="2" height="30" />
|
||||
<rect x="136" y="0" width="4" height="30" />
|
||||
<rect x="144" y="0" width="2" height="30" />
|
||||
<rect x="148" y="0" width="4" height="30" />
|
||||
<rect x="154" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="186" height="30" viewBox="0 0 186 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>AA012345678905ZA</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="14" y="0" width="2" height="30" />
|
||||
<rect x="18" y="0" width="4" height="30" />
|
||||
<rect x="24" y="0" width="4" height="30" />
|
||||
<rect x="30" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="2" height="30" />
|
||||
<rect x="42" y="0" width="4" height="30" />
|
||||
<rect x="50" y="0" width="2" height="30" />
|
||||
<rect x="54" y="0" width="2" height="30" />
|
||||
<rect x="58" y="0" width="4" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="70" y="0" width="2" height="30" />
|
||||
<rect x="74" y="0" width="4" height="30" />
|
||||
<rect x="82" y="0" width="2" height="30" />
|
||||
<rect x="86" y="0" width="4" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="4" height="30" />
|
||||
<rect x="102" y="0" width="4" height="30" />
|
||||
<rect x="108" y="0" width="2" height="30" />
|
||||
<rect x="114" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="4" height="30" />
|
||||
<rect x="126" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="136" y="0" width="4" height="30" />
|
||||
<rect x="144" y="0" width="2" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="154" y="0" width="2" height="30" />
|
||||
<rect x="158" y="0" width="4" height="30" />
|
||||
<rect x="166" y="0" width="4" height="30" />
|
||||
<rect x="172" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="4" height="30" />
|
||||
<rect x="182" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="144" height="30" viewBox="0 0 144 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>123456789</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="10" width="2" height="10" />
|
||||
<rect x="4" y="10" width="2" height="20" />
|
||||
<rect x="8" y="0" width="2" height="20" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="16" y="10" width="2" height="10" />
|
||||
<rect x="20" y="10" width="2" height="20" />
|
||||
<rect x="24" y="0" width="2" height="30" />
|
||||
<rect x="28" y="0" width="2" height="20" />
|
||||
<rect x="32" y="10" width="2" height="20" />
|
||||
<rect x="36" y="10" width="2" height="10" />
|
||||
<rect x="40" y="0" width="2" height="20" />
|
||||
<rect x="44" y="0" width="2" height="30" />
|
||||
<rect x="48" y="10" width="2" height="20" />
|
||||
<rect x="52" y="10" width="2" height="10" />
|
||||
<rect x="56" y="0" width="2" height="30" />
|
||||
<rect x="60" y="0" width="2" height="20" />
|
||||
<rect x="64" y="10" width="2" height="20" />
|
||||
<rect x="68" y="10" width="2" height="20" />
|
||||
<rect x="72" y="0" width="2" height="20" />
|
||||
<rect x="76" y="0" width="2" height="20" />
|
||||
<rect x="80" y="10" width="2" height="10" />
|
||||
<rect x="84" y="0" width="2" height="20" />
|
||||
<rect x="88" y="10" width="2" height="20" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="10" width="2" height="10" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
<rect x="104" y="10" width="2" height="10" />
|
||||
<rect x="108" y="0" width="2" height="30" />
|
||||
<rect x="112" y="10" width="2" height="10" />
|
||||
<rect x="116" y="0" width="2" height="30" />
|
||||
<rect x="120" y="10" width="2" height="20" />
|
||||
<rect x="124" y="0" width="2" height="20" />
|
||||
<rect x="128" y="10" width="2" height="20" />
|
||||
<rect x="132" y="0" width="2" height="20" />
|
||||
<rect x="136" y="10" width="2" height="10" />
|
||||
<rect x="140" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="230" height="30" viewBox="0 0 230 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>123456789</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="4" height="30" />
|
||||
<rect x="6" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="18" y="0" width="2" height="30" />
|
||||
<rect x="24" y="0" width="4" height="30" />
|
||||
<rect x="30" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="2" height="30" />
|
||||
<rect x="42" y="0" width="4" height="30" />
|
||||
<rect x="48" y="0" width="2" height="30" />
|
||||
<rect x="54" y="0" width="2" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="66" y="0" width="4" height="30" />
|
||||
<rect x="72" y="0" width="4" height="30" />
|
||||
<rect x="78" y="0" width="2" height="30" />
|
||||
<rect x="84" y="0" width="4" height="30" />
|
||||
<rect x="90" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="102" y="0" width="2" height="30" />
|
||||
<rect x="108" y="0" width="4" height="30" />
|
||||
<rect x="114" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="4" height="30" />
|
||||
<rect x="126" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="4" height="30" />
|
||||
<rect x="138" y="0" width="4" height="30" />
|
||||
<rect x="144" y="0" width="2" height="30" />
|
||||
<rect x="150" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="4" height="30" />
|
||||
<rect x="162" y="0" width="4" height="30" />
|
||||
<rect x="168" y="0" width="4" height="30" />
|
||||
<rect x="174" y="0" width="4" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="186" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="198" y="0" width="4" height="30" />
|
||||
<rect x="204" y="0" width="2" height="30" />
|
||||
<rect x="210" y="0" width="2" height="30" />
|
||||
<rect x="216" y="0" width="4" height="30" />
|
||||
<rect x="222" y="0" width="2" height="30" />
|
||||
<rect x="228" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="254" height="30" viewBox="0 0 254 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>1234567892</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="4" height="30" />
|
||||
<rect x="6" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="18" y="0" width="2" height="30" />
|
||||
<rect x="24" y="0" width="4" height="30" />
|
||||
<rect x="30" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="2" height="30" />
|
||||
<rect x="42" y="0" width="4" height="30" />
|
||||
<rect x="48" y="0" width="2" height="30" />
|
||||
<rect x="54" y="0" width="2" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="66" y="0" width="4" height="30" />
|
||||
<rect x="72" y="0" width="4" height="30" />
|
||||
<rect x="78" y="0" width="2" height="30" />
|
||||
<rect x="84" y="0" width="4" height="30" />
|
||||
<rect x="90" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="102" y="0" width="2" height="30" />
|
||||
<rect x="108" y="0" width="4" height="30" />
|
||||
<rect x="114" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="4" height="30" />
|
||||
<rect x="126" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="4" height="30" />
|
||||
<rect x="138" y="0" width="4" height="30" />
|
||||
<rect x="144" y="0" width="2" height="30" />
|
||||
<rect x="150" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="4" height="30" />
|
||||
<rect x="162" y="0" width="4" height="30" />
|
||||
<rect x="168" y="0" width="4" height="30" />
|
||||
<rect x="174" y="0" width="4" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="186" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="198" y="0" width="4" height="30" />
|
||||
<rect x="204" y="0" width="2" height="30" />
|
||||
<rect x="210" y="0" width="2" height="30" />
|
||||
<rect x="216" y="0" width="4" height="30" />
|
||||
<rect x="222" y="0" width="2" height="30" />
|
||||
<rect x="228" y="0" width="2" height="30" />
|
||||
<rect x="234" y="0" width="4" height="30" />
|
||||
<rect x="240" y="0" width="2" height="30" />
|
||||
<rect x="246" y="0" width="2" height="30" />
|
||||
<rect x="252" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
@@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="212" height="30" viewBox="0 0 212 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>123456789</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="6" height="30" />
|
||||
<rect x="10" y="0" width="6" height="30" />
|
||||
<rect x="20" y="0" width="2" height="30" />
|
||||
<rect x="26" y="0" width="6" height="30" />
|
||||
<rect x="36" y="0" width="2" height="30" />
|
||||
<rect x="42" y="0" width="6" height="30" />
|
||||
<rect x="52" y="0" width="6" height="30" />
|
||||
<rect x="62" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="6" height="30" />
|
||||
<rect x="78" y="0" width="6" height="30" />
|
||||
<rect x="88" y="0" width="6" height="30" />
|
||||
<rect x="98" y="0" width="6" height="30" />
|
||||
<rect x="108" y="0" width="2" height="30" />
|
||||
<rect x="114" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="6" height="30" />
|
||||
<rect x="130" y="0" width="6" height="30" />
|
||||
<rect x="140" y="0" width="2" height="30" />
|
||||
<rect x="146" y="0" width="6" height="30" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="162" y="0" width="2" height="30" />
|
||||
<rect x="168" y="0" width="2" height="30" />
|
||||
<rect x="174" y="0" width="6" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="190" y="0" width="6" height="30" />
|
||||
<rect x="200" y="0" width="6" height="30" />
|
||||
<rect x="210" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="66" height="30" viewBox="0 0 66 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>123456789</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="15" />
|
||||
<rect x="4" y="0" width="2" height="15" />
|
||||
<rect x="8" y="15" width="2" height="15" />
|
||||
<rect x="12" y="15" width="2" height="15" />
|
||||
<rect x="16" y="0" width="2" height="30" />
|
||||
<rect x="20" y="0" width="2" height="30" />
|
||||
<rect x="24" y="0" width="2" height="15" />
|
||||
<rect x="28" y="15" width="2" height="15" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="36" y="15" width="2" height="15" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="2" height="15" />
|
||||
<rect x="48" y="15" width="2" height="15" />
|
||||
<rect x="52" y="0" width="2" height="15" />
|
||||
<rect x="56" y="15" width="2" height="15" />
|
||||
<rect x="60" y="0" width="2" height="15" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="206" height="30" viewBox="0 0 206 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>123456789</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="16" y="15" width="2" height="15" />
|
||||
<rect x="20" y="15" width="2" height="15" />
|
||||
<rect x="24" y="0" width="2" height="30" />
|
||||
<rect x="28" y="0" width="2" height="30" />
|
||||
<rect x="32" y="15" width="2" height="15" />
|
||||
<rect x="36" y="0" width="2" height="30" />
|
||||
<rect x="40" y="15" width="2" height="15" />
|
||||
<rect x="44" y="0" width="2" height="30" />
|
||||
<rect x="48" y="0" width="2" height="30" />
|
||||
<rect x="52" y="15" width="2" height="15" />
|
||||
<rect x="56" y="15" width="2" height="15" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="68" y="15" width="2" height="15" />
|
||||
<rect x="72" y="0" width="2" height="30" />
|
||||
<rect x="76" y="0" width="2" height="30" />
|
||||
<rect x="80" y="15" width="2" height="15" />
|
||||
<rect x="84" y="0" width="2" height="30" />
|
||||
<rect x="88" y="15" width="2" height="15" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="15" width="2" height="15" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
<rect x="104" y="0" width="2" height="30" />
|
||||
<rect x="108" y="15" width="2" height="15" />
|
||||
<rect x="112" y="15" width="2" height="15" />
|
||||
<rect x="116" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="2" height="30" />
|
||||
<rect x="124" y="15" width="2" height="15" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="2" height="30" />
|
||||
<rect x="136" y="0" width="2" height="30" />
|
||||
<rect x="140" y="15" width="2" height="15" />
|
||||
<rect x="144" y="15" width="2" height="15" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="2" height="30" />
|
||||
<rect x="156" y="15" width="2" height="15" />
|
||||
<rect x="160" y="0" width="2" height="30" />
|
||||
<rect x="164" y="15" width="2" height="15" />
|
||||
<rect x="168" y="0" width="2" height="30" />
|
||||
<rect x="172" y="15" width="2" height="15" />
|
||||
<rect x="176" y="0" width="2" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="15" width="2" height="15" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="196" y="15" width="2" height="15" />
|
||||
<rect x="200" y="0" width="2" height="30" />
|
||||
<rect x="204" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="206" height="30" viewBox="0 0 206 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>123456789</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="15" width="2" height="15" />
|
||||
<rect x="8" y="15" width="2" height="15" />
|
||||
<rect x="12" y="15" width="2" height="15" />
|
||||
<rect x="16" y="0" width="2" height="30" />
|
||||
<rect x="20" y="0" width="2" height="30" />
|
||||
<rect x="24" y="15" width="2" height="15" />
|
||||
<rect x="28" y="15" width="2" height="15" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="36" y="15" width="2" height="15" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="44" y="15" width="2" height="15" />
|
||||
<rect x="48" y="15" width="2" height="15" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="56" y="0" width="2" height="30" />
|
||||
<rect x="60" y="15" width="2" height="15" />
|
||||
<rect x="64" y="15" width="2" height="15" />
|
||||
<rect x="68" y="0" width="2" height="30" />
|
||||
<rect x="72" y="15" width="2" height="15" />
|
||||
<rect x="76" y="15" width="2" height="15" />
|
||||
<rect x="80" y="0" width="2" height="30" />
|
||||
<rect x="84" y="15" width="2" height="15" />
|
||||
<rect x="88" y="0" width="2" height="30" />
|
||||
<rect x="92" y="15" width="2" height="15" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="15" width="2" height="15" />
|
||||
<rect x="104" y="15" width="2" height="15" />
|
||||
<rect x="108" y="0" width="2" height="30" />
|
||||
<rect x="112" y="0" width="2" height="30" />
|
||||
<rect x="116" y="15" width="2" height="15" />
|
||||
<rect x="120" y="15" width="2" height="15" />
|
||||
<rect x="124" y="0" width="2" height="30" />
|
||||
<rect x="128" y="15" width="2" height="15" />
|
||||
<rect x="132" y="15" width="2" height="15" />
|
||||
<rect x="136" y="15" width="2" height="15" />
|
||||
<rect x="140" y="0" width="2" height="30" />
|
||||
<rect x="144" y="0" width="2" height="30" />
|
||||
<rect x="148" y="15" width="2" height="15" />
|
||||
<rect x="152" y="15" width="2" height="15" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="160" y="15" width="2" height="15" />
|
||||
<rect x="164" y="0" width="2" height="30" />
|
||||
<rect x="168" y="15" width="2" height="15" />
|
||||
<rect x="172" y="0" width="2" height="30" />
|
||||
<rect x="176" y="15" width="2" height="15" />
|
||||
<rect x="180" y="15" width="2" height="15" />
|
||||
<rect x="184" y="15" width="2" height="15" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="192" y="15" width="2" height="15" />
|
||||
<rect x="196" y="0" width="2" height="30" />
|
||||
<rect x="200" y="15" width="2" height="15" />
|
||||
<rect x="204" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="166" height="30" viewBox="0 0 166 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>123456789</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="20" />
|
||||
<rect x="4" y="10" width="2" height="10" />
|
||||
<rect x="8" y="10" width="2" height="20" />
|
||||
<rect x="12" y="0" width="2" height="20" />
|
||||
<rect x="16" y="0" width="2" height="30" />
|
||||
<rect x="20" y="10" width="2" height="10" />
|
||||
<rect x="24" y="10" width="2" height="20" />
|
||||
<rect x="28" y="0" width="2" height="30" />
|
||||
<rect x="32" y="0" width="2" height="20" />
|
||||
<rect x="36" y="10" width="2" height="20" />
|
||||
<rect x="40" y="10" width="2" height="10" />
|
||||
<rect x="44" y="0" width="2" height="20" />
|
||||
<rect x="48" y="0" width="2" height="30" />
|
||||
<rect x="52" y="10" width="2" height="20" />
|
||||
<rect x="56" y="10" width="2" height="10" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="64" y="0" width="2" height="20" />
|
||||
<rect x="68" y="10" width="2" height="20" />
|
||||
<rect x="72" y="10" width="2" height="20" />
|
||||
<rect x="76" y="0" width="2" height="20" />
|
||||
<rect x="80" y="0" width="2" height="20" />
|
||||
<rect x="84" y="10" width="2" height="10" />
|
||||
<rect x="88" y="0" width="2" height="20" />
|
||||
<rect x="92" y="10" width="2" height="20" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="10" width="2" height="10" />
|
||||
<rect x="104" y="0" width="2" height="30" />
|
||||
<rect x="108" y="10" width="2" height="10" />
|
||||
<rect x="112" y="0" width="2" height="30" />
|
||||
<rect x="116" y="10" width="2" height="10" />
|
||||
<rect x="120" y="0" width="2" height="30" />
|
||||
<rect x="124" y="10" width="2" height="20" />
|
||||
<rect x="128" y="0" width="2" height="20" />
|
||||
<rect x="132" y="10" width="2" height="20" />
|
||||
<rect x="136" y="0" width="2" height="20" />
|
||||
<rect x="140" y="10" width="2" height="10" />
|
||||
<rect x="144" y="0" width="2" height="30" />
|
||||
<rect x="148" y="10" width="2" height="20" />
|
||||
<rect x="152" y="10" width="2" height="20" />
|
||||
<rect x="156" y="0" width="2" height="20" />
|
||||
<rect x="160" y="0" width="2" height="20" />
|
||||
<rect x="164" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="310" height="30" viewBox="0 0 310 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>1234567890</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="4" height="30" />
|
||||
<rect x="6" y="0" width="4" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="16" y="0" width="6" height="30" />
|
||||
<rect x="24" y="0" width="2" height="30" />
|
||||
<rect x="28" y="0" width="2" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="6" height="30" />
|
||||
<rect x="44" y="0" width="2" height="30" />
|
||||
<rect x="48" y="0" width="6" height="30" />
|
||||
<rect x="56" y="0" width="2" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="64" y="0" width="6" height="30" />
|
||||
<rect x="72" y="0" width="6" height="30" />
|
||||
<rect x="80" y="0" width="6" height="30" />
|
||||
<rect x="88" y="0" width="2" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
<rect x="104" y="0" width="2" height="30" />
|
||||
<rect x="108" y="0" width="6" height="30" />
|
||||
<rect x="116" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="6" height="30" />
|
||||
<rect x="128" y="0" width="6" height="30" />
|
||||
<rect x="136" y="0" width="2" height="30" />
|
||||
<rect x="140" y="0" width="6" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="160" y="0" width="6" height="30" />
|
||||
<rect x="168" y="0" width="6" height="30" />
|
||||
<rect x="176" y="0" width="2" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="196" y="0" width="6" height="30" />
|
||||
<rect x="204" y="0" width="6" height="30" />
|
||||
<rect x="212" y="0" width="6" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
<rect x="224" y="0" width="2" height="30" />
|
||||
<rect x="228" y="0" width="6" height="30" />
|
||||
<rect x="236" y="0" width="2" height="30" />
|
||||
<rect x="240" y="0" width="2" height="30" />
|
||||
<rect x="244" y="0" width="6" height="30" />
|
||||
<rect x="252" y="0" width="2" height="30" />
|
||||
<rect x="256" y="0" width="6" height="30" />
|
||||
<rect x="264" y="0" width="2" height="30" />
|
||||
<rect x="268" y="0" width="2" height="30" />
|
||||
<rect x="272" y="0" width="2" height="30" />
|
||||
<rect x="276" y="0" width="6" height="30" />
|
||||
<rect x="284" y="0" width="6" height="30" />
|
||||
<rect x="292" y="0" width="2" height="30" />
|
||||
<rect x="296" y="0" width="4" height="30" />
|
||||
<rect x="302" y="0" width="2" height="30" />
|
||||
<rect x="306" y="0" width="4" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="338" height="30" viewBox="0 0 338 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>12345678905</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="4" height="30" />
|
||||
<rect x="6" y="0" width="4" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="16" y="0" width="6" height="30" />
|
||||
<rect x="24" y="0" width="2" height="30" />
|
||||
<rect x="28" y="0" width="2" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="6" height="30" />
|
||||
<rect x="44" y="0" width="2" height="30" />
|
||||
<rect x="48" y="0" width="6" height="30" />
|
||||
<rect x="56" y="0" width="2" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="64" y="0" width="6" height="30" />
|
||||
<rect x="72" y="0" width="6" height="30" />
|
||||
<rect x="80" y="0" width="6" height="30" />
|
||||
<rect x="88" y="0" width="2" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
<rect x="104" y="0" width="2" height="30" />
|
||||
<rect x="108" y="0" width="6" height="30" />
|
||||
<rect x="116" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="6" height="30" />
|
||||
<rect x="128" y="0" width="6" height="30" />
|
||||
<rect x="136" y="0" width="2" height="30" />
|
||||
<rect x="140" y="0" width="6" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="160" y="0" width="6" height="30" />
|
||||
<rect x="168" y="0" width="6" height="30" />
|
||||
<rect x="176" y="0" width="2" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="196" y="0" width="6" height="30" />
|
||||
<rect x="204" y="0" width="6" height="30" />
|
||||
<rect x="212" y="0" width="6" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
<rect x="224" y="0" width="2" height="30" />
|
||||
<rect x="228" y="0" width="6" height="30" />
|
||||
<rect x="236" y="0" width="2" height="30" />
|
||||
<rect x="240" y="0" width="2" height="30" />
|
||||
<rect x="244" y="0" width="6" height="30" />
|
||||
<rect x="252" y="0" width="2" height="30" />
|
||||
<rect x="256" y="0" width="6" height="30" />
|
||||
<rect x="264" y="0" width="2" height="30" />
|
||||
<rect x="268" y="0" width="2" height="30" />
|
||||
<rect x="272" y="0" width="2" height="30" />
|
||||
<rect x="276" y="0" width="6" height="30" />
|
||||
<rect x="284" y="0" width="6" height="30" />
|
||||
<rect x="292" y="0" width="2" height="30" />
|
||||
<rect x="296" y="0" width="6" height="30" />
|
||||
<rect x="304" y="0" width="2" height="30" />
|
||||
<rect x="308" y="0" width="6" height="30" />
|
||||
<rect x="316" y="0" width="2" height="30" />
|
||||
<rect x="320" y="0" width="2" height="30" />
|
||||
<rect x="324" y="0" width="4" height="30" />
|
||||
<rect x="330" y="0" width="2" height="30" />
|
||||
<rect x="334" y="0" width="4" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
@@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="544" height="30" viewBox="0 0 544 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>1234567890ASCD</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="16" y="0" width="2" height="30" />
|
||||
<rect x="20" y="0" width="6" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="6" height="30" />
|
||||
<rect x="44" y="0" width="2" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="64" y="0" width="6" height="30" />
|
||||
<rect x="76" y="0" width="2" height="30" />
|
||||
<rect x="84" y="0" width="2" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
<rect x="104" y="0" width="6" height="30" />
|
||||
<rect x="112" y="0" width="2" height="30" />
|
||||
<rect x="116" y="0" width="2" height="30" />
|
||||
<rect x="120" y="0" width="6" height="30" />
|
||||
<rect x="128" y="0" width="6" height="30" />
|
||||
<rect x="136" y="0" width="2" height="30" />
|
||||
<rect x="140" y="0" width="2" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="2" height="30" />
|
||||
<rect x="160" y="0" width="2" height="30" />
|
||||
<rect x="164" y="0" width="6" height="30" />
|
||||
<rect x="176" y="0" width="2" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="184" y="0" width="6" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="200" y="0" width="2" height="30" />
|
||||
<rect x="208" y="0" width="2" height="30" />
|
||||
<rect x="212" y="0" width="2" height="30" />
|
||||
<rect x="216" y="0" width="6" height="30" />
|
||||
<rect x="224" y="0" width="2" height="30" />
|
||||
<rect x="228" y="0" width="2" height="30" />
|
||||
<rect x="232" y="0" width="2" height="30" />
|
||||
<rect x="236" y="0" width="2" height="30" />
|
||||
<rect x="244" y="0" width="2" height="30" />
|
||||
<rect x="252" y="0" width="2" height="30" />
|
||||
<rect x="256" y="0" width="6" height="30" />
|
||||
<rect x="264" y="0" width="2" height="30" />
|
||||
<rect x="272" y="0" width="2" height="30" />
|
||||
<rect x="276" y="0" width="2" height="30" />
|
||||
<rect x="284" y="0" width="2" height="30" />
|
||||
<rect x="288" y="0" width="2" height="30" />
|
||||
<rect x="292" y="0" width="6" height="30" />
|
||||
<rect x="300" y="0" width="2" height="30" />
|
||||
<rect x="304" y="0" width="2" height="30" />
|
||||
<rect x="308" y="0" width="2" height="30" />
|
||||
<rect x="312" y="0" width="6" height="30" />
|
||||
<rect x="320" y="0" width="6" height="30" />
|
||||
<rect x="328" y="0" width="6" height="30" />
|
||||
<rect x="336" y="0" width="2" height="30" />
|
||||
<rect x="340" y="0" width="2" height="30" />
|
||||
<rect x="344" y="0" width="6" height="30" />
|
||||
<rect x="352" y="0" width="2" height="30" />
|
||||
<rect x="356" y="0" width="6" height="30" />
|
||||
<rect x="364" y="0" width="6" height="30" />
|
||||
<rect x="372" y="0" width="6" height="30" />
|
||||
<rect x="384" y="0" width="2" height="30" />
|
||||
<rect x="388" y="0" width="2" height="30" />
|
||||
<rect x="392" y="0" width="6" height="30" />
|
||||
<rect x="400" y="0" width="2" height="30" />
|
||||
<rect x="404" y="0" width="6" height="30" />
|
||||
<rect x="416" y="0" width="2" height="30" />
|
||||
<rect x="420" y="0" width="2" height="30" />
|
||||
<rect x="424" y="0" width="6" height="30" />
|
||||
<rect x="432" y="0" width="6" height="30" />
|
||||
<rect x="440" y="0" width="2" height="30" />
|
||||
<rect x="444" y="0" width="2" height="30" />
|
||||
<rect x="448" y="0" width="6" height="30" />
|
||||
<rect x="456" y="0" width="2" height="30" />
|
||||
<rect x="460" y="0" width="6" height="30" />
|
||||
<rect x="468" y="0" width="6" height="30" />
|
||||
<rect x="480" y="0" width="6" height="30" />
|
||||
<rect x="488" y="0" width="2" height="30" />
|
||||
<rect x="496" y="0" width="2" height="30" />
|
||||
<rect x="500" y="0" width="2" height="30" />
|
||||
<rect x="508" y="0" width="2" height="30" />
|
||||
<rect x="512" y="0" width="6" height="30" />
|
||||
<rect x="524" y="0" width="2" height="30" />
|
||||
<rect x="528" y="0" width="2" height="30" />
|
||||
<rect x="532" y="0" width="2" height="30" />
|
||||
<rect x="536" y="0" width="2" height="30" />
|
||||
<rect x="540" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.3 KiB |
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="256" height="30" viewBox="0 0 256 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>1234567890</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="2" height="30" />
|
||||
<rect x="16" y="0" width="2" height="30" />
|
||||
<rect x="20" y="0" width="6" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="2" height="30" />
|
||||
<rect x="40" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="6" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="56" y="0" width="6" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="68" y="0" width="2" height="30" />
|
||||
<rect x="76" y="0" width="2" height="30" />
|
||||
<rect x="80" y="0" width="2" height="30" />
|
||||
<rect x="84" y="0" width="2" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
<rect x="104" y="0" width="6" height="30" />
|
||||
<rect x="112" y="0" width="2" height="30" />
|
||||
<rect x="116" y="0" width="6" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="132" y="0" width="6" height="30" />
|
||||
<rect x="140" y="0" width="2" height="30" />
|
||||
<rect x="144" y="0" width="2" height="30" />
|
||||
<rect x="152" y="0" width="2" height="30" />
|
||||
<rect x="160" y="0" width="2" height="30" />
|
||||
<rect x="164" y="0" width="6" height="30" />
|
||||
<rect x="176" y="0" width="2" height="30" />
|
||||
<rect x="180" y="0" width="2" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
<rect x="192" y="0" width="2" height="30" />
|
||||
<rect x="196" y="0" width="2" height="30" />
|
||||
<rect x="200" y="0" width="2" height="30" />
|
||||
<rect x="204" y="0" width="6" height="30" />
|
||||
<rect x="212" y="0" width="2" height="30" />
|
||||
<rect x="216" y="0" width="2" height="30" />
|
||||
<rect x="220" y="0" width="2" height="30" />
|
||||
<rect x="224" y="0" width="6" height="30" />
|
||||
<rect x="236" y="0" width="2" height="30" />
|
||||
<rect x="240" y="0" width="2" height="30" />
|
||||
<rect x="244" y="0" width="2" height="30" />
|
||||
<rect x="248" y="0" width="2" height="30" />
|
||||
<rect x="252" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="190" height="30" viewBox="0 0 190 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>0001234567895</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="12" y="0" width="4" height="30" />
|
||||
<rect x="18" y="0" width="2" height="30" />
|
||||
<rect x="26" y="0" width="4" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="38" y="0" width="4" height="30" />
|
||||
<rect x="46" y="0" width="2" height="30" />
|
||||
<rect x="52" y="0" width="2" height="30" />
|
||||
<rect x="58" y="0" width="4" height="30" />
|
||||
<rect x="64" y="0" width="8" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="78" y="0" width="2" height="30" />
|
||||
<rect x="86" y="0" width="4" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
<rect x="106" y="0" width="6" height="30" />
|
||||
<rect x="114" y="0" width="2" height="30" />
|
||||
<rect x="118" y="0" width="2" height="30" />
|
||||
<rect x="128" y="0" width="2" height="30" />
|
||||
<rect x="136" y="0" width="2" height="30" />
|
||||
<rect x="142" y="0" width="2" height="30" />
|
||||
<rect x="148" y="0" width="2" height="30" />
|
||||
<rect x="156" y="0" width="6" height="30" />
|
||||
<rect x="164" y="0" width="2" height="30" />
|
||||
<rect x="170" y="0" width="2" height="30" />
|
||||
<rect x="176" y="0" width="6" height="30" />
|
||||
<rect x="184" y="0" width="2" height="30" />
|
||||
<rect x="188" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="102" height="30" viewBox="0 0 102 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>012349</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="2" height="30" />
|
||||
<rect x="8" y="0" width="2" height="30" />
|
||||
<rect x="14" y="0" width="6" height="30" />
|
||||
<rect x="24" y="0" width="4" height="30" />
|
||||
<rect x="32" y="0" width="2" height="30" />
|
||||
<rect x="38" y="0" width="2" height="30" />
|
||||
<rect x="44" y="0" width="4" height="30" />
|
||||
<rect x="50" y="0" width="2" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="66" y="0" width="6" height="30" />
|
||||
<rect x="74" y="0" width="2" height="30" />
|
||||
<rect x="82" y="0" width="2" height="30" />
|
||||
<rect x="86" y="0" width="4" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
<rect x="96" y="0" width="2" height="30" />
|
||||
<rect x="100" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="40" height="30" viewBox="0 0 40 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>22</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="4" height="30" />
|
||||
<rect x="12" y="0" width="4" height="30" />
|
||||
<rect x="18" y="0" width="4" height="30" />
|
||||
<rect x="24" y="0" width="2" height="30" />
|
||||
<rect x="30" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="4" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 633 B |
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" standalone="no" ?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="94" height="30" viewBox="0 0 94 30" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<desc>1234567890abcABC-283*33</desc>
|
||||
<g id="bars" fill="rgb(0,0,0)" stroke="none">
|
||||
<rect x="0" y="0" width="2" height="30" />
|
||||
<rect x="4" y="0" width="4" height="30" />
|
||||
<rect x="10" y="0" width="4" height="30" />
|
||||
<rect x="18" y="0" width="4" height="30" />
|
||||
<rect x="24" y="0" width="2" height="30" />
|
||||
<rect x="30" y="0" width="2" height="30" />
|
||||
<rect x="36" y="0" width="4" height="30" />
|
||||
<rect x="42" y="0" width="2" height="30" />
|
||||
<rect x="46" y="0" width="2" height="30" />
|
||||
<rect x="56" y="0" width="2" height="30" />
|
||||
<rect x="60" y="0" width="2" height="30" />
|
||||
<rect x="64" y="0" width="2" height="30" />
|
||||
<rect x="72" y="0" width="4" height="30" />
|
||||
<rect x="78" y="0" width="2" height="30" />
|
||||
<rect x="82" y="0" width="4" height="30" />
|
||||
<rect x="92" y="0" width="2" height="30" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |