Initial commit

This commit is contained in:
Jānis Kacēns
2024-04-10 12:17:24 +03:00
parent 7ebb28f72a
commit 3889e684b4
152 changed files with 27501 additions and 0 deletions
@@ -0,0 +1,171 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.Net.Http.Headers;
using PosterMaker.Interfaces.Services;
using PosterMaker.Models;
using PosterMaker.Models.Enums;
namespace PosterMaker.Controllers;
[ApiController]
[Route("poster")]
public class MagickController : Controller
{
private readonly IMoviePosterMakerService _moviePosterMakerService;
private readonly ILogger<MagickController> _logger;
private readonly ICollectionPosterMakerService _collectionPosterMakerService;
private readonly ISeriesPosterMakerService _seriesPosterMakerService;
public MagickController(IMoviePosterMakerService moviePosterMakerService, ILogger<MagickController> logger,
ICollectionPosterMakerService collectionPosterMakerService, ISeriesPosterMakerService seriesPosterMakerService)
{
_moviePosterMakerService = moviePosterMakerService;
_logger = logger;
_collectionPosterMakerService = collectionPosterMakerService;
_seriesPosterMakerService = seriesPosterMakerService;
}
[HttpPost, DisableRequestSizeLimit]
[RequestFormLimits(MultipartBodyLengthLimit = 268435456)]
[Route("Movie")]
public IActionResult Movie([FromForm]IFormFile image,
[FromForm]string? topSubtitle,
[FromForm]string? title,
[FromForm]string? subtitle,
[FromForm]string? index,
[FromForm]string? title2,
[FromForm]MovieLogoEnum? logo,
[FromForm]LogoOptionEnum? logoOption)
{
_logger.LogInformation("Received information from FE: title: {Title}, title2: {Title2}, subtitle: {Subtitle}, index: {Index}, topSubtitle: {TopSubtitle}", title, title2, subtitle, index, topSubtitle);
var imageProperties = new ImageProperties
{
Title = string.IsNullOrEmpty(title) || title == "undefined" ? "" : title,
Subtitle = string.IsNullOrEmpty(subtitle) || subtitle == "undefined" ? "" : subtitle,
TopSubtitle = string.IsNullOrEmpty(topSubtitle) || topSubtitle == "undefined" ? "" : topSubtitle,
Index = string.IsNullOrEmpty(index) || index == "undefined" ? "" : index,
Title2 = string.IsNullOrEmpty(title2) || title2 == "undefined" ? "" : title2,
Logo = logo,
LogoOption = logoOption
};
try
{
var folderName = Path.Combine("Resources", "Uploads");
var pathToSave = Path.Combine(Directory.GetCurrentDirectory(), folderName);
if (image.Length <= 0) return BadRequest();
var fileName = ContentDispositionHeaderValue.Parse(image.ContentDisposition).FileName.ToString();
var fullPath = Path.Combine(pathToSave, fileName);
var dbPath = Path.Combine(folderName, fileName);
using (var stream = new FileStream(fullPath, FileMode.Create))
{
image.CopyTo(stream);
}
var response = _moviePosterMakerService.CreatePoster(dbPath, imageProperties);
return Ok(new FileUploadResponse{PicBytes = Convert.ToBase64String(response)});
}
catch (Exception ex)
{
_logger.LogError("Unhandled error", ex);
return StatusCode(500, $"Internal server error: {ex}");
}
}
[HttpPost, DisableRequestSizeLimit]
[RequestFormLimits(MultipartBodyLengthLimit = 268435456)]
[Route("Collection")]
public IActionResult Collection([FromForm]IFormFile image,
[FromForm]string? title,
[FromForm]string? title2,
[FromForm]MovieLogoEnum? logo,
[FromForm]LogoOptionEnum? logoOption)
{
_logger.LogInformation("Received information from FE: title: {Title}", title);
var imageProperties = new ImageProperties
{
Title = string.IsNullOrEmpty(title) || title == "undefined" ? "" : title,
Title2 = string.IsNullOrEmpty(title2) || title2 == "undefined" ? "" : title2,
Logo = logo,
LogoOption = logoOption
};
try
{
var folderName = Path.Combine("Resources", "Uploads");
var pathToSave = Path.Combine(Directory.GetCurrentDirectory(), folderName);
if (image.Length <= 0) return BadRequest();
var fileName = ContentDispositionHeaderValue.Parse(image.ContentDisposition).FileName.ToString();
var fullPath = Path.Combine(pathToSave, fileName);
var dbPath = Path.Combine(folderName, fileName);
using (var stream = new FileStream(fullPath, FileMode.Create))
{
image.CopyTo(stream);
}
var response = _collectionPosterMakerService.CreatePoster(dbPath, imageProperties);
return Ok(new FileUploadResponse{PicBytes = Convert.ToBase64String(response)});
}
catch (Exception ex)
{
_logger.LogError("Unhandled error", ex);
return StatusCode(500, $"Internal server error: {ex}");
}
}
[HttpPost, DisableRequestSizeLimit]
[RequestFormLimits(MultipartBodyLengthLimit = 268435456)]
[Route("Series")]
public IActionResult Series([FromForm]IFormFile image,
[FromForm]string? title,
[FromForm]string? title2,
[FromForm]string? season,
[FromForm]string? subtitle,
[FromForm]string? topSubtitle,
[FromForm]MovieLogoEnum? logo,
[FromForm]LogoOptionEnum? logoOption,
[FromForm]NetworkLogoEnum? networkLogo,
[FromForm]bool? limitedSeries)
{
_logger.LogInformation("Received information from FE: title: {Title}", title);
var imageProperties = new ImageProperties
{
Title = string.IsNullOrEmpty(title) || title == "undefined" ? "" : title,
Title2 = string.IsNullOrEmpty(title2) || title2 == "undefined" ? "" : title2,
Logo = logo,
LogoOption = logoOption,
NetworkLogo = networkLogo,
Season = string.IsNullOrEmpty(season) || season == "undefined" ? "" : season,
Subtitle = string.IsNullOrEmpty(subtitle) || subtitle == "undefined" ? "" : subtitle,
TopSubtitle = string.IsNullOrEmpty(topSubtitle) || topSubtitle == "undefined" ? "" : topSubtitle,
LimitedSeries = limitedSeries
};
try
{
var folderName = Path.Combine("Resources", "Uploads");
var pathToSave = Path.Combine(Directory.GetCurrentDirectory(), folderName);
if (image.Length <= 0) return BadRequest();
var fileName = ContentDispositionHeaderValue.Parse(image.ContentDisposition).FileName.ToString();
var fullPath = Path.Combine(pathToSave, fileName);
var dbPath = Path.Combine(folderName, fileName);
using (var stream = new FileStream(fullPath, FileMode.Create))
{
image.CopyTo(stream);
}
var response = _seriesPosterMakerService.CreatePoster(dbPath, imageProperties);
return Ok(new FileUploadResponse{PicBytes = Convert.ToBase64String(response)});
}
catch (Exception ex)
{
_logger.LogError("Unhandled error", ex);
return StatusCode(500, $"Internal server error: {ex}");
}
}
}
+20
View File
@@ -0,0 +1,20 @@
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /build
ENV ASPNETCORE_URLS=http://+:80
EXPOSE 80
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY ["PosterMaker.Core/PosterMaker.Core.csproj", "PosterMaker.Core/"]
RUN dotnet restore "PosterMaker.Core/PosterMaker.Core.csproj"
COPY . .
WORKDIR "/src/PosterMaker.Core"
RUN dotnet build "PosterMaker.Core.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "PosterMaker.Core.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "PosterMaker.Core.dll"]
@@ -0,0 +1,8 @@
using PosterMaker.Models;
namespace PosterMaker.Interfaces.Services;
public interface ICollectionPosterMakerService
{
byte[] CreatePoster(string file, ImageProperties imageProperties);
}
@@ -0,0 +1,32 @@
using ImageMagick;
using PosterMaker.Models.Enums;
namespace PosterMaker.Interfaces.Services;
public interface IMovieLogoService
{
/// <summary>
///
/// </summary>
/// <param name="logo"></param>
/// <returns></returns>
byte[]? GetMovieLogo(MovieLogoEnum? logo);
/// <summary>
///
/// </summary>
/// <param name="imagePropertiesLogo"></param>
/// <returns></returns>
Gravity GetLogoGravity(MovieLogoEnum? imagePropertiesLogo);
/// <summary>
///
/// </summary>
/// <param name="logo"></param>
/// <returns></returns>
byte[]? GetNetworkLogo(NetworkLogoEnum? logo);
int GetNetworkLogoHeight(NetworkLogoEnum? logo);
MagickGeometry GetLogoGeometry(MovieLogoEnum? logoEnum);
}
@@ -0,0 +1,9 @@
using PosterMaker.Models;
namespace PosterMaker.Interfaces.Services
{
public interface IMoviePosterMakerService
{
byte[] CreatePoster(string file, ImageProperties imageProperties);
}
}
@@ -0,0 +1,8 @@
using PosterMaker.Models;
namespace PosterMaker.Interfaces.Services;
public interface ISeriesPosterMakerService
{
byte[] CreatePoster(string file, ImageProperties imageProperties);
}
@@ -0,0 +1,8 @@
namespace PosterMaker.Models.Enums;
public enum LogoOptionEnum
{
None,
White,
Black
}
@@ -0,0 +1,12 @@
namespace PosterMaker.Models.Enums;
public enum MovieLogoEnum
{
Disney,
DC,
SonyPicturesAnimation,
MarvelStudios,
A24,
Dreamworks,
DisneyPixar
}
@@ -0,0 +1,29 @@
namespace PosterMaker.Models.Enums;
public enum NetworkLogoEnum
{
Netflix,
DisneyPlus,
AppleTv,
Hbo,
Fxx,
Cbs,
Peacock,
AmazonPrimeVideo,
Nbc,
Amc,
Starz,
Hulu,
Cw,
ParamountPlus,
ComedyCentral,
Abc,
Bbc,
Usa,
Tbs,
Fx,
AdultSwim,
Max,
Mtv,
ChannelFour
}
@@ -0,0 +1,6 @@
namespace PosterMaker.Models;
public class FileUploadResponse
{
public string? PicBytes { get; set; }
}
@@ -0,0 +1,17 @@
using PosterMaker.Models.Enums;
namespace PosterMaker.Models;
public struct ImageProperties
{
public string? Title { get; init; }
public string? Title2 { get; init; }
public string? Subtitle { get; init; }
public string? TopSubtitle { get; init; }
public string? Index { get; init; }
public MovieLogoEnum? Logo { get; init; }
public LogoOptionEnum? LogoOption { get; init; }
public NetworkLogoEnum? NetworkLogo { get; init; }
public string? Season { get; init; }
public bool? LimitedSeries { get; init; }
}
+33
View File
@@ -0,0 +1,33 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>PosterMaker</RootNamespace>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Magick.NET-Q8-AnyCPU" Version="13.6.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.2" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" />
<PackageReference Include="Serilog.Sinks.Seq" Version="6.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Controllers\" />
<Folder Include="Resources\Collections\" />
<Folder Include="Resources\Logos\Network\" />
<Folder Include="Resources\Movies\" />
<Folder Include="Resources\Uploads\" />
</ItemGroup>
<ItemGroup>
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
</ItemGroup>
</Project>
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ActiveDebugProfile>https</ActiveDebugProfile>
</PropertyGroup>
</Project>
+50
View File
@@ -0,0 +1,50 @@
using PosterMaker.Interfaces.Services;
using PosterMaker.Services;
using Serilog;
var builder = WebApplication.CreateBuilder(args);
var logger = new LoggerConfiguration()
.ReadFrom.Configuration(builder.Configuration)
.Enrich.FromLogContext()
.WriteTo.Seq("http://localhost:5341")
.CreateLogger();
builder.Logging.ClearProviders();
builder.Logging.AddSerilog(logger);
// Add services to the container.
builder.Services.AddCors(options =>
{
options.AddPolicy("DisableCORS",
corsPolicyBuilder =>
{
corsPolicyBuilder.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader();
});
});
builder.Services.AddControllers();
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
builder.Services.AddTransient<IMoviePosterMakerService, MoviePosterMakerService>();
builder.Services.AddTransient<IMovieLogoService, MovieLogoService>();
builder.Services.AddTransient<ICollectionPosterMakerService, CollectionPosterMakerService>();
builder.Services.AddTransient<ISeriesPosterMakerService, SeriesPosterMakerService>();
var app = builder.Build();
app.UseCors("DisableCORS");
if (app.Environment.IsDevelopment())
{
app.UseSwagger();
app.UseSwaggerUI();
}
app.UseHttpsRedirection();
app.UseAuthorization();
app.MapControllers();
app.Run();
@@ -0,0 +1,41 @@
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:1383",
"sslPort": 44369
}
},
"profiles": {
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:5168",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "https://localhost:7079;http://localhost:5168",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

@@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
version="1.1"
x="0px"
y="0px"
width="1000"
height="1000"
viewBox="0 0 1000 1000"
enable-background="new 0 0 91.026 30.223"
xml:space="preserve"
id="svg2"
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)"
sodipodi:docname="ABC-2021-LOGO.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"><metadata
id="metadata34"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs32">
<clipPath
id="clip1"><path
d="M 0,0 H 977.82031 V 977.82031 H 0 Z m 0,0"
id="path2" /></clipPath></defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="705"
id="namedview30"
showgrid="false"
inkscape:zoom="0.5"
inkscape:cx="527"
inkscape:cy="507"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg2"
inkscape:document-rotation="0"
inkscape:pagecheckerboard="0" />
<g
id="surface1"
transform="scale(1.0226828)"><g
clip-path="url(#clip1)"
clip-rule="nonzero"
id="g9"><path
style="fill:#07111e;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 488.90625,0 C 218.89062,0 0,218.89453 0,488.91406 c 0,270.01172 218.89062,488.90625 488.90625,488.90625 270.01953,0 488.91406,-218.89453 488.91406,-488.90625 C 977.82031,218.89453 758.92578,0 488.90625,0"
id="path7" /></g><path
style="fill:#f0f0f0;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="m 775.97656,354.91016 c -74.09765,0 -134.16797,60.07031 -134.16797,134.16796 0,74.09766 60.07032,134.16797 134.16797,134.16797 67.12891,-0.0781 123.875,-49.76562 132.8086,-116.28515 h -76.57032 c -7.58203,23.85156 -29.88672,41.1289 -56.23828,41.1289 -32.58984,0 -59,-26.42187 -59,-59 0,-32.58984 26.42188,-59 59,-59.01172 26.35156,0 48.66797,17.27735 56.23828,41.12891 h 76.58203 C 899.85156,404.66406 843.10547,354.98828 775.97656,354.91016 M 201.21484,548.07812 c -32.58984,0 -59,-26.42187 -59,-59.01171 0,-32.58985 26.42188,-59 59,-59 32.58985,0 59,26.42187 59,59 0,32.60156 -26.42187,59.01171 -59,59.01171 m 134.16797,72.89844 V 489.07812 c 0,-74.09765 -60.07031,-134.16796 -134.16797,-134.16796 -74.09765,0 -134.167965,60.07031 -134.167965,134.16796 0,74.09766 60.070315,134.16797 134.167965,134.16797 21.86328,-0.0351 44.52735,-9.32031 60.5,-24.76562 v 22.49609 z M 488.30078,430.07812 c 32.58984,0 59,26.42188 59,59.01172 0,32.59375 -26.42187,59 -59,59 -32.58984,0 -59,-26.42187 -59,-59 0,-32.60156 26.41016,-59.01172 59,-59.01172 M 354.13281,288.87891 v 200.19921 c 0,74.09766 60.07031,134.16797 134.16797,134.16797 74.10547,0 134.16797,-60.07031 134.16797,-134.16797 0,-74.09765 -60.0625,-134.16796 -134.16797,-134.16796 -20.45703,0.0312 -41.63672,6.54296 -59,18.30859 v -84.33984 z m 0,0"
id="path11" /></g></svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

@@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="221"
height="125"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.91 r13725"
version="1.0"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docname="AMC_logo_2008.svg">
<metadata
id="metadata16">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs14" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1366"
inkscape:window-height="709"
id="namedview12"
showgrid="false"
inkscape:zoom="1.6108597"
inkscape:cx="99.636236"
inkscape:cy="62.5"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-124.24576,-766.40339)">
<g
id="g2411"
transform="matrix(7.3665737,0,0,7.3665737,-791.0189,-5675.1775)"
style="fill:#ff0000">
<g
id="g146919"
transform="matrix(1.0330919,0,0,-1.0330919,140.58752,879.41646)"
style="fill:#ff0000">
<path
id="path146921"
d="M 0,0 C 0,0 -1.148,-4.311 -1.244,-4.771 L -2.496,0 L -4.865,0 L -4.865,-6.618 L -3.314,-6.618 L -3.314,-1.751 L -1.957,-6.618 L -0.527,-6.618 C -0.527,-6.618 0.795,-1.904 0.828,-1.762 L 0.828,-6.618 L 2.385,-6.618 L 2.385,0 L 0,0 z "
style="fill:#000000;fill-rule:nonzero;stroke:none" />
</g>
<g
id="g146923"
transform="matrix(1.0330919,0,0,-1.0330919,133.08346,883.64366)"
style="fill:#ff0000">
<path
id="path146925"
d="M 0,0 C 0,-0.196 0,-0.39 -0.092,-0.585 C -0.262,-0.976 -0.824,-1.341 -1.621,-1.341 C -2.248,-1.341 -2.68,-1.081 -2.68,-0.572 C -2.68,0.116 -2.031,0.271 -1.469,0.342 C -0.762,0.429 0,0.455 0,0.455 L 0,0 z M 1.568,-1.47 L 1.568,1.979 C 1.568,2.682 1.555,3.294 0.783,3.762 C 0.209,4.101 -0.549,4.179 -1.178,4.179 C -1.596,4.179 -3.15,4.179 -3.779,3.046 C -3.982,2.677 -4.012,2.408 -4.039,2.093 L -4.039,2.091 L -2.432,2.093 C -2.43,2.238 -2.41,2.387 -2.275,2.552 C -2.117,2.76 -1.766,2.968 -1.111,2.968 C 0.178,2.968 -0.012,1.674 -0.012,1.674 C -0.012,1.674 -0.656,1.666 -2.027,1.497 C -2.66,1.419 -3.66,1.172 -4.131,0.235 C -4.264,-0.027 -4.342,-0.326 -4.342,-0.65 C -4.342,-1.77 -3.451,-2.682 -1.975,-2.682 C -1.074,-2.682 -0.379,-2.304 -0.041,-2.018 C -0.041,-2.109 -0.014,-2.37 0,-2.526 L 1.596,-2.526 C 1.568,-1.47 1.568,-1.965 1.568,-1.47"
style="fill:#000000;fill-rule:nonzero;stroke:none" />
</g>
<g
id="g146927"
transform="matrix(1.0330919,0,0,-1.0330919,150.16574,883.59784)"
style="fill:#ff0000">
<path
id="path146929"
d="M 0,0 L -1.521,-0.002 C -1.568,-0.185 -1.885,-1.379 -3.07,-1.379 C -3.086,-1.379 -3.275,-1.379 -3.295,-1.378 C -4.166,-1.351 -4.879,-0.629 -4.879,0.795 C -4.879,1.888 -4.33,2.87 -3.281,2.895 L -3.07,2.895 C -1.986,2.895 -1.605,1.765 -1.582,1.696 L -0.064,1.691 C -0.359,3.102 -1.467,4.254 -3.145,4.254 C -5.027,4.254 -6.365,2.707 -6.365,0.748 C -6.365,-1.493 -4.943,-2.766 -3.184,-2.766 C -1.223,-2.766 -0.207,-1.273 0,0"
style="fill:#000000;fill-rule:nonzero;stroke:none" />
</g>
<path
id="path146931"
d="M 152.75278,889.94049 L 125.76533,889.94049 L 125.76533,875.89457 L 152.75278,875.89457 L 152.75278,889.94049 z M 124.24564,891.40232 L 154.24564,891.40232 L 154.24564,874.43378 L 124.24564,874.43378 L 124.24564,891.40232 z "
style="fill:#000000;fill-rule:nonzero;stroke:none" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

@@ -0,0 +1,178 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="660"
height="122"
id="svg2"
version="1.1"
inkscape:version="0.92.2 (5c3e80d, 2017-08-06)"
sodipodi:docname="Adult_Swim_2003_logo.svg">
<metadata
id="metadata34">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs32" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1028"
id="namedview30"
showgrid="false"
inkscape:zoom="8.0461095"
inkscape:cx="699.30185"
inkscape:cy="3.2732695"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(98.1395,283.56298)">
<path
id="path3046"
d="m -40.084636,-236.75949 c 0.144128,-6.31282 1.892884,-9.96407 7.965488,-9.96407 4.868333,0 6.866911,2.86014 6.866911,7.27047 0,5.55374 -1.207474,6.61388 -7.802143,8.36264 -6.072604,1.62064 -14.163004,2.96264 -19.572618,5.94769 -5.387194,2.96584 -8.903924,10.09859 -8.903924,18.63739 0,15.74841 7.155168,22.24059 19.42849,22.24059 7.299296,0 14.166207,-3.77616 17.141655,-10.25873 h 0.291459 c 0.08327,2.84093 0.374734,5.81638 1.185055,8.36264 h 21.0299145 c -2.5398602,-3.22206 -2.5398602,-10.26513 -2.5398602,-15.77724 v -37.51498 c 0,-15.36407 -7.9654883,-21.56159 -25.9174643,-21.56159 -9.028835,0 -15.245567,1.20427 -20.344505,4.69218 -5.137372,3.51352 -8.0904,9.59894 -8.237731,19.56301 z m -0.393951,28.08259 c 0,-4.06762 1.079361,-6.36727 3.369399,-8.08079 2.017795,-1.62385 4.99004,-1.76798 11.856951,-5.41923 0,2.96264 -0.102491,6.77083 -0.102491,12.82422 0,7.26086 -4.205342,9.98328 -8.779012,9.98328 -4.058012,0 -6.344847,-3.50392 -6.344847,-9.30748"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3048"
d="m 41.123632,-186.16087 h 21.052335 v -96.32251 H 40.313311 v 31.30786 h -0.272242 c -3.616018,-7.84058 -10.252324,-9.83916 -16.305711,-9.83916 -17.9519756,0 -21.1548259,16.30891 -21.1548259,38.98189 0,27.24024 7.7989409,37.76801 22.5064289,37.76801 9.691825,0 14.166207,-5.79716 15.767632,-10.80962 h 0.269039 z m -0.39395,-36.01605 c 0,14.1534 -1.374023,21.98437 -7.821361,21.98437 -8.237731,0 -8.52919,-11.17795 -8.52919,-22.9196 0,-13.24058 0.416371,-22.00038 8.381859,-22.00038 7.42741,0 7.968692,9.97368 7.968692,22.93561"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3050"
d="m 129.74009,-186.16087 h -21.02991 v -8.63168 h -0.27224 c -3.09716,6.47937 -9.442007,10.52777 -17.513189,10.52777 -12.439871,0 -19.053756,-6.20072 -19.053756,-20.25162 v -54.615 h 21.859453 v 49.7787 c 0,5.25267 2.309255,8.33061 6.344842,8.33061 4.16371,0 7.82457,-3.21246 7.82457,-10.34841 v -47.7609 h 21.84023 z"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3052"
d="m 139.99562,-282.48338 h 21.86266 v 96.32251 h -21.86266 z"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3054"
d="m 177.37609,-244.02996 h -9.04806 v -15.10144 h 9.04806 v -21.44629 h 21.86265 v 21.44629 h 10.1082 v 15.10144 h -10.1082 v 36.83918 c 0,5.09894 1.87367,6.71958 7.00784,6.71958 0.93523,0 2.16512,-0.12491 3.10036,-0.24982 v 14.56015 c -4.17972,0.54129 -8.38186,0.81033 -12.54557,0.81033 -15.09823,0 -19.42528,-2.6904 -19.42528,-19.69753 z"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3056"
d="m 254.75695,-209.3527 c 0.16655,3.24448 0.41637,6.0726 1.49573,8.23452 1.22989,2.03061 3.22847,3.3726 6.76442,3.3726 5.11495,0 7.81816,-3.27651 7.81816,-7.4274 0,-3.37901 -1.62065,-6.60428 -8.36265,-8.90073 -17.95197,-6.05659 -26.58045,-9.57011 -26.58045,-24.9534 0,-14.57297 10.25232,-21.98757 27.80715,-21.98757 20.48863,0 26.44273,9.96407 26.44273,20.49184 v 2.45338 h -19.44771 v -1.38363 c 0,-6.31282 -2.56228,-8.05197 -7.15837,-8.05197 -5.80356,0 -7.42421,2.79929 -7.42421,6.70997 0,12.94913 34.9463,4.34627 34.9463,32.66908 0,14.68507 -9.86157,23.86123 -27.89682,23.86123 -19.57582,0 -27.81035,-7.28008 -27.81035,-21.84344 v -3.24448 z"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3058"
d="m 293.61393,-259.1314 h 21.84023 l 7.05268,53.81429 h 0.24982 l 8.21851,-53.81429 h 23.4833 l 7.69645,53.81429 h 0.24982 l 7.72208,-53.81429 h 21.02671 l -15.76763,72.97053 h -24.69078 l -7.94627,-53.8335 h -0.26904 l -8.52919,53.8335 h -25.0655 z"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3060"
d="m 397.62329,-283.56274 h 21.88187 v 16.73489 h -21.88187 z m 0,24.43134 h 21.88187 v 72.97053 h -21.88187 z"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3062"
d="m 429.46923,-259.1314 h 21.02991 v 8.62207 h 0.29146 c 3.08114,-6.49218 9.44521,-10.50535 17.51639,-10.50535 6.34164,0 14.7267,1.20427 17.94877,11.18115 5.163,-8.47794 9.98649,-11.18115 18.09931,-11.18115 12.39823,0 18.9929,6.19752 18.9929,20.21959 v 54.63422 h -21.86266 v -49.77869 c 0,-5.25268 -2.26761,-8.35944 -6.32563,-8.35944 -4.17971,0 -7.84057,3.25409 -7.84057,10.39965 v 47.73848 h -21.84344 v -49.77869 c 0,-5.25268 -2.28363,-8.35944 -6.34485,-8.35944 -4.1605,0 -7.81816,3.25409 -7.81816,10.39965 v 47.73848 h -21.84343 z"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3064"
d="m -98.1395,-282.66915 h 34.132775 v 15.11105 h -13.913181 v 90.90329 h 13.913181 v 15.09183 H -98.1395 Z"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3066"
d="m 528.31879,-176.65481 h 13.89397 v -90.90329 h -13.89397 v -15.11105 h 34.09434 v 121.10617 h -34.09434 z"
style="fill:#221e1f;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3068"
d="m 579.99038,216.24524 v 1.75837 h -5.09574 v 13.27261 h -2.06263 v -13.27261 h -5.09574 v -1.75837 z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3070"
d="m 581.38041,216.24524 h 2.9146 l 4.39111,12.72172 4.25979,-12.72172 h 2.91459 v 15.03098 h -1.93132 v -8.81745 c 0,-0.36192 0,-0.86157 0.0384,-1.61103 v -2.26762 l -4.30464,12.6961 h -2.01779 l -4.42954,-12.6961 v 0.4452 c 0,0.35231 0.0416,0.94804 0.0801,1.6943 v 1.73915 8.81745 h -1.91531 z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3072"
d="m -40.084636,156.15336 c 0.144128,-6.31602 1.892884,-9.96406 7.965488,-9.96406 4.868333,0 6.866911,2.86014 6.866911,7.26726 0,5.55695 -1.207474,6.61709 -7.802143,8.36585 -6.072604,1.62384 -14.163004,2.96264 -19.572618,5.94769 -5.387194,2.96584 -8.903924,10.09859 -8.903924,18.64059 0,15.74521 7.155168,22.23419 19.42849,22.23419 7.299296,0 14.166207,-3.77616 17.141655,-10.25553 h 0.291459 c 0.08327,2.84413 0.374734,5.81638 1.185055,8.36264 h 21.0299145 c -2.5398602,-3.22527 -2.5398602,-10.26513 -2.5398602,-15.77724 v -37.51819 c 0,-15.35766 -7.9654883,-21.55838 -25.9174643,-21.55838 -9.028835,0 -15.245567,1.20427 -20.344505,4.69218 -5.137372,3.51672 -8.0904,9.59894 -8.237731,19.563 z m -0.393951,28.0858 c 0,-4.07082 1.079361,-6.37047 3.369399,-8.084 2.017795,-1.62384 4.99004,-1.76797 11.856951,-5.41922 0,2.96264 -0.102491,6.77083 -0.102491,12.82101 0,7.26407 -4.205342,9.98649 -8.779012,9.98649 -4.058012,0 -6.344847,-3.50392 -6.344847,-9.30428"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3074"
d="M 41.123632,206.75199 H 62.175967 V 110.42947 H 40.313311 v 31.30466 h -0.272242 c -3.616018,-7.84057 -10.252324,-9.83595 -16.305711,-9.83595 -17.9519756,0 -21.1548259,16.30891 -21.1548259,38.98509 0,27.24024 7.7989409,37.76161 22.5064289,37.76161 9.691825,0 14.166207,-5.79076 15.767632,-10.80642 h 0.269039 z m -0.39395,-36.01605 c 0,14.1534 -1.374023,21.98437 -7.821361,21.98437 -8.237731,0 -8.52919,-11.17795 -8.52919,-22.9228 0,-13.24059 0.416371,-21.99718 8.381859,-21.99718 7.42741,0 7.968692,9.97368 7.968692,22.93561"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3076"
d="m 129.74009,206.75199 h -21.02991 v -8.62848 h -0.27224 c -3.09716,6.47617 -9.442007,10.52137 -17.513189,10.52137 -12.439871,0 -19.053756,-6.19752 -19.053756,-20.25162 v -54.6118 h 21.859453 v 49.77549 c 0,5.25588 2.309255,8.33382 6.344842,8.33382 4.16371,0 7.82457,-3.21246 7.82457,-10.34841 v -47.7609 h 21.84023 z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3078"
d="m 139.99562,110.42947 h 21.86266 v 96.32252 h -21.86266 z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3080"
d="m 177.37609,148.88289 h -9.04806 v -15.10143 h 9.04806 v -21.44629 h 21.86265 v 21.44629 h 10.1082 v 15.10143 h -10.1082 v 36.83919 c 0,5.09894 1.87367,6.71958 7.00784,6.71958 0.93523,0 2.16512,-0.12491 3.10036,-0.24982 v 14.56015 c -4.17972,0.53808 -8.38186,0.81353 -12.54557,0.81353 -15.09823,0 -19.42528,-2.6968 -19.42528,-19.70074 z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3082"
d="m 254.75695,183.55695 c 0.16655,3.24769 0.41637,6.07581 1.49573,8.24093 1.22989,2.02741 3.22847,3.3694 6.76442,3.3694 5.11495,0 7.81816,-3.27651 7.81816,-7.42741 0,-3.38221 -1.62065,-6.60427 -8.36265,-8.90392 -17.95197,-6.05018 -26.58045,-9.56691 -26.58045,-24.9502 0,-14.56977 10.25232,-21.98757 27.80715,-21.98757 20.48863,0 26.44273,9.96407 26.44273,20.48863 v 2.45659 h -19.44771 v -1.38684 c 0,-6.30961 -2.56228,-8.04876 -7.15837,-8.04876 -5.80356,0 -7.42421,2.79929 -7.42421,6.70677 0,12.95233 34.9463,4.34947 34.9463,32.67228 0,14.68506 -9.86157,23.85803 -27.89682,23.85803 -19.57582,0 -27.81035,-7.28008 -27.81035,-21.84024 v -3.24769 z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3084"
d="m 293.61393,133.78146 h 21.84023 l 7.05268,53.81108 h 0.24982 l 8.21851,-53.81108 h 23.4833 l 7.69645,53.81108 h 0.24982 l 7.72208,-53.81108 h 21.02671 l -15.76763,72.97053 h -24.69078 l -7.94627,-53.8335 h -0.26904 l -8.52919,53.8335 h -25.0655 z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3086"
d="m 397.62329,109.35011 h 21.88187 v 16.7349 h -21.88187 z m 0,24.43135 h 21.88187 v 72.97053 h -21.88187 z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3088"
d="m 429.46923,133.78146 h 21.02991 v 8.61887 h 0.29146 c 3.08114,-6.48898 9.44521,-10.50215 17.51639,-10.50215 6.34164,0 14.7267,1.20427 17.94877,11.18115 5.163,-8.47794 9.98649,-11.18115 18.09931,-11.18115 12.39823,0 18.9929,6.20072 18.9929,20.21639 v 54.63742 h -21.86266 v -49.7787 c 0,-5.24947 -2.26761,-8.36264 -6.32563,-8.36264 -4.17971,0 -7.84057,3.2605 -7.84057,10.40286 v 47.73848 h -21.84344 v -49.7787 c 0,-5.24947 -2.28363,-8.36264 -6.34485,-8.36264 -4.1605,0 -7.81816,3.2605 -7.81816,10.40286 v 47.73848 h -21.84343 z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3090"
d="m -98.1395,110.24691 h 34.132775 v 15.10785 h -13.913181 v 90.90329 h 13.913181 v 15.08863 H -98.1395 Z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
<path
id="path3092"
d="m 528.31879,216.25805 h 13.89397 v -90.90329 h -13.89397 v -15.10785 h 34.09434 v 121.09977 h -34.09434 z"
style="fill:#ffffff;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45.046 17.091"><defs><style>.a{fill:#333;}</style></defs><title>TV+</title><path class="a" d="M9.436,2.742A3.857,3.857,0,0,0,10.316,0a3.769,3.769,0,0,0-2.51,1.311,3.622,3.622,0,0,0-.9,2.631,3.138,3.138,0,0,0,2.53-1.2m.82,1.381c-1.4-.081-2.58.8-3.25.8s-1.69-.756-2.79-.736a4.117,4.117,0,0,0-3.5,2.147c-1.5,2.6-.4,6.473,1.06,8.59.71,1.006,1.56,2.205,2.69,2.166s1.48-.7,2.77-.7,1.67.7,2.79.675,1.9-1.008,2.6-2.1a9.317,9.317,0,0,0,1.17-2.42,3.814,3.814,0,0,1-2.27-3.468,3.9,3.9,0,0,1,1.83-3.256,3.991,3.991,0,0,0-3.1-1.7m8.93-2.016V4.96h2.28V6.845h-2.28V13.6c0,1.008.45,1.522,1.45,1.522a7.482,7.482,0,0,0,.82-.06v1.9a7.823,7.823,0,0,1-1.35.1c-2.36,0-3.27-.917-3.27-3.216V6.89h-1.79V5h1.74V2.107Zm10.25,14.853h-2.5L22.736,5h2.49l2.95,9.608h.06L31.186,5h2.44Zm10.98,0h-2.16v-4.9h-4.64V9.9h4.63V5h2.16V9.9h4.64v2.158h-4.63Z"/></svg>

After

Width:  |  Height:  |  Size: 878 B

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="560" height="160" fill="none" version="1.1" viewBox="0 0 560 160" xmlns="http://www.w3.org/2000/svg">
<g fill="#000">
<path d="m45 35h33.8c9.95 0 17.7 1.99 23.1 5.98 5.46 3.99 8.2 9.71 8.2 17.2 0 4.28-0.979 7.99-2.94 11.1-1.96 3.15-4.85 5.64-8.69 7.49 5.3 1.76 9.36 4.55 12.2 8.37 2.82 3.82 4.22 8.46 4.22 13.9 0 5.37-1.37 9.99-4.1 13.8-2.73 3.86-6.63 6.84-11.7 8.94-5.06 2.1-11.1 3.15-18.2 3.15h-35.9zm-45 125h160v-160h-160zm77.1-110c9.71 0 14.6 3.57 14.6 10.7 0 3.69-1.24 6.57-3.73 8.62-2.49 2.06-6.1 3.08-10.8 3.08h-13.8v-22.4zm2.32 36.5h-16.2v24.3h15.9c5.46 0 9.67-1.03 12.6-3.08 2.94-2.06 4.41-5.01 4.41-8.87 0-8.22-5.59-12.3-16.8-12.3z"/>
<path d="m245 35h33.8c9.95 0 17.7 1.99 23.1 5.98 5.46 3.99 8.2 9.71 8.2 17.2 0 4.28-0.979 7.99-2.94 11.1-1.96 3.15-4.86 5.64-8.69 7.49 5.3 1.76 9.36 4.55 12.2 8.37 2.82 3.82 4.22 8.46 4.22 13.9 0 5.37-1.37 9.99-4.1 13.8-2.73 3.86-6.63 6.84-11.7 8.94-5.06 2.1-11.1 3.15-18.2 3.15h-35.9zm-45 125h160v-160h-160zm77.1-110c9.71 0 14.6 3.57 14.6 10.7 0 3.69-1.24 6.57-3.73 8.62-2.49 2.06-6.1 3.08-10.8 3.08h-13.8v-22.4zm2.32 36.5h-16.2v24.3h15.9c5.46 0 9.67-1.03 12.6-3.08 2.94-2.06 4.41-5.01 4.41-8.87 0-8.22-5.59-12.3-16.8-12.3z"/>
<path d="m502 124c4.91-1.19 9.23-2.82 13-4.87v-17.1c-7.87 4.85-16.5 7.28-25.8 7.28-6.1 0-11.3-1.15-15.6-3.45-4.28-2.3-7.54-5.65-9.78-10.1-2.25-4.4-3.37-9.73-3.37-16 0-6.25 1.16-11.6 3.49-15.9 2.33-4.36 5.67-7.69 10-9.99 4.36-2.3 9.63-3.45 15.8-3.45 4.49 0 8.77 0.598 12.8 1.79 4.06 1.19 7.83 2.94 11.3 5.24v-17.5c-3.81-1.97-7.94-3.47-12.4-4.5-4.45-1.03-9.17-1.54-14.2-1.54-7.2 0-13.7 1.07-19.5 3.21s-10.8 5.22-14.9 9.25c-4.15 4.03-7.33 8.86-9.53 14.5-2.2 5.63-3.3 11.9-3.3 18.9 0 7.16 1.06 13.6 3.18 19.3 2.12 5.72 5.16 10.5 9.15 14.5 3.98 3.95 8.85 6.97 14.6 9.07 5.76 2.1 12.2 3.15 19.4 3.15 5.42 0 10.6-0.598 15.5-1.79zm58 35.8h-160v-160h160z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

@@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1175.9062"
height="358.15622"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="New document 1">
<defs
id="defs4" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="464.31249"
inkscape:cy="113.54403"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1366"
inkscape:window-height="706"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(89.312494,-287.74999)">
<g
id="g3017"
transform="matrix(16.779609,0,0,16.779609,-89.326214,287.74733)">
<path
d="m 87.65625,287.75 c -98.580203,0 -176.96875,80.48799 -176.96875,178.53125 0,99.11715 78.388547,179.625 176.96875,179.625 99.10037,0 176.4375,-80.49338 176.4375,-179.59375 C 264.11053,368.26924 186.75662,287.75 87.65625,287.75 z m 0,75.78125 c 80.49178,0 139.45728,51.11683 164.375,102.78125 -24.91772,52.45306 -83.88322,103.8125 -164.375,103.8125 -81.0119523,0 -139.50531,-51.37622 -164.40625,-103.8125 24.90094,-51.64764 83.4110774,-102.75 164.40625,-102.75 l 0,-0.0312 z m 0,8.125 c -52.436278,0 -95.1875,42.44042 -95.1875,94.625 0,52.97323 42.751222,95.1875 95.1875,95.1875 52.43628,0 94.625,-42.21658 94.625,-95.15625 0,-52.18458 -42.18872,-94.65625 -94.625,-94.65625 z"
transform="matrix(0.05959614,0,0,0.05959614,5.3234979,-17.148631)"
id="path3003"
inkscape:connector-curvature="0" />
<path
d="m 433.28125,309 c -92.55632,0 -157.0625,70.2602 -157.0625,155.71875 l 0,1.03125 c 0,86.51566 65.82038,154.96875 154.71875,154.96875 57.93999,0 92.5584,-20.72373 123.5,-54.03125 L 512.21875,524.25 C 488.60984,545.7279 467.34786,559.65625 433,559.65625 c -51.64764,0 -87.5625,-43.30664 -87.5625,-94.9375 l 0,-0.78125 c 0,-51.64764 36.70351,-93.875 87.5625,-93.875 30.15296,0 53.75331,12.85077 77.09375,34.09375 L 552.3125,355.375 C 524.25699,327.85644 490.1809,309 433.28125,309 z"
transform="matrix(0.05959614,0,0,0.05959614,5.3234979,-17.148631)"
id="path3005"
inkscape:connector-curvature="0" />
<path
d="m 579.40625,314.21875 0,301.21875 143.40625,0 c 67.8903,0 112.71875,-27.49413 112.71875,-82.53125 l 0,-1.0625 c 0,-40.37174 -21.47341,-60.58093 -56.375,-73.9375 21.51146,-12.04776 39.59375,-30.92061 39.59375,-65 l 0,-0.78125 c 0,-20.7396 -6.82523,-37.51273 -20.71875,-51.40625 -17.283,-17.0313 -44.29161,-26.5 -78.65625,-26.5 l -139.96875,0 z m 64.46875,57.9375 65.5625,0 c 28.05551,0 43.5,11.2718 43.5,30.9375 l 0,1.0625 c 0,22.28332 -18.60443,31.71875 -47.96875,31.71875 l -61.09375,0.0312 0,-63.75 z m 0,118.8125 76.84375,0 c 33.79413,0 49,12.59538 49,32.78125 l 0,1.03125 c 0,22.28332 -17.81041,32.5 -46.90625,32.5 l -78.9375,0.0312 0,-66.34375 z"
transform="matrix(0.05959614,0,0,0.05959614,5.3234979,-17.148631)"
id="path3007"
inkscape:connector-curvature="0" />
<path
d="m 965.5,309.78125 c -61.34625,0 -105.375,36.16886 -105.375,90.9375 l 0,0.8125 c 0,59.80253 39.30061,76.5917 99.875,92.0625 50.3388,13.0881 60.8125,21.47039 60.8125,38.25 l 0,1.0625 c 0,17.55147 -16.5329,28.3125 -43.53125,28.3125 -34.61633,0 -62.92233,-14.18543 -89.9375,-36.46875 l -39.3125,46.9375 c 36.17684,32.25041 82.31374,48 127.9375,48 l 0,-0.0312 c 65.02095,0 110.62505,-33.57709 110.62505,-93.3125 l 0,-0.78125 c 0,-52.68797 -34.593,-74.49456 -95.68755,-90.46875 C 939.00692,421.70362 925.875,415.1657 925.875,395.5 l 0,-0.78125 c 0,-14.68216 13.37461,-26.46875 38.8125,-26.46875 25.43789,0 51.6596,11.25194 78.4063,29.84375 l 34.3437,-50.03125 C 1047.0161,323.68173 1009.5465,309.78125 965.5,309.78125 z"
transform="matrix(0.05959614,0,0,0.05959614,5.3234979,-17.148631)"
id="path3009"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

@@ -0,0 +1,106 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="1000"
height="400.73499"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.48.5 r10040"
version="1.0"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
sodipodi:docname="The_CW.svg">
<metadata
id="metadata12434">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12432" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1028"
id="namedview12430"
showgrid="false"
inkscape:zoom="1.3281994"
inkscape:cx="623.34195"
inkscape:cy="275.08308"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="g5974" />
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-247.34642,-182.58469)">
<g
id="g5972"
clip-path="url(#id9)"
transform="matrix(40.376307,0,0,-40.376307,-8816.3916,7972.0023)">
<g
id="g5974"
transform="translate(232.9946,182.9955)">
<path
id="path5976"
d="M 0,0 C 1.205,0.035 2.297,0.551 3.114,1.366 3.856,0.529 4.938,0 6.139,0 7.346,0 8.432,0.534 9.174,1.379 9.917,0.534 11.003,0 12.21,0 c 2.225,0 4.044,1.818 4.044,4.044 l 0,5.8810072 -2.64,0 0,-5.8810072 c 0,-0.862 -0.689,-1.568 -1.551,-1.568 -0.863,0 -1.569,0.706 -1.569,1.568 l 0,5.8810072 -2.64,0 0,-5.8810072 c 0,-0.862 -0.706,-1.568 -1.569,-1.568 -0.862,0 -1.551,0.706 -1.551,1.568 l 0,5.8810072 -2.64,0 0,-4.9960072 C 2.075,3.695 1.174,2.671 0.068,2.638 l -3.861,10e-4 c -1.148,0 -2.081,1.038 -2.081,2.315 0,1.286 0.933,2.332 2.081,2.332 l 3.868,0 0,2.6390072 L -3.793,9.925 C -6.396,9.9249952 -8.513,7.698 -8.513,4.954 -8.513,2.226 -6.396,0 -3.793,0 z"
style="fill:#2e7734;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccscssccsssccssscccccssccsssc" />
</g>
<g
id="g5978"
transform="translate(229.4164,187.1463)">
<path
id="path5980"
d="m 0,0 0,1.355 0.482,0 0,0.267 -1.297,0 0,-0.267 0.482,0 L -0.333,0 0,0 Z"
style="fill:#2e7734;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="g5982"
transform="translate(232.8542,188.5016)">
<path
id="path5984"
d="m 0,0 0,0.267 -1.05,0 0,-1.622 1.08,0 0,0.267 -0.746,0 0,0.421 0.655,0 0,0.273 -0.655,0 0,0.394 L 0,0 Z"
style="fill:#2e7734;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
</g>
<g
id="g5986"
transform="translate(231.4896,187.1463)">
<path
id="path5988"
d="m 0,0 0,1.622 -0.332,0 0,-0.661 -0.69,0 0,0.661 -0.332,0 0,-1.621 0.332,0 0,0.687 0.69,0 L -0.332,0 0,0 Z"
style="fill:#2e7734;fill-rule:nonzero;stroke:none"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g11042"
clip-path="url(#id82)"
transform="matrix(3.7452579,0,0,-3.7452579,-62.970573,1349.9091)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

@@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 23.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1000px" height="344.9241333px" viewBox="0 0 1000 344.9241333" enable-background="new 0 0 1000 344.9241333"
xml:space="preserve">
<path fill-rule="evenodd" clip-rule="evenodd" d="M864.968811,186.7201233l-38.3232422,132.796814h27.6269531l4.0117188-16.9287109
h35.6523438l3.5683594,16.9287109h28.0693359l-38.7675781-132.796814H864.968811z M876.1104126,222.8158112
c0,1.7841797,0.3740234,4.4570313,1.1132813,8.0253906c0.7490234,3.5605316,1.4111328,6.8329926,2.0117188,9.800766
l8.9121094,38.7666016h-24.5097656l9.3564453-38.7666016c0.5917969-2.9677734,1.2607422-6.2402344,2.0009766-9.800766
C875.7432251,227.2728424,876.1104126,224.5999908,876.1104126,222.8158112z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M737.0753174,186.2767639v133.2401733h26.7392578v-42.335907h11.5839844
l17.8251953,42.335907h26.2958374l-18.7235718-47.6806335c5.6484375-3.8642578,10.2539063-9.1386719,13.8222046-15.8232422
c3.5595703-6.6845703,5.3447266-14.3369141,5.3447266-22.9452972v-3.1240234
c0-12.4726563-3.7861328-22.8740234-11.3671265-31.1943207c-7.5722656-8.3212891-17.3027344-12.4726563-29.1835938-12.4726563
H737.0753174z M763.8145752,211.2308502h12.9248047c4.7519531,0,8.7646484,1.5595703,12.0283203,4.6757813
c3.2646484,3.1240234,4.8994141,7.9453125,4.8994141,14.4814453v0.8984375c0,7.4238129-1.6347656,12.7763519-4.8994141,16.0400238
c-3.2636719,3.2646484-7.2763672,4.9003906-12.0283203,4.9003906h-12.9248047V211.2308502z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M808.3770752,25.8510609V159.090744h42.7792358
c6.8330078,0,13.1435547-1.331543,18.9394531-4.0039063c5.796875-2.6806641,10.6201172-6.3876953,14.484375-11.1396484
c3.8642578-4.7612152,6.9111328-10.7758636,9.1396484-18.0522308c2.2275391-7.2763672,3.3417969-15.075676,3.3417969-23.396965
v-24.066391c0-7.4243164-1.1142578-14.403801-3.3417969-20.9404182c-2.2285156-6.5366211-5.2753906-12.1865196-9.1396484-16.9384689
c-3.8642578-4.7529297-8.6875-8.3901329-14.484375-10.9140587c-5.796875-2.5244122-12.1064453-3.7875957-18.9394531-3.7875957
H808.3770752z M835.116272,50.8051491h12.9248047c3.8554688,0,7.1279297,0.5922852,9.7998047,1.7851563
c2.6728516,1.1835938,4.9003906,2.9682617,6.6845703,5.3447266c2.0800781,2.6718712,3.5693359,5.7968712,4.4580078,9.3564415
c0.8876953,3.56884,1.3388672,7.5810471,1.3388672,12.03759v21.3842697c0,5.6494064-0.4511719,10.619133-1.3388672,14.9277267
c-0.8886719,4.3080978-2.3779297,7.947258-4.4580078,10.9238205c-1.7841797,2.3764648-4.0126953,4.309082-6.6845703,5.7885742
c-2.671875,1.4887695-5.9443359,2.2270508-9.7998047,2.2270508H835.116272V50.8051491z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M506.6760254,24.0790901c-6.2314453,0-11.6538086,0.8168945-16.2583008,2.4448223
c-4.6044922,1.6362305-8.8432617,3.7963848-12.7075195,6.4682598c-5.6401367,5.048336-10.0961609,11.7324142-13.3686218,20.0527229
c-3.2641602,8.320797-4.9008789,18.7138557-4.9008789,31.1948128v16.041008c0,12.7773361,1.6367188,23.4755707,4.9008789,32.0834808
c3.2724609,8.6171722,7.7284851,15.1528168,13.3686218,19.609848c3.8642578,2.9765625,8.1025391,5.2739258,12.7075195,6.9101563
c4.6044922,1.6362305,10.0268555,2.4462891,16.2583008,2.4462891c5.6494141,0,10.7753906-0.8100586,15.3798828-2.4462891
s8.8359375-3.9335938,12.7011719-6.9101563c5.9443359-4.456543,10.4003906-10.9926758,13.3681641-19.609848
c2.9677734-8.6079102,4.4560547-19.1581955,4.4560547-31.6396332V84.2397079
c0-12.4814453-1.4873047-22.8740158-4.4560547-31.1948128c-2.9677734-8.3203087-7.4238281-15.0043869-13.3681641-20.0527229
c-3.8652344-2.671875-8.0966797-4.8320293-12.7011719-6.4682598
C517.451416,24.8959846,512.3244629,24.0790901,506.6760254,24.0790901z M506.6760254,49.0336685
c2.6806641,0,5.0585938,0.4428711,7.1386719,1.3393555c2.0800781,0.8876915,3.8564453,2.2280235,5.3447266,4.0034142
c2.0800781,2.3764648,3.7158203,6.023922,4.8984375,10.9243126c1.1933594,4.9003906,1.7851563,11.5058517,1.7851563,19.8271408
v15.1533127c0,8.3212814-0.5917969,14.8588791-1.7851563,19.6108246c-1.1835938,4.7524414-2.8183594,8.3203125-4.8984375,10.6962891
c-1.4882813,2.0800781-3.3427734,3.6391602-5.5712891,4.6748047c-2.2285156,1.0444336-4.5361328,1.5571289-6.9121094,1.5571289
c-2.9677734,0-5.6396484-0.5126953-8.015625-1.5571289c-2.3759766-1.0356445-4.3085938-2.5947266-5.796875-4.6748047
c-2.0805664-2.3764648-3.7089844-5.9438477-4.9008789-10.6962891c-1.1928711-4.7519455-1.7836914-11.2900314-1.7836914-19.6108246
V85.1278915c0-8.3208008,0.5908203-14.9267502,1.7836914-19.8271408c1.1923828-4.9003906,2.8208008-8.5478477,4.9008789-10.9243126
c1.4882813-1.7753906,3.4204102-3.1157227,5.796875-4.0034142C501.036377,49.4765396,503.708252,49.0336685,506.6760254,49.0336685z
"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" points="934.4873657,186.2767639 934.4873657,319.5169373 1000,319.5169373
1000,295.0061951 961.2236328,295.0061951 961.2236328,186.2777405 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" points="671.5578003,211.2132721 671.5578003,319.4993591
697.8526611,319.4993591 697.8526611,211.2132721 722.8067627,211.2132721 722.8067627,186.2591858 646.6027222,186.2591858
646.6027222,211.2132721 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" points="549.4621582,186.2767639 549.4621582,319.5169373
573.5206909,319.5169373 573.5206909,242.4261475 609.6242065,319.5169373 633.2374878,319.5169373 633.2374878,186.2767639
608.7267456,186.2767639 608.7267456,264.262085 572.632019,186.2767639 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" points="462.1184387,186.2767639 462.1184387,319.5169373
529.8586426,319.5169373 529.8586426,295.0061951 488.854248,295.0061951 488.854248,264.2640381 523.6184082,264.2640381
523.6184082,239.3011475 488.854248,239.3011475 488.854248,211.2318268 529.8586426,211.2318268 529.8586426,186.2767639 "/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M392.579895,215.2445221
c1.4882813-2.0810547,3.3422852-3.4902344,5.5703125-4.2392578c2.2280273-0.7392578,4.6826172-1.1142578,7.3549805-1.1142578
c3.5683289,0,7.0585632,0.8964844,10.4706726,2.6728516c3.4204102,1.7841797,6.1621094,5.3525391,8.2426758,10.6962891
l23.6220703-9.8007813c-3.8642578-10.1044922-9.5830078-17.5292816-17.1552734-22.2812347
c-7.5810547-4.7529297-15.9716797-7.1289063-25.1801453-7.1289063c-5.6494141,0-10.9150391,0.8876953-15.8242188,2.671875
c-4.9003906,1.7841797-9.1303711,4.1611328-12.6987305,7.1289063c-5.6401367,4.7519531-10.0268555,11.2890472-13.1430664,19.6093597
c-3.1245117,8.3212891-4.6826172,18.7138672-4.6826172,31.1952972v16.4853516
c0,12.7773438,1.5581055,23.3261414,4.6826172,31.6386414c3.1162109,8.3212891,7.5029297,14.8574219,13.1430664,19.609375
c3.5683594,2.9775391,7.7983398,5.2050781,12.6987305,6.6845703c4.9091797,1.4882813,10.1748047,2.2285156,15.8242188,2.2285156
c9.8002625,0,18.3476257-2.2978516,25.6239929-6.9023438s12.847168-11.5146484,16.7114258-20.7236328l-23.6220703-10.6972656
c-2.0805664,5.3447266-4.7524414,8.9130859-8.0166016,10.6972656c-3.2724609,1.7841797-6.8325195,2.6728516-10.6967468,2.6728516
c-2.6723633,0-5.1269531-0.375-7.3549805-1.1142578c-2.2280273-0.7402344-4.0820313-2.1503906-5.5703125-4.2304688
c-2.0805664-2.0800781-3.7080078-5.5703125-4.9008789-10.4794617c-1.1923828-4.9003906-1.7841797-11.5068359-1.7841797-19.8271484
v-14.7099609c0-8.9130859,0.5917969-15.7451019,1.7841797-20.4970551c1.1928711-4.7529297,2.8203125-8.1650391,4.9008789-10.2441406
V215.2445221z"/>
<polygon fill-rule="evenodd" clip-rule="evenodd" points="619.8644409,159.0814667 641.7033081,159.0814667 661.3126831,86.4472198
669.7824097,159.0814667 694.2921143,159.0814667 679.138855,25.8422718 654.1847534,25.8422718 631.0060425,109.6161575
607.8361206,25.8422718 582.4298706,25.8422718 566.8322144,159.0814667 591.795105,159.0814667 599.81073,86.4472198 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" points="715.2344971,25.8510609 715.2344971,159.090744 785.6505127,159.090744
785.6505127,134.5800171 741.5303955,134.5800171 741.5303955,103.8378372 780.2969971,103.8378372 780.2969971,78.4311142
741.5303955,78.4311142 741.5303955,50.8046608 785.6505127,50.8046608 785.6505127,25.8505726 "/>
<polygon fill-rule="evenodd" clip-rule="evenodd" points="934.4873657,94.902298 934.4873657,159.0682831 961.2255859,159.0682831
961.2255859,94.902298 998.6611328,25.8285999 969.6943359,25.8285999 947.4121094,67.7118835 926.0264282,25.8285999
897.0596313,25.8285999 "/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M392.579895,54.3749733
c1.4882813-1.7753906,3.3422852-3.1157227,5.5703125-4.0039024c2.2280273-0.8964844,4.6826172-1.340332,7.3549805-1.340332
c3.5683289,0,7.0585632,0.9663086,10.4706726,2.8984337c3.4204102,1.9321289,6.1621094,5.71875,8.2426758,11.3588829
l23.6220703-10.6884727c-3.8642578-10.1054611-9.5830078-17.3818283-17.1552734-21.8383675
c-7.5810547-4.4560528-15.9716797-6.6845665-25.1801453-6.6845665c-5.6494141,0-10.9150391,0.8183594-15.8242188,2.4457989
c-4.9003906,1.6362305-9.1303711,3.79492-12.6987305,6.4672832c-5.6401367,5.048336-10.0268555,11.7329025-13.1430664,20.0536995
c-3.1245117,8.320797-4.6826172,18.7133675-4.6826172,31.1948128v16.0414963
c0,12.7773361,1.5581055,23.4741058,4.6826172,32.0825043c3.1162109,8.616684,7.5029297,15.1533051,13.1430664,19.609848
c3.5683594,2.9765625,7.7983398,5.2749023,12.6987305,6.9106445c4.9091797,1.6367188,10.1748047,2.4458008,15.8242188,2.4458008
c9.8002625,0,18.3476257-2.2978516,25.6239929-6.9018555c7.2763672-4.6044922,12.847168-11.6630859,16.7114258-21.1679535
l-23.6220703-10.253418c-2.0805664,5.0483398-4.7524414,8.6171875-8.0166016,10.6967773
c-3.2724609,2.0805664-6.8325195,3.1162109-10.6967468,3.1162109c-2.6723633,0-5.1269531-0.5136719-7.3549805-1.5581055
c-2.2280273-1.0356445-4.0820313-2.59375-5.5703125-4.6738281c-2.0805664-2.3764648-3.7080078-5.9448242-4.9008789-10.6972656
c-1.1923828-4.7519455-1.7841797-11.2890549-1.7841797-19.609848v-15.153801c0-8.3203125,0.5917969-14.9272385,1.7841797-19.8271408
C388.8718872,60.398407,390.4993286,56.7509499,392.579895,54.3749733z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC600" d="M190.7401428,195.622467
c-3.8642578,7.1289063-9.4350586,12.847641-16.7114258,17.1552582c-7.285141,4.3085938-15.2319183,6.4580078-23.8486176,6.4580078
c-12.7685394,0-23.6918793-4.5253906-32.7524261-13.5859375c-9.0610275-9.0615082-13.5869064-19.9843597-13.5869064-32.7529144
c0-12.7773285,4.5263672-23.7704926,13.5869064-32.9789734c9.0605469-9.2089844,19.9838867-13.8129883,32.7524261-13.8129883
c8.6166992,0,16.5634766,2.2978516,23.8486176,6.9018555c7.2763672,4.6044922,12.847168,10.3227386,16.7114258,17.1552582
l36.0951996-20.4975433c-7.4331055-13.369133-17.9736328-24.1357346-31.6386566-32.3090668
c-13.6738281-8.1640625-28.6708832-12.2548752-45.0185394-12.2548752c-11.8808441,0-23.1699066,2.306633-33.8671646,6.9106369
c-10.6972656,4.6044922-19.9755783,10.8452072-27.8530197,18.7138596
c-7.8681564,7.8764572-14.1083908,17.1547775-18.7133636,27.8525314
c-4.6044922,10.6967621-6.9106445,22.1342621-6.9106445,34.3193054c0,12.1767578,2.3061523,23.6132813,6.9106445,34.3105316
c4.6049728,10.6972656,10.8452072,19.9755859,18.7133636,27.8535004
c7.8769531,7.8769531,17.1552658,14.1083984,27.8530197,18.7128906c10.6967697,4.6044922,21.9863205,6.9111328,33.8671646,6.9111328
c16.0498047,0,30.9770355-4.1601563,44.7880707-12.4814453c13.812973-8.3125,24.4321136-19.0097504,31.8652191-32.0829926
L190.7401428,195.622467z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FDC600" d="M322.6424255,172.0150452
c0,23.7705078-4.534668,46.2011566-13.5957031,67.297821c-9.0605469,21.0898438-21.315918,39.4365234-36.7651062,55.032196
c-15.4492188,15.5976563-33.71875,27.9228516-54.8071136,36.9833984
c-21.0981293,9.0605469-43.5278168,13.5956726-67.2973328,13.5956726c-32.0825043,0-61.4242859-8.172821-88.0131378-24.5107117
C35.5737114,304.0765076,14.8603439,282.6819763,0,256.2386475l36.0951958-19.609375
c10.992672,19.609375,26.7382698,35.5029297,47.2372856,47.6894226
c20.5068207,12.1767578,42.7885513,18.2695313,66.845665,18.2695313c17.8256836,0,34.7631683-3.4208984,50.8032074-10.2539063
c16.0414886-6.8320313,29.9326019-16.110321,41.6654968-27.8525085
c11.7416992-11.7324219,21.0981445-25.5458984,28.0791016-41.4394379
c6.980957-15.8925781,10.4707031-32.9003754,10.4707031-51.0287933v0.8964844
c0-18.1298676-3.4902344-35.1376648-10.4707031-51.0287781c-6.9804688-15.8935471-16.3369141-29.7060394-28.0791016-41.4394302
c-11.7328949-11.7412033-25.6240082-21.0200119-41.6654968-27.8525276
c-16.0410156-6.8325157-32.9789886-10.2529221-50.8032074-10.2529221c-24.0576019,0-46.338356,6.0927696-66.845665,18.2695198
c-20.497551,12.1855392-36.2426605,28.0790863-47.2372856,47.6894302L0,88.6850128
c14.8574142-26.4423676,35.5727348-47.8354225,62.164032-64.1747742C88.7543488,8.173336,118.0961304,0,150.1771698,0
c23.7700043,0,46.2011566,4.5346656,67.2973328,13.5956964c21.0898285,9.0605421,39.3588715,21.3852463,54.8071136,36.9828949
c15.4496765,15.5976486,27.7050476,33.944809,36.7651062,55.0331726
c9.0610352,21.0981369,13.5957031,43.5278091,13.5957031,67.2973251V172.0150452z"/>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="1041px" height="565px" viewBox="0 0 1041 565" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<!-- Generated by Pixelmator Pro 2.2 -->
<g id="Layer_1">
<g id="group">
<g id="group-1">
<g id="group-2">
<path id="Path" d="M735.8 365.7 C721.4 369 683.5 370.9 683.5 370.9 L678.7 385.9 C678.7 385.9 697.6 384.3 711.4 385.7 711.4 385.7 715.9 385.2 716.4 390.8 716.6 396 716 401.6 716 401.6 716 401.6 715.7 405 710.9 405.8 705.7 406.7 670.1 408 670.1 408 L664.3 427.5 C664.3 427.5 662.2 432 667 430.7 671.5 429.5 708.8 422.5 713.7 423.5 718.9 424.8 724.7 431.7 723 438.1 721 445.9 683.8 469.7 661.1 468 661.1 468 649.2 468.8 639.1 452.7 629.7 437.4 642.7 408.3 642.7 408.3 642.7 408.3 636.8 394.7 641.1 390.2 641.1 390.2 643.7 387.9 651.1 387.3 L660.2 368.4 C660.2 368.4 649.8 369.1 643.6 361.5 637.8 354.2 637.4 350.9 641.8 348.9 646.5 346.6 689.8 338.7 719.6 339.7 719.6 339.7 730 338.7 738.9 356.7 738.8 356.7 743.2 364 735.8 365.7 Z M623.7 438.3 C619.9 447.3 609.8 456.9 597.3 450.9 584.9 444.9 565.2 404.6 565.2 404.6 565.2 404.6 557.7 389.6 556.3 389.9 556.3 389.9 554.7 387 553.7 403.4 552.7 419.8 553.9 451.7 547.4 456.7 541.2 461.7 533.7 459.7 529.8 453.8 526.3 448 524.8 434.2 526.7 410 529 385.8 534.6 360 541.8 351.9 549 343.9 554.8 349.7 557 351.8 557 351.8 566.6 360.5 582.5 386.1 L585.3 390.8 C585.3 390.8 599.7 415 601.2 414.9 601.2 414.9 602.4 416 603.4 415.2 604.9 414.8 604.3 407 604.3 407 604.3 407 601.3 380.7 588.2 336.1 588.2 336.1 586.2 330.5 587.6 325.3 588.9 320 594.2 322.5 594.2 322.5 594.2 322.5 614.6 332.7 624.4 365.9 634.1 399.4 627.5 429.3 623.7 438.3 Z M523.5 353 C521.8 356.4 520.8 361.3 512.2 362.6 512.2 362.6 429.9 368.2 426 374 426 374 423.1 377.4 427.6 378.4 432.1 379.3 450.7 381.8 459.7 382.3 469.3 382.4 501.7 382.7 513.3 397.2 513.3 397.2 520.2 404.1 519.9 419.7 519.6 435.7 516.8 441.3 510.6 447.1 504.1 452.5 448.3 477.5 412.3 439.1 412.3 439.1 395.7 420.6 418 406.6 418 406.6 434.1 396.9 475 408.3 475 408.3 487.4 412.8 486.8 417.3 486.1 422.1 476.6 427.2 462.8 426.9 449.4 426.5 439.6 420.1 441.5 421.1 443.3 421.8 427.1 413.3 422.1 419.1 417.1 424.4 418.3 427.7 423.2 431 435.7 438.1 484 435.6 498.4 419.6 498.4 419.6 504.1 413.1 495.4 407.8 486.7 402.8 461.8 399.8 452.1 399.3 442.8 398.8 408.2 399.4 403.2 390.2 403.2 390.2 398.2 384 403.7 366.4 409.5 348 449.8 340.9 467.2 339.3 467.2 339.3 515.1 337.6 523.9 347.4 523.8 347.4 525 349.7 523.5 353 Z M387.5 460.9 C381.7 465.2 369.4 463.3 365.9 458.5 362.4 454.2 361.2 437.1 361.9 410.3 362.6 383.2 363.2 349.6 369 344.3 375.2 338.9 379 343.6 381.4 347.3 384 350.9 387.1 354.9 387.8 363.4 388.4 371.9 390.4 416.5 390.4 416.5 390.4 416.5 393 456.7 387.5 460.9 Z M400 317.1 C383.1 322.7 371.5 320.8 361.7 316.6 357.4 324.1 354.9 326.4 351.6 326.9 346.8 327.4 342.5 319.7 341.7 317.2 340.9 315.3 338.6 312.1 341.4 304.5 331.8 295.9 331.1 284.3 332.7 276.5 335.1 267.5 351.3 233.3 400.6 229.3 400.6 229.3 424.7 227.5 428.8 240.4 L429.5 240.4 C429.5 240.4 452.9 240.5 452.4 261.3 452.1 282.2 426.4 308.2 400 317.1 Z M354 270.8 C349 278.8 348.8 283.6 351.1 286.9 356.8 278.2 367.2 264.5 382.5 254.1 370.7 255.1 360.8 260.2 354 270.8 Z M422.1 257.4 C406.6 259.7 382.6 280.5 371.2 297.5 388.7 300.7 419.6 299.5 433.3 271.6 433.2 271.6 439.8 254.3 422.1 257.4 Z M842.9 418.5 C833.6 434.7 807.5 468.5 772.7 460.6 761.2 488.5 751.6 516.6 746.1 558.8 746.1 558.8 744.9 567 738.1 564.1 731.4 561.7 720.2 550.5 718 535 715.6 514.6 724.7 480.1 743.2 440.6 737.8 431.8 734.1 419.2 737.3 401.3 737.3 401.3 742 368.1 775.3 338.1 775.3 338.1 779.3 334.6 781.6 335.7 784.2 336.8 783 347.6 780.9 352.8 778.8 358 763.9 383.8 763.9 383.8 763.9 383.8 754.6 401.2 757.2 414.9 774.7 388 814.5 333.7 839.2 350.8 847.5 356.7 851.3 369.6 851.3 383.5 851.2 395.8 848.3 408.8 842.9 418.5 Z M835.7 375.9 C835.7 375.9 834.3 365.2 823.9 377 814.9 386.9 798.7 405.6 785.6 430.9 799.3 429.4 812.5 421.9 816.5 418.1 823 412.3 838.1 396.7 835.7 375.9 Z M350.2 389.5 C348.3 413.7 339 454.4 273.1 474.5 229.6 487.6 188.5 481.3 166.1 475.6 165.6 484.5 164.6 488.3 163.2 489.8 161.3 491.7 147.1 499.9 139.3 488.3 135.8 482.8 134 472.8 133 463.9 82.6 440.7 59.4 407.3 58.5 405.8 57.4 404.7 45.9 392.7 57.4 378 68.2 364.7 103.5 351.4 135.3 346 136.4 318.8 139.6 298.3 143.4 288.9 148 278 153.8 287.8 158.8 295.2 163 300.7 165.5 324.4 165.7 343.3 186.5 342.3 198.8 343.8 222 348 252.2 353.5 272.4 368.9 270.6 386.4 269.3 403.6 253.5 410.7 247.5 411.2 241.2 411.7 231.4 407.2 231.4 407.2 224.7 404 230.9 401.2 239 397.7 247.8 393.4 245.8 389 245.8 389 242.5 379.4 203.3 372.7 164.3 372.7 164.1 394.2 165.2 429.9 165.7 450.7 193 455.9 213.4 454.9 213.4 454.9 213.4 454.9 313 452.1 316 388.5 319.1 324.8 216.7 263.7 141 244.3 65.4 224.5 22.6 238.3 18.9 240.2 14.9 242.2 18.6 242.8 18.6 242.8 18.6 242.8 22.7 243.4 29.8 245.8 37.3 248.2 31.5 252.1 31.5 252.1 18.6 256.2 4.1 253.6 1.3 247.7 -1.5 241.8 3.2 236.5 8.6 228.9 14 220.9 19.9 221.2 19.9 221.2 113.4 188.8 227.3 247.4 227.3 247.4 334 301.5 352.2 364.9 350.2 389.5 Z M68 386.2 C57.4 391.4 64.7 398.9 64.7 398.9 84.6 420.3 109.1 433.7 132.4 442 135.1 405.1 134.7 392.1 135 373.5 98.6 376 77.6 381.8 68 386.2 Z" fill="#01147c" fill-opacity="1" stroke="none"/>
</g>
</g>
<g id="group-3">
<g id="group-4">
<g id="group-5">
<path id="Path-1" d="M1040.9 378.6 L1040.9 391.8 C1040.9 394.7 1038.6 397 1035.7 397 L972.8 397 C972.8 400.3 972.9 403.2 972.9 405.9 972.9 425.4 972.1 441.3 970.2 459.2 969.9 461.9 967.7 463.9 965.1 463.9 L951.5 463.9 C950.1 463.9 948.8 463.3 947.9 462.3 947 461.3 946.5 459.9 946.7 458.5 948.6 440.7 949.5 425 949.5 405.9 949.5 403.1 949.5 400.2 949.4 397 L887.2 397 C884.3 397 882 394.7 882 391.8 L882 378.6 C882 375.7 884.3 373.4 887.2 373.4 L948.5 373.4 C947.2 351.9 944.6 331.2 940.4 310.2 940.2 308.9 940.5 307.6 941.3 306.6 942.1 305.6 943.3 305 944.6 305 L959.3 305 C961.6 305 963.5 306.6 964 308.9 968.1 330.6 970.7 351.7 972 373.4 L1035.7 373.4 C1038.5 373.4 1040.9 375.8 1040.9 378.6 Z" fill="#01147c" fill-opacity="1" stroke="none"/>
</g>
</g>
</g>
<g id="group-6">
<g id="group-7">
<path id="Path-2" d="M200.2 204.3 L200.1 204.3 M199.4 204.4 C199.1 204.4 198.8 204.3 198.5 204.3 198.8 204.4 199.1 204.4 199.4 204.4 L199.7 204.4 C199.6 204.4 199.5 204.4 199.4 204.4 Z M199.4 204.4 C199.1 204.4 198.8 204.3 198.5 204.3 198.8 204.4 199.1 204.4 199.4 204.4 L199.7 204.4 C199.6 204.4 199.5 204.4 199.4 204.4 Z" fill="none" stroke="none"/>
<defs>
<radialGradient id="radial-gradient" gradientUnits="userSpaceOnUse" cx="942.524" cy="279.896" r="760.124" fx="942.524" fy="279.896">
<stop offset="0.007" stop-color="#021192" stop-opacity="1"/>
<stop offset="0.03" stop-color="#021096" stop-opacity="1"/>
<stop offset="0.057" stop-color="#010cb4" stop-opacity="1"/>
<stop offset="0.084" stop-color="#0008ce" stop-opacity="1"/>
<stop offset="0.111" stop-color="#0006d7" stop-opacity="1"/>
<stop offset="0.138" stop-color="#0004e1" stop-opacity="1"/>
<stop offset="0.165" stop-color="#0001fa" stop-opacity="1"/>
<stop offset="0.191" stop-color="#0000fe" stop-opacity="1"/>
<stop offset="0.216" stop-color="#0f1eff" stop-opacity="1"/>
<stop offset="1" stop-color="#00ffff" stop-opacity="0"/>
</radialGradient>
</defs>
<path id="Path-3" d="M955.3 273.9 C922.8 194 867.9 125.9 796.5 76.9 723.4 26.8 637.7 0.3 548.7 0.3 401.5 0.3 264.9 73.4 183.4 195.9 182.5 197.2 182.3 198.9 182.8 200.4 183.3 202 184.5 203.1 186 203.6 L197.4 207.5 C198.1 207.7 198.8 207.8 199.4 207.8 201.5 207.8 203.5 206.7 204.7 205 242.1 150 292.7 104.3 351.1 72.7 411.4 40.1 479.7 22.8 548.6 22.8 631.9 22.8 712.2 47.4 781 93.8 848.1 139.1 900.2 202.4 931.7 276.7 932.6 278.9 934.8 280.4 937.2 280.4 L950.8 280.4 C952.4 280.4 953.9 279.6 954.7 278.3 955.7 277 955.9 275.4 955.3 273.9 Z M199.4 204.4 C199.1 204.4 198.8 204.3 198.5 204.2 198.8 204.3 199.1 204.4 199.4 204.4 L199.6 204.4 C199.6 204.4 199.5 204.4 199.4 204.4 Z M934.4 278.6 C934.7 278.8 935 279 935.3 279.1 935 278.9 934.7 278.8 934.4 278.6 Z" fill-opacity="1" fill="url(#radial-gradient)" stroke="none"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.1 KiB

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1000px" height="596.773px" viewBox="0 0 1000 596.773" enable-background="new 0 0 1000 596.773" xml:space="preserve">
<polygon points="762.825,0 690.039,133.12 615.406,0 379.613,0 379.705,0.092 0,0.092 0,596.773 207.839,596.773 207.839,402.677
410.242,402.677 410.242,240.127 207.839,240.127 207.839,168.175 492.895,168.175 571.953,285.605 380.445,596.773
615.222,596.773 689.854,455.812 763.56,596.773 998.986,596.773 809.413,285.147 1000,0 "/>
</svg>

After

Width:  |  Height:  |  Size: 824 B

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1000px" height="798.092px" viewBox="0 0 1000 798.092" enable-background="new 0 0 1000 798.092" xml:space="preserve">
<path d="M459.175,229.058H223.243h-15.169v-68.685h278.345l83.85,124.319l-36.674,54.575L459.175,229.058z M762.382,569.12h235.851
L806.818,285.576L1000,0H762.652l-74.063,110.208L614.176,0H378.152l0.087,0.088H0v568.944h208.074V383.967h119.733l87.991,130.402
L225.004,798.092h234.966l73.886-109.063l73.618,109.063h235.762L651.91,514.544l36.855-54.487L762.382,569.12z"/>
</svg>

After

Width:  |  Height:  |  Size: 860 B

@@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="512"
height="211"
viewBox="0 0 512 211"
version="1.1"
id="svg200"
sodipodi:docname="Hbo logo 1.svg"
inkscape:version="1.2 (dc2aedaf03, 2022-05-15)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#">
<defs
id="defs204" />
<sodipodi:namedview
id="namedview202"
pagecolor="#ffffff"
bordercolor="#111111"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="2.3543242"
inkscape:cx="129.33648"
inkscape:cy="119.7796"
inkscape:window-width="1920"
inkscape:window-height="1009"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="hbo-logo-blk" />
<g
id="hbo-logo-blk"
stroke="none"
stroke-width="1"
fill="none"
fill-rule="evenodd"
transform="translate(0,3.0006123e-5)">
<polyline
id="Fill-15"
fill="#000000"
points="148 206 92.7748343 206 92.7748343 127.236832 56.9262346 127.236832 56.9262346 206 0 206 0 3 56.9262346 3 56.9262346 78.5141926 92.7748343 78.5141926 92.7748343 3 148 3 148 206"
transform="scale(1.0150417,1.0183117)" />
<path
d="m 407.03751,146.25835 c 22.74616,0 41.18655,-18.48231 41.18655,-41.28778 0,-22.799359 -18.44039,-41.284724 -41.18655,-41.284724 -22.74918,0 -41.18755,18.485365 -41.18755,41.284724 0,22.80547 18.43837,41.28778 41.18755,41.28778 z m -52.39287,-41.28778 c 0,-29.003142 23.45567,-52.51778 52.39287,-52.51778 28.93621,0 52.39593,23.514638 52.39593,52.51778 0,29.00823 -23.45972,52.52185 -52.39593,52.52185 -28.9372,0 -52.39287,-23.51362 -52.39287,-52.52185 z m -72.95472,0 c 6.48297,-0.82297 17.28995,-8.253081 21.09702,-12.995836 -1.33794,5.880691 -1.44032,22.900966 0.12367,28.781656 -4.34529,-6.7057 -14.63332,-14.9598 -21.22069,-15.78582 z M 244.0236,49.370203 c 8.23346,0 14.71745,8.147419 14.71745,17.432774 0,9.285356 -6.48399,17.437855 -14.71745,17.437855 H 215.72395 V 49.370203 Z m -0.10338,77.471097 c 8.23244,0 14.71744,8.15148 14.71744,17.43379 0,9.28637 -6.485,17.43481 -14.71744,17.43481 h -28.29966 v -34.8686 z m 163.08283,83.94921 C 464.66766,210.76815 511.5942,162.74115 511.58103,104.92994 511.56987,45.899497 464.66766,0.04371976 407.00305,5.4946177e-7 349.40535,-0.04162544 319.97554,42.458256 312.70398,59.612644 312.7719,33.860743 287.45121,3.4646403 257.83287,3.4321278 h -95.4262 V 209.76331 l 88.96958,0.0173 c 35.87021,0 61.39463,-31.15609 61.43822,-57.87219 8.18784,16.81403 36.59088,58.90243 94.18858,58.88211 z"
id="Fill-16"
fill="#000000"
style="stroke-width:1.01668" />
</g>
<metadata
id="metadata439">
<rdf:RDF>
<cc:Work
rdf:about="" />
</rdf:RDF>
</metadata>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<svg viewBox="0 0 1000 328.483" width="1000" height="328.483" xmlns="http://www.w3.org/2000/svg">
<path d="M 157.178 102.503 L 106.249 102.503 C 88.379 102.503 79.393 107.315 79.393 107.315 L 79.393 0 L 0 0 L 0 328.483 L 79.393 328.483 L 79.393 195.939 C 79.393 184.214 88.937 174.72 100.679 174.72 L 146.897 174.72 C 158.657 174.72 168.167 184.214 168.167 195.939 L 168.167 328.483 L 247.594 328.483 L 247.594 185.674 C 247.594 125.611 207.453 102.503 157.178 102.503 Z M 920.572 102.503 L 920.572 235.029 C 920.572 246.773 911.063 256.266 899.304 256.266 L 853.103 256.266 C 841.343 256.266 831.833 246.773 831.833 235.029 L 831.833 102.503 L 752.39 102.503 L 752.39 241.648 C 752.39 298.525 788.883 328.483 842.82 328.483 L 920.589 328.483 L 920.589 328.071 C 970.271 328.071 1000 292.825 1000 241.648 L 1000 102.503 L 920.572 102.503 Z M 472.572 235.029 C 472.572 246.773 463.046 256.266 451.286 256.266 L 405.068 256.266 C 393.308 256.266 383.799 246.773 383.799 235.029 L 383.799 102.503 L 304.371 102.503 L 304.371 241.648 C 304.371 298.525 340.867 328.483 394.803 328.483 L 472.572 328.483 L 472.572 328.071 C 522.255 328.071 551.999 292.825 551.999 241.648 L 551.999 102.503 L 472.572 102.503 L 472.572 235.029 Z M 612.522 328.483 L 691.965 328.483 L 691.965 0 L 612.522 0 L 612.522 328.483 Z" fill-rule="evenodd" style="fill: rgb(28, 231, 131);"/>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 21 KiB

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 1000 273.70112"
version="1.1"
id="svg4"
sodipodi:docname="Max_(streaming_service)_2023.svg"
width="1000"
height="273.70111"
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs8" />
<sodipodi:namedview
id="namedview6"
pagecolor="#ffffff"
bordercolor="#111111"
borderopacity="1"
inkscape:showpageshadow="0"
inkscape:pageopacity="0"
inkscape:pagecheckerboard="1"
inkscape:deskcolor="#d1d1d1"
showgrid="false"
inkscape:zoom="0.70710678"
inkscape:cx="556.49304"
inkscape:cy="164.04877"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg4" />
<path
id="path321"
style="fill:#002be7;stroke-width:1.66668"
d="M 157.65039 0 C 130.36708 0 102.65141 12.132694 67.134766 39.416016 L 67.134766 6.9335938 L 0 6.9335938 L 0 266.76758 L 71.466797 266.76758 L 71.466797 105.23438 C 102.65013 80.551063 116.9328 72.75 128.63281 72.75 C 142.48282 72.75 151.58398 81.416433 151.58398 103.06641 L 151.58398 266.76758 L 223.0332 266.76758 L 223.0332 104.80078 C 254.21652 80.550789 268.0845 72.75 280.20117 72.75 C 294.06785 72.75 303.15039 81.416433 303.15039 103.06641 L 303.15039 266.76758 L 374.60156 266.76758 L 374.60156 77.951172 C 374.60156 19.484531 341.25116 0 309.20117 0 C 281.91786 0 254.1997 11.26577 217.81641 38.982422 C 206.14973 9.9491013 180.6004 0 157.65039 0 z M 519.70312 0 C 448.68664 0 389.78516 61.06644 389.78516 136.84961 C 389.78516 212.63276 448.68664 273.70117 519.70312 273.70117 C 554.78635 273.70117 585.10401 260.71933 608.50391 232.55273 L 608.50391 266.76758 L 676.50195 266.76758 L 676.50195 6.9335938 L 608.50391 6.9335938 L 608.50391 41.148438 C 585.10401 12.98184 554.78635 0 519.70312 0 z M 689.05273 6.9335938 C 718.50077 52.830535 751.84935 93.977749 790.83008 135.125 C 751.84935 177.98882 718.50077 222.60385 689.05273 266.76758 L 775.23047 266.76758 C 795.57911 233.85311 818.52937 203.97038 844.96094 175.82227 C 870.94256 203.97038 892.58976 233.85311 912.95508 266.76758 L 1000 266.76758 C 970.11866 221.30393 937.63698 177.98882 898.65625 135.125 C 937.2037 93.977749 970.11866 51.547287 1000 6.9335938 L 914.68945 6.9335938 C 893.47419 39.848067 870.52591 67.562237 844.96094 94.84375 C 818.97934 67.562237 796.02909 39.848067 775.23047 6.9335938 L 689.05273 6.9335938 z M 530.51953 60.201172 C 572.95278 60.201172 607.16992 94.41636 607.16992 136.84961 C 607.16992 179.28284 572.95278 213.5 530.51953 213.5 C 488.08629 213.5 453.86914 179.29951 453.86914 136.84961 C 453.86914 94.399693 488.08629 60.201172 530.51953 60.201172 z M 530.51953 77.517578 C 498.03626 77.517578 471.61913 103.933 471.61914 136.84961 C 471.61913 169.7662 498.03626 196.18359 530.51953 196.18359 C 563.00281 196.18359 589.41797 169.7662 589.41797 136.84961 C 589.41797 103.933 563.00281 77.517578 530.51953 77.517578 z " />
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg3100"
sodipodi:docname="NBC_1986_Hop.svg"
inkscape:version="0.91 r13725"
x="0px"
y="0px"
width="567.188px"
height="559px"
viewBox="0 0 567.188 559"
enable-background="new 0 0 567.188 559"
xml:space="preserve"><metadata
id="metadata18"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs16" /><sodipodi:namedview
inkscape:cx="-82.504685"
inkscape:cy="352.39744"
showgrid="false"
inkscape:zoom="0.70710678"
gridtolerance="10"
bordercolor="#666666"
guidetolerance="10"
objecttolerance="10"
pagecolor="#ffffff"
id="namedview3102"
borderopacity="1"
inkscape:window-height="709"
inkscape:pageopacity="0"
inkscape:window-width="1366"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg3100"
inkscape:pageshadow="2"
inkscape:window-x="-8" /><g
id="g4"><path
id="path3113"
inkscape:connector-curvature="0"
fill="#FFFFFF"
d="M283.575,43.267c-8.844-22.077-30.385-45.92-70.727-42.645 c-51.391,5.587-67.406,54.837-59.641,84.219c-20.467-13.86-55.272-19.955-85.651,6.067c-39.223,39.319-18.243,92.492,3.319,105.247 c-23.764-2.201-61.321,13.857-69.63,55.861c-8.839,52.152,30.918,82.555,69.63,82.555h429.281c44.766,0,69.605-38.727,66.818-75.25 c-4.393-47.667-48.012-65.956-71.805-62.038c19.879-11.09,46.43-63.189,6.059-104.146c-32.045-30.48-72.898-19.391-87.262-6.096 c7.744-25.463-4.953-78.098-56.93-86.424C353.446,0.215,349.987,0,346.69,0C307.012,0.004,289.173,29.007,283.575,43.267" /><path
id="path3115"
inkscape:connector-curvature="0"
fill="#0082C7"
d="M74.707,99.207c-22.665,20.517-30.914,67.005,9.943,94.181 l162.993,111.825l-79.031-181.059C152.052,81.428,106.748,72.111,74.707,99.207"
style="fill:#f37021;fill-opacity:1" /><path
id="path3117"
inkscape:connector-curvature="0"
fill="#22B14C"
d="M215.012,11.176c-26.494,0.539-66.277,32.09-48.572,80.268 l81.736,192.771l28.723-202.758C283.546,31.076,245.419,7.819,215.012,11.176"
style="fill:#cc004c;fill-opacity:1" /><path
id="path3119"
inkscape:connector-curvature="0"
fill="#00A240"
d="M289.657,73.725h15.455c0,0,8.254,0,9.377,3.893 c-6.082,4.967-22.639,5.589-20.441,32.121l25.984,174.45l81.18-193.278c16.605-43.155-18.25-79.196-49.168-80.298 c-1.443-0.104-2.893-0.188-4.391-0.188C319.901,10.424,288.1,30.592,289.657,73.725"
style="fill:#6460aa;fill-opacity:1" /><path
id="path3121"
inkscape:connector-curvature="0"
fill="#F07800"
d="M397.944,125.795l-76.785,178.886l162.947-112.415 c37.561-26.642,31.502-69.236,10.477-90.289c-8.814-9.909-24.998-17.564-42.143-17.564 C432.186,84.41,410.509,95.153,397.944,125.795"
style="fill:#0089d0;fill-opacity:1" /><path
id="path3123"
inkscape:connector-curvature="0"
fill="#E96813"
d="M465.862,217.72L312.835,324.607h188.418 c38.656,0,63.498-39.859,52.455-76.434c-7.396-22.989-29.279-41.036-54.678-41.062C488.339,207.116,477.001,210.336,465.862,217.72 "
style="fill:#0db14b;fill-opacity:1" /><path
id="path3125"
inkscape:connector-curvature="0"
fill="#4D6DF3"
d="M70.316,324.607h185.638L102.89,217.72 c-35.36-22.72-75.123-9.426-89.477,28.276C1.246,289.156,31.625,324.607,70.316,324.607"
style="fill:#fcb711;fill-opacity:1" /><path
id="path3127"
inkscape:connector-curvature="0"
d="M275.901,470.85h34.438c7.916,0.498,21.949,7.41,21.949,23.779 c0,17.121-14.564,24.029-22.455,24.809h-33.932V470.85 M275.376,394.629h28.346c9.689,0.523,21.146,7.683,21.146,20.976 c0,13.039-8.662,21.729-19.869,23.278h-29.623V394.629 M236.622,362.91v188.215h91.324c21.676,0,47.443-21.725,47.443-50.113 c0-29.66-19.377-44.227-31.637-50.113c0,0,22.449-13.04,21.451-41.178c-1.021-37.85-35.986-46.811-47.973-46.811H236.622" /><polygon
id="polygon3129"
points="96.549,551.125 96.549,442.719 214.919,558.285 214.919,362.91 175.143,362.91 175.143,468.543 56.745,355.256 56.745,551.125 " /><path
id="path3131"
inkscape:connector-curvature="0"
d="M381.784,454.979C382.782,514.5,425.548,559,480.526,559 c13.035,0,26.768-2.467,40.803-7.875v-38.35c-11.123,6.797-23.5,10.074-35.627,10.074c-33.27,0-64.662-24.619-63.363-69.398 c2.242-36.324,31.979-61.406,64.027-61.406c11.736,0,23.807,3.381,34.963,10.767V365.49c-13.008-5.273-25.938-7.631-38.393-7.631 C428.096,357.858,382.837,404.117,381.784,454.979" /></g></svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

@@ -0,0 +1,88 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
id="Netflix_Symbol_RGB"
viewBox="0 0 551.11109 999.99998"
version="1.1"
width="551.11108"
height="1000"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<metadata
id="metadata12">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs4">
<linearGradient
id="linearGradient35887">
<stop
style="stop-color:#b1060f;stop-opacity:1;"
offset="0"
id="stop35883" />
<stop
style="stop-color:#7b010c;stop-opacity:1"
offset="0.62500739"
id="stop36053" />
<stop
style="stop-color:#b1060f;stop-opacity:0;"
offset="1"
id="stop35885" />
</linearGradient>
<linearGradient
id="linearGradient19332">
<stop
style="stop-color:#b1060f;stop-opacity:1"
offset="0"
id="stop19328" />
<stop
style="stop-color:#7b010c;stop-opacity:1"
offset="0.54607224"
id="stop19560" />
<stop
style="stop-color:#e50914;stop-opacity:0;"
offset="1"
id="stop19330" />
</linearGradient>
<style
id="style2">.cls-1{fill:#e50914;}</style>
<linearGradient
xlink:href="#linearGradient19332"
id="linearGradient13368"
x1="78.23394"
y1="423.76712"
x2="221.66281"
y2="365.09167"
gradientUnits="userSpaceOnUse" />
<linearGradient
xlink:href="#linearGradient35887"
id="linearGradient35889"
x1="456.36462"
y1="521.55957"
x2="309.67599"
y2="583.49475"
gradientUnits="userSpaceOnUse" />
</defs>
<path
style="fill:url(#linearGradient13368);stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
d="M -1.1524947,-1.1524946 2.3049893,1002.6704 C 75.577724,988.55904 133.19716,990.10098 198.22908,984.23044 V 0 Z"
id="path6055" />
<path
style="fill:url(#linearGradient35889);stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
d="m 353.81586,0 h 199.38158 l 2.30498,1000.3654 -202.83905,-33.42238 z"
id="path678" />
<path
style="fill:#e50914;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 1.1524964,-3.6590427e-7 C 5.7624764,11.524946 346.90086,981.92546 346.90086,981.92546 c 56.0558,-0.40033 131.2191,8.75315 205.1441,17.28745 L 197.07656,-3.6590427e-7 Z"
id="path362" />
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

@@ -0,0 +1,95 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1000px" height="622.214px" viewBox="-161.599 -100.544 1000 622.214"
enable-background="new -161.599 -100.544 1000 622.214" xml:space="preserve">
<path fill="#0064FF" d="M283.887,219.392c-2.459-1.02-6.49-5.543,0.216-18.138l15.578-32.558c0.473-0.984-0.664-2.216-1.374-1.38
l-13.621,13.695c-6.445,6.727-17.378,25.635-19.495,29.134L248.643,237.5c1.229-0.039,2.258,0.927,2.297,2.156
c0.012,0.405-0.085,0.805-0.283,1.159l-15.125,25.404c-3.693,6.3,2.942,10.704,3.841,9.254c23.773-38.291,37.6-35.234,37.6-35.234
l7.936-18.377c0.418-0.921,0.01-2.006-0.911-2.424C283.964,219.421,283.926,219.407,283.887,219.392z M337.935-100.544
c-135.92,0-246.104,110.13-246.104,245.983c-0.072,52.591,16.8,103.807,48.115,146.058c10.324-4.456,16.061-11.117,20.159-16.218
l45.823-58.576c0.965-1.235,2.225-2.206,3.665-2.825l6.898-2.967l75.345-95.524l10.925-8.549l22.45-31.233
c0.58-0.808,1.287-1.519,2.094-2.104l9.795-7.117c2.42-1.758,5.688-1.786,8.136-0.068l11.886,8.339
c6.306,4.423,11.417,10.338,14.88,17.217l47.61,83.586c0.777,1.595,2.098,2.86,3.724,3.568c9.337,4.646,15.041,5.467,27.261,18.735
c5.702,6.186,30.688,34.117,65.705,77.526c5.089,6.964,11.902,12.484,19.769,16.02c31.22-42.219,48.034-93.359,47.96-145.868
C584.031,9.585,473.852-100.544,337.935-100.544z M158.201,158.997l-15.957-5.18l-9.857,13.56v-16.758l-15.958-5.181l15.958-5.181
v-16.763l9.857,13.563l15.957-5.18l-9.859,13.562L158.201,158.997z M154.418,213.846l-5.183,15.943l-5.183-15.943h-16.771
l13.567-9.854l-5.182-15.942l13.568,9.854l13.569-9.854l-5.183,15.942l13.569,9.854H154.418z M157.621,86.876l5.183,15.942
l-13.569-9.854l-13.568,9.854l5.182-15.942l-13.567-9.854h16.771l5.183-15.942l5.184,15.942h16.771L157.621,86.876z M184.552,50.813
l-9.852-13.563l-15.957,5.18l9.858-13.561l-9.858-13.562l15.957,5.18l9.858-13.562v16.764l15.957,5.171l-15.957,5.182v16.763
L184.552,50.813z M226.495-7.873L221.312,8.07l-5.183-15.942h-16.772l13.569-9.854l-5.182-15.943l13.568,9.852l13.567-9.854
l-5.182,15.956l13.569,9.854h-16.772V-7.873z M279.348-34.791l-9.858,13.563v-16.759l-15.958-5.18l15.958-5.182v-16.763
l9.858,13.563l15.95-5.18l-9.858,13.562l9.859,13.561L279.348-34.791z M346.321-50.157l5.183,15.942l-13.569-9.854l-13.569,9.854
l5.177-15.935l-13.567-9.854h16.771l5.185-15.942l5.183,15.942h16.771L346.321-50.157z M406.374-37.987v16.763l-9.854-13.563
l-15.956,5.181l9.858-13.561l-9.857-13.562l15.957,5.18l9.854-13.563v16.763l15.957,5.182L406.374-37.987z M517.662,131.877
l15.956,5.18l9.855-13.563v16.763l15.958,5.181l-15.958,5.181v16.762l-9.855-13.561l-15.956,5.18l9.869-13.562L517.662,131.877z
M454.556,8.074l-5.186-15.943H432.6l13.564-9.854l-5.171-15.944l13.563,9.854l13.563-9.852l-5.172,15.942l13.565,9.854h-16.771
L454.556,8.074z M491.317,50.817V34.055l-15.957-5.182l15.957-5.171V6.931l9.854,13.562l15.957-5.18l-9.854,13.562l9.854,13.561
l-15.957-5.18L491.317,50.817z M521.443,77.027l5.188-15.942l5.186,15.942h16.77l-13.563,9.854l5.186,15.942l-13.577-9.854
l-13.564,9.854l5.186-15.942l-13.578-9.854H521.443z M531.816,213.846l-5.186,15.943l-5.188-15.943h-16.77l13.578-9.854
l-5.186-15.942l13.564,9.854l13.577-9.854l-5.186,15.942l13.563,9.854H531.816z M427.075,287.598
c1.182-1.718,3.103-6.43-0.503-15.162l-10.89-29.273c-1.478-3.737,1.759-6.004,3.931-3.547c0,0,20.582,23.722,25.901,33.627
l10.15,16.843c8.732,0.564,32.83,1.221,56.027,1.221c-2.336-2.319-4.493-4.811-6.457-7.454
c-39.583-49.053-64.687-76.34-64.938-76.61c-8.022-8.717-11.73-10.392-17.849-13.178c-0.886-0.402-1.847-0.836-2.836-1.307v7.447
c0.061,0.503-0.299,0.96-0.803,1.02c-0.407,0.048-0.798-0.18-0.955-0.559L359.658,98.482l-0.162-0.323
c-2.427-4.813-6.004-8.953-10.414-12.052l-5.677-3.989l-27.763,64.021c3.317-0.001,6.008,2.687,6.01,6.004
c0.001,0.821-0.167,1.634-0.494,2.388l-25.651,59.312h23.546c9.1,0,18.114,1.771,26.536,5.22l6.206,2.543
c0,0-18.725,38.509-18.725,58.786c0.027,3.688,0.542,7.355,1.529,10.908h43.163l-1.999-12.155
c16.932,3.78,34.062,6.604,51.311,8.459V287.598z M94.026,349.996c0-39.614-42.017-58.689-91.935-58.689
c-53.398,0-102.392,23.657-120.375,60.339c-4.963,9.773-7.542,20.584-7.528,31.546c-0.227,9.479,2.396,18.807,7.528,26.778
c7.705,11.377,21.466,18.528,41.652,18.528c24.776,0,44.411-13.576,44.411-37.234c0,0,0.364-6.598-7.341-6.598
c-6.239,0-7.893,4.399-7.708,6.598c0.922,18.525-10.092,33.383-29.728,33.383c-22.014,0-31.197-18.708-31.197-38.698
c0-40.902,30.829-68.05,62.942-79.786c15.007-5.667,30.944-8.47,46.985-8.259c36.333,0,66.061,13.942,66.061,51.361
c0,31.175-26.24,57.771-57.623,60.157l1.284-4.217c6.425-22.929,14.315-48.054,27.157-66.58c0.739-1.107,2.02-2.936,3.489-4.768
l-1.833-2.203c-2.746,1.666-5.383,3.503-7.897,5.501c-60.183,46.956-62.011,179.011-142.209,179.011
c-2.762,0-5.519-0.185-8.256-0.551c-16.696-2.75-25.51-13.941-25.51-29.524c0-3.118,1.103-7.339,1.103-9.72
c0.127-4.43-3.361-8.123-7.791-8.252c-0.035-0.001-0.068-0.001-0.101-0.001h-0.915c-7.155,0-10.092,5.678-10.276,13.754
c-0.548,23.294,16.696,36.862,43.309,39.434c2.933,0.182,5.87,0.364,8.99,0.364c62.571,0,100.923-47.32,117.257-104.729
c8.273-0.97,16.441-2.687,24.403-5.131C61.374,403.73,94.026,384.298,94.026,349.996z M690.057,363.75h-22.029l-4.949,11.557
l-8.629,19.441h-10.269l-3.133,6.604h10.652l-12.853,28.43c-9.161,19.991-23.479,39.617-31.738,39.617
c-1.832,0-2.94-0.738-2.94-2.565s0.547-3.49,2.571-8.623c2.571-6.057,6.796-14.858,9.914-21.276
c4.58-9.353,11.924-23.843,11.924-30.996c0-7.154-4.581-12.841-13.579-12.841c-10.091,0-19.267,6.059-27.718,14.854l5.511-13.204
h-20.729l-16.889,38.517c-6.782,13.573-20.553,36.133-29.182,36.133c-1.832,0-2.571-1.103-2.571-2.935
c0.179-1.647,0.612-3.257,1.286-4.771c0.738-1.65,10.83-25.309,10.83-25.309l18.351-42.002h-22.384l-17.805,40.898
c-5.496,12.658-19.443,34.117-28.442,34.117c-1.567,0.153-2.964-0.992-3.117-2.563c0,0,0,0,0-0.003v-0.738
c0-2.198,1.655-6.236,2.941-9.172l9.353-20.538l19.266-42.002h-22.192l-4.418,9.537c-3.294,6.418-8.806,13.938-17.611,13.938
c-4.225,0-6.235-1.646-7.151-3.3c-1.285-14.123-10.283-21.644-23.493-21.644c-18.351,0-31.381,10.821-40.011,24.029
c-5.653,9.103-10.094,18.905-13.206,29.158c-7.893,13.026-16.146,23.116-22.754,23.116c-1.653,0-2.756-0.922-2.756-3.12
c0-2.201,2.204-7.151,2.938-8.992l14.497-30.811c4.037-9.533,6.796-15.77,6.796-22.008c0-6.604-4.58-11.376-12.116-11.376
c-10.46,0-21.84,6.057-30.83,15.957c0.305-1.571,0.427-3.173,0.366-4.771c0-7.338-3.667-11.191-11.195-11.191
c-9.539,0-19.447,5.692-28.438,15.958l5.873-14.313h-20.189l-17.062,38.528c-8.073,18.16-21.102,36.139-28.445,36.139
c-1.649,0-2.751-0.924-2.751-3.122c0-3.483,3.854-12.104,5.32-15.59l22.573-51.17c1.651-3.85-9.178-6.238-22.94-6.238
c-14.129,0-28.627,6.973-39.267,15.957c-7.523,6.233-13.029,9.354-15.787,9.354c-0.899,0.192-1.785-0.381-1.979-1.279
c-0.026-0.122-0.038-0.246-0.036-0.37c0-3.119,7.523-11.927,7.523-18.711c0-3.117-1.649-5.137-5.875-5.137
c-8.069,0-17.616,7.705-24.588,15.772l5.873-14.125h-19.815l-17.063,38.52c-8.076,18.16-21.472,37.054-28.812,37.054
c-1.653,0-2.749-0.915-2.749-3.12c0-3.484,3.67-11.917,5.687-16.324l22.572-51.353c1.651-3.85-9.177-6.238-22.942-6.238
c-20.369,0-40.189,13.756-50.647,27.88c-11.559,15.218-19.447,31.361-19.633,44.569c-0.18,10.637,5.318,17.239,16.331,17.239
c12.296,0,22.208-9.719,27.893-17.058c-0.337,1.452-0.584,2.922-0.739,4.404c0,7.332,2.937,12.653,11.927,12.653
c7.889,0,18.35-6.603,26.792-17.058l-6.798,15.592h21.467l21.105-47.872c6.989-15.587,14.88-23.654,17.074-23.654
c0.505-0.097,0.993,0.233,1.091,0.738c0.01,0.058,0.016,0.118,0.016,0.178c0,1.652-3.301,6.059-3.301,10.087
c0,4.029,2.195,7.151,8.076,7.151c4.58,0,9.721-2.202,14.31-5.14c-10.826,14.679-18.173,30.084-18.173,42.743
c-0.181,10.638,5.318,17.239,16.333,17.239c11.558,0,22.385-11.005,28.257-18.342c-0.221,1.704-0.343,3.418-0.366,5.135
c0,7.157,4.039,13.207,12.295,13.207c9.172,0,16.515-5.689,25.69-16.872l-6.796,15.406h22.016l20.183-45.672
c8.809-19.809,20.734-30.451,26.607-30.451c1.467-0.151,2.782,0.915,2.935,2.384c0,0.003,0,0.006,0.001,0.009v0.546
c-0.242,2.228-0.863,4.399-1.834,6.418l-28.967,66.948h22.571l20.554-46.59c8.803-19.989,18.533-29.715,25.872-29.715
c2.201,0,3.122,1.108,3.122,3.486c-0.196,2.554-0.882,5.047-2.019,7.345l-19.821,42.181c-1.825,4.06-2.942,8.4-3.304,12.836
c0,6.421,3.485,12.116,13.399,12.116c12.854,0,22.571-9.721,33.577-24.21v3.116c0.921,11.555,7.342,21.643,24.406,21.643
c20.184,0,36.524-13.94,46.424-36.128c3.744-7.801,6.167-16.173,7.165-24.77c2.21,1.121,4.68,1.63,7.151,1.478
c3.335,0.037,6.621-0.785,9.545-2.388l-3.486,7.517c-4.049,8.439-8.452,17.794-11.924,25.686c-2.199,4.666-3.508,9.702-3.855,14.85
c0,7.884,4.402,13.575,13.386,13.575s21.291-8.438,30.098-20.359h0.191c-0.59,2.465-0.901,4.985-0.931,7.518
c0,6.605,2.024,12.842,11.199,12.842c10.653,0,18.898-7.705,26.979-17.428l-6.796,15.409h22.206l17.806-40.351
c10.092-22.743,20.183-36.496,29.534-36.496c1.607-0.057,2.981,1.148,3.133,2.75v0.542c0,3.855-5.511,14.31-10.461,24.763
c-4.595,9.538-8.082,16.871-10.461,22.563c-2.208,4.794-3.514,9.952-3.855,15.219c0,6.966,3.855,12.287,12.485,12.287
c12.839,0,25.871-12.472,32.83-21.828c-1.57,4.485-2.433,9.186-2.557,13.936c0,12.845,7.697,19.263,18.527,19.263
c7.196-0.055,14.191-2.363,20.006-6.6c8.437-5.872,15.234-14.674,20.922-22.744l-3.855-3.672
c-5.319,7.522-11.199,14.677-17.258,19.079c-3.193,2.699-7.199,4.249-11.378,4.402c-4.579,0-7.52-2.387-7.52-8.251
c0-5.863,2.748-13.759,6.975-24.399c0.176-0.179,6.234-13.755,11.923-26.773c4.772-11.013,9.544-21.646,10.461-23.847h14.495
l2.938-6.604h-14.315L690.057,363.75z M64.122,469.581c-3.118,0-5.32-1.1-5.32-5.135c0.182-10.823,9.171-30.08,20.372-45.489
c7.888-10.638,18.163-18.521,29.174-18.521L94.4,431.61C83.94,455.091,72.563,469.581,64.122,469.581z M201.383,469.581
c-3.117,0-5.319-1.1-5.5-5.135c0.182-10.823,9.172-30.08,20.369-45.489c7.886-10.638,18.165-18.521,29.175-18.521l-13.95,31.175
c-10.64,24.034-21.466,37.971-30.097,37.971H201.383z M445.071,408.875c-0.547,11.918-11.008,40.71-23.301,57.958
c-4.949,6.968-9.176,8.983-12.839,8.983c-5.143,0-6.62-4.221-5.882-10.454c1.094-10.82,10.092-36.131,22.577-53.556
c5.688-7.887,9.545-11.189,13.947-11.189C443.977,400.618,445.262,404.288,445.071,408.875z M787.559,394.747l20.212-46.649h-23.92
l-20.213,46.649h-50.841l-8.481,19.563h50.856l-20.212,46.649h23.92l20.214-46.649h50.84l8.467-19.563H787.559z"/>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="1000"
height="308.04233"
viewBox="110.667 172.481 999.99996 308.04233"
enable-background="new 110.667 172.481 178.667 55.037"
xml:space="preserve"
sodipodi:docname="NBCUniversal_Peacock_Logo.svg"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata
id="metadata47"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs45" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview43"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.1613784"
inkscape:cx="600.65416"
inkscape:cy="103.58227"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<path
d="m 174.92621,267.63008 c -35.44583,0 -64.25921,28.81338 -64.25921,64.2592 v 148.63406 h 30.47009 v -82.49985 l 11.19401,11.80968 44.77604,-17.61377 c 25.49995,-9.95147 42.08387,-32.96636 42.08387,-60.32452 0,-35.44583 -28.81338,-64.2648 -64.2648,-64.2648 z m 11.40669,97.63974 -45.19021,17.61937 v -50.99431 c 0,-20.52421 15.34139,-35.23874 33.78912,-35.23874 18.44772,0 33.78911,14.92162 33.78911,35.23874 0,12.85072 -6.21827,26.94958 -22.38802,33.37494 z m 526.32551,-97.63974 c -35.44583,0 -64.2592,28.81338 -64.2592,64.2592 0,35.44584 28.81337,64.25922 64.2592,64.25922 35.44583,0 64.25921,-28.81338 64.25921,-64.25922 0,-35.44582 -28.81338,-64.2592 -64.25921,-64.2592 z m 0,99.50355 c -19.48317,0 -33.78911,-15.54289 -33.78911,-35.23875 0,-19.69586 14.72012,-35.23874 33.78911,-35.23874 19.48318,0 33.78912,15.54288 33.78912,35.23874 0,19.69586 -14.30594,35.23875 -33.78912,35.23875 z m 139.09676,-70.47749 c 13.2593,0 24.03913,7.25372 29.64174,18.03355 l 23.83764,-18.24064 c -11.60819,-17.20519 -31.09136,-28.60629 -53.47938,-28.60629 -35.45143,0 -64.26481,28.81338 -64.26481,64.25921 0,35.44583 28.81338,64.25921 64.26481,64.25921 22.18093,0 41.86559,-11.40109 53.47938,-28.60629 l -23.83764,-18.24624 c -5.60261,10.78544 -16.38244,18.03915 -29.64174,18.03915 -19.48877,0 -33.78912,-15.54288 -33.78912,-35.23874 0,-19.69586 14.71453,-35.65292 33.78912,-35.65292 z m -259.95287,0 c 13.27049,0 24.05032,7.25372 29.64733,18.03355 l 23.83764,-18.24064 c -11.60819,-17.20519 -31.09696,-28.60629 -53.48497,-28.60629 -35.44583,0 -64.25921,28.81338 -64.25921,64.25921 0,35.44583 28.81338,64.25921 64.25921,64.25921 22.18093,0 41.87678,-11.40109 53.48497,-28.60629 l -23.83764,-18.24624 c -5.59701,10.78544 -16.37684,18.03915 -29.64733,18.03915 -19.48318,0 -33.78912,-15.54288 -33.78912,-35.23874 0,-19.69586 14.51303,-35.65292 33.78912,-35.65292 z M 485.25212,282.97147 c -10.36565,-10.77984 -24.04473,-15.3358 -38.35067,-15.3358 -29.85442,0 -60.11183,27.15667 -60.11183,64.25921 0,37.10255 30.25741,64.25921 60.11183,64.25921 14.30594,0 27.98502,-4.55596 38.35067,-15.33579 v 11.60819 h 30.47569 V 271.56477 h -30.47569 z m -33.78911,84.16216 c -19.47758,0 -34.2033,-15.54289 -34.2033,-35.23875 0,-19.69586 15.1343,-35.23874 34.2033,-35.23874 19.48877,0 33.78911,15.54288 33.78911,35.23874 0,19.69586 -14.30034,35.23875 -33.78911,35.23875 z m 538.55496,-39.59322 h -13.67908 l 52.85811,-56.17713 h -39.17903 l -42.70514,46.02417 V 205.44736 h -30.4701 v 186.98473 h 30.4701 V 358.0217 l 16.79101,-17.83206 35.86001,52.24245 h 36.90105 z M 313.4017,267.63008 c -35.44583,0 -64.25921,28.81338 -64.25921,64.2592 0,35.44584 28.81338,64.25922 64.25921,64.25922 21.14548,0 41.04283,-10.15297 52.44953,-25.90854 l -24.46451,-16.9981 c -2.90485,4.76865 -12.22946,13.88057 -27.98502,13.88057 -14.50744,0 -26.32831,-8.70334 -31.29845,-21.34698 h 92.664 c 1.04105,-4.55596 1.45522,-9.11752 1.45522,-13.88617 0.1959,-35.44023 -27.36935,-64.2592 -62.82077,-64.2592 z m -31.09136,50.37304 c 4.97573,-12.64923 16.79101,-21.34698 31.09136,-21.34698 14.51303,0 25.49995,8.70334 30.06151,21.34698 z"
id="path28"
inkscape:connector-curvature="0"
style="stroke-width:5.59700441" />
<path
d="m 1092.2193,374.18585 c -10.1586,0 -18.4534,8.28917 -18.4534,18.45333 0,10.15296 8.2892,18.44213 18.4534,18.44213 10.1529,0 18.4477,-8.28357 18.4477,-18.44213 0,-10.16416 -8.2892,-18.45333 -18.4477,-18.45333 z"
id="path30"
inkscape:connector-curvature="0"
style="fill:#069de0;stroke-width:5.59700441" />
<path
d="m 1092.2193,323.81281 c -10.1586,0 -18.4534,8.28916 -18.4534,18.45332 0,10.15297 8.2892,18.44214 18.4534,18.44214 10.1529,0 18.4477,-8.28358 18.4477,-18.44214 -0.2071,-10.37125 -8.2892,-18.45332 -18.4477,-18.45332 z"
id="path32"
inkscape:connector-curvature="0"
style="fill:#6e55dc;stroke-width:5.59700441" />
<path
d="m 1092.2193,424.55889 c -10.1586,0 -18.4534,8.28917 -18.4534,18.45333 0,10.15296 8.2892,18.44213 18.4534,18.44213 10.1529,0 18.4477,-8.28357 18.4477,-18.44213 0,-10.16416 -8.2892,-18.45333 -18.4477,-18.45333 z"
id="path34"
inkscape:connector-curvature="0"
style="fill:#05ac3f;stroke-width:5.59700441" />
<path
d="m 1092.2193,273.22708 c -10.1586,0 -18.4534,8.28916 -18.4534,18.45332 0,10.15297 8.2892,18.44773 18.4534,18.44773 10.1529,0 18.4477,-8.28916 18.4477,-18.44773 -0.2071,-10.15856 -8.2892,-18.45332 -18.4477,-18.45332 z"
id="path36"
inkscape:connector-curvature="0"
style="fill:#ef1541;stroke-width:5.59700441" />
<path
d="m 1092.2193,222.85404 c -10.1586,0 -18.4534,8.28916 -18.4534,18.45332 0,10.15297 8.2892,18.44773 18.4534,18.44773 10.1529,0 18.4477,-8.28916 18.4477,-18.44773 -0.2071,-10.15856 -8.2892,-18.45332 -18.4477,-18.45332 z"
id="path38"
inkscape:connector-curvature="0"
style="fill:#ff7112;stroke-width:5.59700441" />
<path
d="m 1092.2193,172.481 c -10.1586,0 -18.4534,8.28916 -18.4534,18.45332 0,10.15297 8.2892,18.44773 18.4534,18.44773 10.1529,0 18.4477,-8.28916 18.4477,-18.44773 -0.2071,-10.15856 -8.2892,-18.45332 -18.4477,-18.45332 z"
id="path40"
inkscape:connector-curvature="0"
style="fill:#fccc12;stroke-width:5.59700441" />
</svg>

After

Width:  |  Height:  |  Size: 6.7 KiB

@@ -0,0 +1,58 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
viewBox="0 0 999.99998 231.29093"
version="1.1"
id="svg8"
sodipodi:docname="Starz_2022.svg"
width="1000"
height="231.29092"
inkscape:version="1.1.2 (b8e25be833, 2022-02-05)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs12" />
<sodipodi:namedview
id="namedview10"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
showgrid="false"
inkscape:zoom="0.5"
inkscape:cx="579"
inkscape:cy="110"
inkscape:window-width="1366"
inkscape:window-height="705"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<g
id="g1202"
transform="matrix(1.1692265,0,0,1.1692265,-119.93909,-23.942424)">
<path
d="m 261.67951,76.978246 h -54.27813 c 0,-9.149836 -8.83939,-14.904602 -22.9881,-14.904602 -16.10939,0 -22.96403,7.490139 -22.96403,14.754111 0,29.991505 109.14448,0.343979 109.14448,79.267335 0,41.21554 -33.77013,62.19739 -83.0941,62.19739 -52.78527,0 -84.91977,-23.36562 -84.91977,-62.91029 h 57.08328 c 0,12.11493 10.05106,18.54734 27.59226,18.54734 14.0868,0 26.80799,-4.18794 26.80799,-15.68372 0,-30.49199 -106.7435,-1.51178 -106.7435,-80.811792 0,-33.018525 29.66301,-56.95687 78.02815,-56.95687 48.13038,0 76.33147,22.810094 76.33147,56.501098 z"
id="path2"
style="opacity:1;mix-blend-mode:normal;fill:#006576;stroke-width:0.859947" />
<path
id="path961"
style="opacity:1;mix-blend-mode:normal;fill:#006576;stroke-width:0.85466"
d="M 471.23788,26.89632 397.544,213.00439 h 59.59162 l 6.71235,-20.22547 h 64.91543 l 6.714,20.22547 h 59.59165 L 521.37515,26.89632 Z m 25.06864,68.083027 20.07527,60.486163 h -40.14888 z" />
<path
id="path957"
style="opacity:1;mix-blend-mode:normal;fill:#006576;stroke-width:0.85466"
d="M 604.325,26.894651 V 213.00606 h 56.15202 v -78.26169 l 46.64591,78.26002 h 66.60773 l -47.65729,-68.87576 c 18.51107,-7.99363 35.84477,-26.38893 35.84477,-56.098609 0,-43.417552 -34.13288,-61.133701 -78.37518,-61.133701 z m 56.15202,45.884906 h 23.95046 c 11.44988,0 21.62069,4.199818 21.62069,18.211104 0,14.012149 -9.90502,18.211099 -21.62069,18.211099 h -23.95046 z" />
<path
style="opacity:1;mix-blend-mode:normal;fill:#006576;stroke-width:0.85466"
d="M 949.56962,26.895749 869.0855,162.08748 h 88.76065 l -28.30547,50.9172 H 778.254 L 858.64155,77.812938 H 784.96052 V 26.895749 Z"
id="path953" />
<path
style="opacity:1;mix-blend-mode:normal;fill:#006576;stroke-width:0.85466"
d="M 427.05467,26.895749 V 77.812938 H 374.94439 V 213.00468 H 318.79411 V 77.812938 H 267.412 V 26.895749 Z"
id="path4" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="1000.486px"
height="538.73px"
viewBox="0 0 1000.486 538.73"
enable-background="new 0 0 1000.486 538.73"
xml:space="preserve"
inkscape:version="0.91 r13725"
sodipodi:docname="TBS.svg"><metadata
id="metadata13"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs11" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="640"
inkscape:window-height="480"
id="namedview9"
showgrid="false"
inkscape:zoom="0.30984941"
inkscape:cx="500.24301"
inkscape:cy="269.36499"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="Layer_1" /><g
id="g3"
style="fill:#000000"><path
fill="#242021"
d="M942.465,77.745l-29.806-29.77L864.684,0H0v390.453l54.461,54.425l54.371,54.382l39.456,39.471h852.199 V135.806L942.465,77.745z M769.112,349.786c-66.169-13.476-124.3-32.446-124.3-94.852v-0.815 c0-56.049,43.818-99.487,125.136-99.487h55.959l77.328,77.985H778.682c-14.774,0-21.503,5.065-21.503,12.235v0.858 c0,7.981,8.003,13.046,39.195,18.925c75.429,13.904,126,35.838,126,95.234v0.861c0,61.93-50.989,99.867-130.229,99.867h-73.434 l-77.865-77.983h143.855c17.69,0,25.28-4.585,25.28-12.612v-0.814C809.982,360.73,800.722,356.094,769.112,349.786 M480.204,159.122c85.894,0,155.527,69.674,155.527,155.542c0,85.919-69.636,155.542-155.527,155.542 c-34.035,0-65.479-10.944-91.092-29.483V460.6h-89.62V77.222h101.713v103.455C424.365,167.008,451.354,159.122,480.204,159.122 M89.944,77.222h105.712v96.764h77.483v105.749h-77.483v180.864l-105.712-105.7V77.222z"
id="path5"
style="fill:#000000" /><path
fill="#242021"
d="M480.193,368.71c29.815,0,54.018-24.229,54.018-54.047s-24.2-53.996-54.018-53.996 c-29.832,0-54.021,24.179-54.021,53.996S450.361,368.71,480.193,368.71"
id="path7"
style="fill:#000000" /></g></svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 1684 739.01331"
height="739.01331"
width="1684"
xml:space="preserve"
id="svg2"
version="1.1"><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs6" /><g
transform="matrix(1.3333333,0,0,-1.3333333,0,739.01333)"
id="g10"><g
transform="scale(0.1)"
id="g12"><path
id="path14"
style="fill:#d91e25;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 11060.2,5013.91 c -345.7,330.34 -811.8,510.18 -1286.79,527.19 -473.94,17.55 -952.98,-121.74 -1340.21,-396.05 -339.04,-240.14 -602,-577.39 -782.65,-948.85 -222.18,196.16 -451.99,386.09 -729.61,498.31 -257.86,104.83 -570.3,153.13 -832.91,34.84 -118.82,-53.39 -221.15,-140.4 -286.7,-253.42 -66.28,-115.09 -93.26,-252.32 -78.8,-384.42 14.21,-127.7 70.17,-242.23 161.94,-332.17 96.74,-94.2 219.74,-155.88 343.83,-206.38 142.46,-58.24 290.5,-99.86 437.4,-144.42 140.14,-42.76 279.6,-86.74 416.53,-138.74 264.79,-100.73 525.16,-232.56 730.72,-431.06 411.76,-399.52 544.73,-1005.14 475.69,-1560.84 -19.18,-156.56 -56.58,-310.99 -112.75,-458.584 -13.55,-34.738 -27.25,-69.308 -42.57,-103.05 -4.31,-8.973 -10.69,-26.289 -10.69,-26.289 0,0 33.32,-36.539 48.12,-50.75 46.44,-46.403 95.46,-90.633 146.25,-132.793 187.34,-155.114 401.21,-277.282 629.12,-363.153 452.68,-169.9138 963.39,-195.9294 1423.48,-39.16 257.9,88.117 500.1,233.641 690.6,430.223 V 77.418 H 12630 V 5468.07 H 11060.2 Z M 10013.7,1425.94 c -245.26,0 -477.93,97.77 -660.27,258.37 -196.17,172.09 -330.3,406.56 -402.72,656.16 -146.87,508.63 -27.5,1106.93 356.49,1484.16 180.26,176.94 417.21,287.48 671.07,294.96 254.03,8 504.53,-86.61 697.93,-250.54 335.8,-285.23 489.4,-749.37 468.1,-1181.39 -21.9,-433.95 -227.1,-876.32 -605.3,-1110.95 -157.2,-97.4 -340.7,-150.77 -525.3,-150.77 M 5221.82,2298.8 c -73.52,28.9 -146.21,60.61 -216.62,95.34 -133.25,66.54 -261.59,145.22 -377.24,240.26 -211.45,175.42 -366.32,405.31 -458.51,663.87 -94.32,264.51 -127.75,552.79 -110.95,832.93 17.32,299.5 97.81,594.57 246.27,856.16 116.37,205.28 270.69,387.59 451.02,539.49 -333.03,0 -1581.45,-0.54 -1581.45,-0.54 0,0 -2.56,-1667.9 -2.56,-2332.47 v -497.71 c 0,-154.25 -3.25,-309.06 -21.92,-462.23 -33.88,-272.1 -122.03,-588.99 -378.71,-732.58 -124.22,-69.44 -269.11,-90.18 -409.81,-85.07 -141.23,4.69 -284.01,40.77 -397.43,128.23 -224.86,172.75 -295.7,483.04 -320.71,751.01 -14.48,148.42 -14.48,297.54 -14.48,446.25 v 498.99 2285.58 L 1.13672,5527.15 c 0,0 1.11328,-2219.6 -1.04297,-2884.16 C -0.851563,2319.82 3.76563,1994.37 71.082,1677 129.586,1396.75 233.965,1123.27 395.738,886.285 552.137,656.234 761.934,468.93 1003.59,332.551 1263.1,185.477 1553.95,100.672 1848.28,57.6523 2143.96,14.2148 2448.1,8.69531 2745.71,34.1211 c 284.55,24.6328 567.86,82.1799 831.58,191.7539 250.75,104.434 478.73,256.199 662.58,456.199 175.09,190.926 307.36,418.456 395.24,661.376 7.03,19.66 14.04,39.88 20.53,59.51 193.58,-190.75 406.2,-367.84 649.47,-491.769 239.12,-122.613 519.71,-195.339 788.61,-147.902 133,23.531 260.58,80.387 358.32,174.297 93.46,88.844 155.15,207.244 177.54,333.934 21.05,119.54 9.73,246.23 -43.4,356.49 -49.13,101.29 -130.27,183.44 -223.25,246.13 -133.93,91.46 -292.88,147.31 -447.13,197.55 -171.67,56.02 -428.98,131.25 -490.53,152.71 -62.41,21.16 -169.6,60.72 -203.45,74.4" /></g></g></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

@@ -0,0 +1,4 @@
<?xml version="1.0"?>
<svg width="379.6" height="155.7" xmlns="http://www.w3.org/2000/svg">
<path d="M325.2,113.5H272l53.2-59.1V113.5L325.2,113.5z M368.7,113.5V0L262.8,117.6h-81.3c-3.5,0-6.3-2.8-6.3-6.3 c0-2.4,1.3-4.4,3.2-5.5c0.1,0,0.1-0.1,0.2-0.1c8.2-4.2,16.1-6.4,20.6-7.7l1.4-0.4c2.7-0.8,6.1-1.5,9.6-2.3c1.2-0.3,2.5-0.6,3.8-0.8 c21.5-4.9,50.6-13.3,50.6-47.6c0-7.6-1.9-15.3-6.3-22.2c-7-11-20.2-19.9-41.8-22.5c-4.2-0.5-8.8-0.8-13.7-0.8 c-33.5,0-56.1,17.6-56.9,44c0,0.5,0,0.9,0,1.4c0,14.6,11.8,26.4,26.4,26.4c14.6,0,26.4-11.9,26.4-26.4c0-14.6-11.8-26.4-26.4-26.4 c-0.8,0-1.6,0-2.4,0.1c0,0-0.1,0-0.1,0c-5.4,0.5-10.4,2.7-14.3,5.9c3-4.7,7.1-8.7,12.1-12c0.1,0,0.1-0.1,0.2-0.1c9-5.8,21-9,35.1-9 c1.5,0,3,0,4.4,0.1c0.3,0,0.6,0,0.9,0c3.1,0.4,5.5,3,5.5,6.2v73.2c0,3.4-2.4,6.3-5.5,7.1c-0.2,0-0.3,0.1-0.5,0.1 c-3,0.6-5.7,1.3-8.1,2l-1.3,0.4c-6.5,1.8-20,5.6-31.9,14.7c-4.2,3.2-7.8,6.7-10.9,10.6c-7.8,9.9-11.7,22-11.7,36.1h84.9l34.3-38.1 h62.3v38.1h43.5v-38.1h10.9v-4.1H368.7 M22,118.3L48.8,61l26.7,57.3H22z M57.7,32.2c-5.4,11.3-16.6,12.5-16.6,12.5l5.4,11.5l0,0.1h0 L0,155.7h4.5l15.6-33.3h57.3l15.5,33.3h48L70.6,4.7L57.7,32.2"></path>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="900.14px" height="900.141px" viewBox="0 0 900.14 900.141" enable-background="new 0 0 900.14 900.141"
xml:space="preserve">
<path fill="#FFFFFF" d="M450.069,0C201.503,0,0,201.503,0,450.071s201.503,450.07,450.069,450.07
c248.568,0,450.071-201.503,450.071-450.07S698.637,0,450.069,0z M33.109,450.071c0-48.351,8.128-95.443,24.204-140.321
l43.292,30.07v337.863c-13.458-20.62-25.057-42.439-34.743-65.328C44.137,560.971,33.109,506.372,33.109,450.071z M744.906,744.908
c-38.301,38.299-82.896,68.369-132.543,89.37c-51.384,21.736-105.984,32.753-162.293,32.753c-56.299,0-110.9-11.017-162.282-32.753
c-49.656-21.001-94.244-51.071-132.552-89.37c-12.079-12.089-23.34-24.795-33.757-38.094h230.427l90.743-65.694V283.555
l-90.743-67.571H104.923c14.725-21.659,31.534-41.959,50.313-60.747c38.308-38.309,82.896-68.378,132.552-89.373
c51.382-21.736,105.983-32.753,162.282-32.753c56.309,0,110.91,11.017,162.293,32.753c49.646,20.995,94.242,51.064,132.543,89.373
c18.788,18.787,35.586,39.088,50.312,60.747h-65.882l-14.8,32.679l-43.988-32.679h-102.34l-90.088,67.571V641.12l89.665,65.694
h210.888C768.256,720.113,756.992,732.819,744.906,744.908z M192.605,328.332h82.409c23.058,0,41.743,18.684,41.743,41.742v184.78
c0,23.05-18.685,41.741-41.743,41.741h-49.44V352.225L192.605,328.332z M810.533,659.841V532.432H693.907v64.163h-50.376
c-22.037,0-39.896-17.857-39.896-39.893v-204.43l-32.989-23.94h123.261v70.037h106.904l21.265-136.866
c4.355,8.586,8.43,17.352,12.2,26.275c21.736,51.383,32.756,105.983,32.756,162.292c0,56.301-11.02,110.9-32.756,162.284
C827.342,628.75,819.42,644.592,810.533,659.841z"/>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

@@ -0,0 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="700" height="294.4" viewBox="0 0 700.00001 294.42258">
<path d="M602.2 128.6c-11.7 2.7-42.6 4.2-42.6 4.2l-3.8 12.2s15.3-1.3 26.5-.2c0 0 3.6-.3 4 4 .2 4.4-.3 9-.3 9s-.3 2.7-4 3.4c-4.3.7-33.3 2-33.3 2L544 179s-1.7 3.6 2.2 2.6c3.6-1 34-6.8 38-6 4.2 1 9 6.8 7.6 12-1.6 6.3-32 25.7-50.4 24.4 0 0-9.7.6-17.8-12.5-7.8-12.5 2.7-36 2.7-36s-4.7-11-1.2-15c0 0 2-1.7 8-2.2l7.5-15.4s-8.5.5-13.5-5.7c-4.6-6-5-8.6-1.4-10.2 3.8-2 39-8.3 63.2-7.5 0 0 8.5-1 16 13.7 0 0 3.4 6-2.6 7.4M511 187.8c-3 7.3-11.3 15-21.3 10.3-10.2-4.8-26.3-37.6-26.3-37.6s-6-12.2-7.2-11.8c0 0-1.3-2.4-2 11-1 13.3.2 39.2-5.3 43.3-5 4-11 2.3-14.4-2.4-2.8-4.7-4-16-2.4-35.7 1.8-19.7 6.3-40.7 12-47.2 6-6.6 10.8-1.8 12.6 0 0 0 7.7 7 20.7 27.7l2.2 3.8s11.8 19.7 13 19.6c0 0 1 1 1.8.2 1.2-.3.8-6.7.8-6.7S493 141 482 105c0 0-1.6-4.6-.5-9 1-4 5.3-2 5.3-2s16.6 8 24.7 35c8 27 2.6 51.5-.4 58.8M429.6 118.5c-1.6 2.8-2.3 6.7-9.2 7.8 0 0-67 4.7-70.3 9.4 0 0-2.2 2.8 1.4 3.5 3.8.8 19 2.8 26.2 3.2 7.8 0 34 .2 43.6 12 0 0 5.5 5.6 5.3 18.3-.2 13-2.5 17.6-7.6 22.3-5.3 4.4-50.7 24.8-80-6.4 0 0-13.4-15 4.7-26.4 0 0 13-8 46.3 1.3 0 0 10 3.6 9.6 7.3-.6 4-8.3 8-19.5 7.8-10.8-.3-18.8-5.5-17.2-4.6 1.5.5-11.7-6.4-15.8-1.7-4 4.4-3 7 1 9.7 10 5.8 49.3 3.7 61-9.4 0 0 4.7-5.3-2.4-9.6-7-4-27.4-6.5-35.3-6.8-7.5-.4-35.6 0-39.8-7.3 0 0-4-5.2.4-19.4 4.6-15 37.3-20.8 51.5-22 0 0 39-1.6 46.3 6.4 0 0 1 1.8-.2 4.5M319 206.4c-4.7 3.5-14.7 2-17.6-2-2.8-3.5-3.8-17.3-3.3-39 .7-22.2 1-49.4 6-53.8 5-4.3 8-.5 10 2.4 2 3 4.6 6.3 5 13.2.6 7 2.3 43 2.3 43s2.2 32.8-2.3 36.2M329 89.4c-13.8 4.7-23.2 3.2-31.2-.3-3.5 6.3-5.6 8.2-8.2 8.6-4 .4-7.5-6-8-8-.8-1.5-2.7-4.2-.4-10.3-7.8-7-8.4-16.4-7-22.7 1.8-7.4 15-35.2 55-38.5 0 0 19.6-1.4 23 9h.6s19 0 18.6 17c0 17-21 38.2-42.4 45.5m17.8-48.7c-12.6 2-32 18.8-41.3 32.7 14.3 2.6 39.3 1.6 50.5-21 0 0 5.3-14.2-9.2-11.7m-55.3 11c-4 6.5-4.2 10.4-2.3 13 4.7-7 13-18 25.5-26.6-9.6 1-17.7 5-23.2 13.6M632.2 205.7c-9.2 22.6-17 45.5-21.5 79.8 0 0-1 6.7-6.5 4.5-5.5-2-14.5-11-16.5-23.7-2-16.6 5.4-44.6 20.5-76.8-4.4-7-7.5-17.4-5-32 0 0 4-27 31-51.4 0 0 3.2-2.7 5-1.8 2.2 1 1.3 9.6-.5 14-1.6 4.2-13.6 25-13.6 25s-7.5 14.2-5.4 25.3c14.2-21.8 46.5-66 66.5-52 12.7 9 12.7 38 3.2 54.8-7.5 13.3-28.7 40.8-57 34.4m41.6-68c-7.4 8-20.6 23.2-31 43.8 11-1.2 21.7-7.3 25-10.4 5.3-4.7 17.5-17.4 15.6-34.2 0 0-1.2-8.8-9.6.8M226 217.5c-35.4 10.8-68.8 5.8-87 1-.5 7.4-1.3 10.5-2.5 11.7-1.4 1.6-13 8.2-19.4-1.2-2.8-4.5-4.2-12.6-5-20-41-18.6-60-46-60.6-47-1-1-10.3-10.7-1-22.7 8.7-10.8 37.5-21.7 63.3-26 1-22 3.4-39 6.5-46.5 3.7-9 8.4-1 12.6 5 3.4 4.5 5.5 23.8 5.7 39.2 16.8-.8 27 .4 45.7 4 24.6 4.2 41 16.8 39.7 31-1.2 14-14 19.8-19 20.2-5 .4-13-3.3-13-3.3-5.6-2.6-.5-5 6-7.8 7.2-3.5 5.6-7 5.6-7-2.6-8-34.5-13.3-66.2-13.3 0 17.5.7 46.5 1.2 63.4 22.2 4.2 38.8 3.3 38.8 3.3s81-2.3 83.3-54c2.5-51.8-81-101.4-142.5-117C56.8 14.4 22 25.8 19 27.3c-3.3 1.6-.3 2.2-.3 2.2S22 30 28 32c6 2 1.2 5 1.2 5C18.7 40.6 7 38.5 4.7 33.7c-2.3-4.7 1.5-9 6-15.3 4.2-6.5 9-6.3 9-6.3 76-26.5 168.8 21 168.8 21 86.8 43.8 101.6 95.3 100 115.3-1.4 19.7-9 53-62.5 69.2M59 146c-8.6 4-2.6 10.4-2.6 10.4 16.2 17.3 36 28.2 55 35 2.2-30 2-40.7 2-55.8C84 137.6 67 142.4 59 146"/>
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 16 KiB

@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="500"
height="103.26681"
id="svg2">
<defs
id="defs4">
<clipPath
id="clipPath6773">
<path
d="m 462.001,369.366 -84.125,0 0,-54.732 84.125,0 0,54.732 z"
id="path6775" />
</clipPath>
<clipPath
id="clipPath6659">
<path
d="M 0,0 0,684 540,684 540,0 0,0"
id="path6661" />
</clipPath>
<clipPath
id="clipPath6651">
<path
d="M 0,0 0,648 504,648 504,0 0,0"
id="path6653" />
</clipPath>
</defs>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-204.28571,-563.58592)"
id="layer1">
<g
transform="translate(-572.23368,-39.023709)"
id="layer1-1"
style="fill:#000000">
<g
transform="matrix(6.619667,0,0,6.619667,-3430.5727,-6146.358)"
id="g5045"
style="fill:#000000;fill-opacity:1">
<path
d="m 695.23563,1023.4953 c -0.22375,0.1063 -0.50376,0.1313 -0.88126,0.1313 l -0.16499,0 0,-1.7275 c 0,-0.3013 0.0337,-0.3775 0.52874,-0.3775 0.45875,0 1.17626,0.2962 1.17626,1.0162 0,0.3675 -0.17375,0.7175 -0.65875,0.9575 z m 13.80875,-0.4762 -0.25876,-0.076 c -0.77124,-0.2087 -1.225,-0.4362 -1.225,-0.8088 0,-0.3612 0.42626,-0.6524 1.03376,-0.6524 0.93624,0 1.35625,0.5325 1.62,1.025 l 0.51874,-0.05 c -0.13125,-0.5113 -0.21375,-0.88 -0.26374,-1.17 -0.15126,-0.03 -0.34126,-0.06 -0.61626,-0.105 -0.34375,-0.062 -0.7225,-0.089 -1.0925,-0.089 -1.86125,0 -2.8375,0.6863 -2.8375,1.5362 0,0.8013 1.0925,1.1988 2.07751,1.4763 l 0.17875,0.048 c 0.73749,0.1988 1.18624,0.4575 1.18624,0.905 0,0.485 -0.47375,0.7363 -1.0925,0.7363 -1.16375,0 -1.8625,-0.8275 -2.1125,-1.2625 l -0.5225,0.098 c 0.12625,0.445 0.2625,0.8212 0.35625,1.1387 -0.38875,-0.048 -0.705,-0.1625 -1.26,-0.6387 -0.735,-0.6288 -1.5075,-1.3138 -2.2325,-2.0263 0.48875,-0.3687 1.075,-0.7512 1.70625,-1.1425 0.61125,-0.3838 0.97,-0.4737 1.63875,-0.5188 l 0,-0.2362 -3.13625,0 0,0.2362 0.4475,0.03 c 0.315,0.023 0.18375,0.2287 0.02,0.3625 -0.67625,0.57 -1.38875,1.1225 -2.2425,1.74 l 0,-1.17 c 0,-0.8138 0.0963,-0.9175 0.8625,-0.9626 l 0,-0.2362 -3.6475,0 0,0.2362 c 0.82,0.045 0.915,0.1488 0.915,0.9626 l 0,2.4687 c 0,0.4763 -0.035,0.7463 -0.22,0.8525 -0.27,0.1263 -0.46625,0.047 -0.6675,-0.1087 -0.1875,-0.1425 -0.44875,-0.4563 -0.84625,-0.8488 -0.3425,-0.3512 -0.77625,-0.8662 -0.94125,-1.0787 0.87,-0.215 1.5175,-0.6038 1.5175,-1.265 0,-0.4413 -0.35125,-0.7763 -0.82125,-0.965 -0.46375,-0.1888 -1.0725,-0.2538 -1.9925,-0.2538 l -3.74125,0 0.0662,0.2362 c 0.79,0.045 0.815,0.1488 0.815,0.9626 l 0,2.4687 c 0,0.8163 -0.0913,0.9188 -0.93,0.965 l 0,0.2363 3.79,0 0,-0.2363 c -0.8125,-0.046 -0.905,-0.1487 -0.905,-0.965 l 0,-0.895 0.15125,0 c 0.22125,0 0.39125,0.1125 0.495,0.2713 0.29125,0.4162 0.62625,0.88 0.97625,1.2025 0.47125,0.4387 0.8525,0.7162 2.49375,0.6825 0.1225,0 0.59125,-0.034 0.69875,-0.06 l 2.855,0 0,-0.2363 c -0.8275,-0.046 -0.9475,-0.1487 -0.92375,-0.965 l 0,-1.1987 0.0213,0 c 0.855,0.8212 2.07625,1.9187 2.52,2.4 l 2.69125,0 0,-0.155 c 0.14375,0.04 0.34875,0.089 0.61,0.1387 0.32,0.071 0.8075,0.1313 1.2825,0.1313 1.84125,0 3.01625,-0.6775 3.01625,-1.6013 0,-0.875 -0.93625,-1.2625 -2.0325,-1.5687"
id="path3333"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
<path
d="m 688.40563,1025.7941 c -1.1775,0 -1.99376,-0.985 -1.99376,-2.345 0,-1.3088 0.77,-1.9675 1.69376,-1.9675 1.03125,0 1.89625,0.8287 1.89625,2.3412 0,1.3538 -0.56375,1.9713 -1.59625,1.9713 z m -28.33876,-1.5188 0.71375,-1.45 0.0338,0 0.72625,1.45 -1.47375,0 z m -10.06624,-0.6687 c -0.22001,0.1037 -0.49626,0.1275 -0.8675,0.1275 l -0.16125,0 0,-1.7488 c 0,-0.2988 0.0362,-0.38 0.52,-0.38 0.4525,0 1.16,0.3013 1.16,1.0287 0,0.37 -0.17751,0.7288 -0.65125,0.9726 z m -9.13251,2.0587 c -0.79374,0 -1.16249,-0.23 -1.16249,-1.1337 l 0,-3.9026 c 0,-0.2537 0.0175,-0.4862 0.1,-0.505 0.11375,-0.042 0.33375,-0.074 0.7125,-0.074 1.40875,0 3.215,0.6075 3.215,2.7963 0,1.7975 -1.43999,2.8187 -2.865,2.8187 z m 51.36501,-2.0862 c 0,-1.4813 -1.69251,-2.4863 -3.88875,-2.4863 -1.72875,0 -2.8825,0.505 -3.53125,1.175 0.395,-0.7675 0.66124,-1.2575 0.69875,-1.3163 0.5575,-0.9012 0.7025,-0.9874 1.62374,-1.0712 l 0,-0.3475 -3.92875,0 0,0.3475 0.625,0.04 c 0.70875,0.044 0.7575,0.2113 0.54375,0.795 -0.2325,0.6075 -0.84,2.055 -1.41375,3.2588 l -0.0375,-0.055 -2.49375,-4.3763 -1.1525,0 -2.15375,4.3763 -0.0325,0.055 -1.5625,-3.4513 c -0.19374,-0.425 -0.14624,-0.55 0.45875,-0.6025 l 0.53,-0.04 0,-0.3475 -5.12875,0 0,0.3475 c 0.75501,0.061 1.05125,0.1575 1.49625,1.0113 l 0.2,0.3875 -2.45125,0 -1.83,3.01 -2.09625,-3.01 -2.8125,0 0,0.2425 c 0.94375,0.053 1.04375,0.1925 0.9525,1.1512 l -0.1275,1.535 c -0.0588,0.6888 -0.1325,1.0913 -0.195,1.3263 -0.0187,0.081 -0.0338,0.1787 -0.1025,0.1937 -0.0825,0.011 -0.265,-0.2712 -0.42,-0.5487 -0.4375,-0.78 -0.9325,-1.6725 -1.42875,-2.5763 l -0.78125,-1.4362 -0.79125,0.1062 -2.30375,3.9288 c -0.0288,0.047 -0.0525,0.082 -0.075,0.1212 -0.0925,0.1175 -0.18,0.2638 -0.27,0.3275 -0.25875,0.18 -0.9225,0.225 -1.38875,0.225 -0.36125,0 -0.635,-0.01 -0.82,-0.066 -0.2125,-0.07 -0.23375,-0.3138 -0.23375,-0.7088 l 0,-1.235 0.585,0 c 1.00625,0 1.04125,0.044 1.15875,0.7138 l 0.50875,0 0,-1.795 -0.50875,0 c -0.1175,0.5787 -0.1525,0.6225 -1.15875,0.6225 l -0.585,0 0,-1.4651 c 0,-0.2674 0.0213,-0.3224 0.46875,-0.3224 l 0.19625,0 c 0.62376,0 1.005,0.045 1.19376,0.1775 0.185,0.1212 0.315,0.3887 0.4325,0.7587 l 0.5125,-0.023 c -0.0562,-0.565 -0.11625,-1.1212 -0.125,-1.2537 l -5.54251,0 0,0.2425 c 0.78251,0.048 0.87501,0.1525 0.87501,0.9762 l 0,2.505 c 0,0.7225 -0.0712,0.8513 -0.70625,0.9013 -0.11251,-0.053 -0.215,-0.12 -0.32251,-0.2025 -0.1875,-0.1525 -0.44125,-0.41 -0.8325,-0.8138 -0.33625,-0.3475 -0.7625,-0.8712 -0.925,-1.0862 0.855,-0.22 1.4925,-0.6151 1.4925,-1.2825 0,-0.45 -0.3475,-0.7888 -0.80875,-0.9788 -0.4525,-0.1912 -1.05375,-0.2612 -1.9575,-0.2612 l -3.5375,0 c -0.25375,-0.33 -0.595,-0.615 -0.965,-0.8325 -1.11,-0.6575 -2.80375,-0.9038 -4.84125,-0.9038 l -4.84,0 0,0.3925 c 1.08,0.064 1.21125,0.1375 1.21125,1.2313 l 0,3.355 c 0,1.095 -0.13125,1.2225 -1.345,1.285 l 0,0.3412 4.2775,0 c 3.82875,0 6.96375,-1.0862 6.96375,-3.62 0,-0.3512 -0.1075,-0.6812 -0.28375,-0.985 0.54625,0.06 0.62125,0.23 0.62125,0.955 l 0,2.505 c 0,0.82 -0.095,0.93 -0.9125,0.9738 l 0,0.2412 3.65125,0 0,-0.2412 c -0.79625,-0.044 -0.89,-0.1538 -0.89,-0.9738 l 0,-0.9125 0.1525,0 c 0.21625,0 0.38,0.1175 0.485,0.275 0.2875,0.4238 0.6125,0.895 0.95875,1.2213 0.465,0.4425 0.84375,0.6712 2.48875,0.6912 0.2375,-0.01 0.38625,-0.039 0.47125,-0.06 l 6.71125,0 0,-0.2412 -0.335,-0.02 c -0.5275,-0.037 -0.54,-0.1725 -0.37875,-0.4975 l 0.34625,-0.7275 1.8875,0 0.41375,0.7737 c 0.15,0.27 0.1275,0.4038 -0.2975,0.445 l -0.34625,0.026 0,0.2412 5.08,0 0,-0.2412 c -0.77625,-0.036 -1.04,-0.165 -1.0875,-0.4425 -0.0488,-0.235 -0.0625,-0.5988 -0.0238,-1.2513 l 0.0825,-1.6875 0.025,0 2.1925,3.5388 0.6475,0 2.31,-3.8038 0.0475,0 0.0362,2.6725 c 0.0113,0.8413 -0.0213,0.9225 -0.92125,0.9738 l 0,0.2412 3.74875,0 0,-0.2412 c -0.8625,-0.051 -0.88625,-0.1325 -0.925,-0.9738 l -0.12,-2.5437 c -0.0262,-0.6888 10e-4,-0.845 0.59875,-0.9088 l 2.4425,4.7413 1.265,0 2.2025,-4.1775 0.0325,0 2.41625,4.1775 1.2675,0 c 0.4725,-1.0238 0.9375,-1.9825 1.345,-2.7988 -0.006,0.071 -0.0113,0.1438 -0.0113,0.2125 0,1.3813 1.57,2.4838 3.99125,2.4838 2.30875,0 4.06125,-1.005 4.06125,-2.61"
id="path3335"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.0 KiB

@@ -0,0 +1,139 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
version="1.1"
id="svg8054"
viewBox="0 0 299.99999 67.216323"
height="18.96994mm"
width="84.666664mm">
<defs
id="defs8056" />
<metadata
id="metadata8059">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(887.14288,284.1031)"
id="layer1">
<g
transform="matrix(1.7147021,0,0,1.7147021,-1454.2609,-379.792)"
id="g7995">
<path
d="m 422.67351,57.26872 83.0225,0 0,-1.4575 -83.0225,0 0,1.4575 z"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4936" />
<path
d="m 422.67351,94.98997 83.0225,0 0,-1.4575 -83.0225,0 0,1.4575 z"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4938" />
<g
id="g4948"
transform="matrix(1.25,0,0,-1.25,434.20201,80.494595)"
style="fill:#000000">
<path
d="m 0,0 0,-3.344 c 0,-2.852 -1.41,-4.262 -4.262,-4.262 l -0.721,0 c -2.82,0 -4.197,1.41 -4.197,4.197 l 0,3.196 2.557,0 0,-3.295 c 0,-1.18 0.558,-1.737 1.738,-1.737 l 0.524,0 c 1.181,0 1.738,0.557 1.738,1.737 l 0,3.443 c 0,1.147 -0.393,1.639 -1.148,2.196 L -6.983,4.459 C -8.688,5.672 -9.18,6.852 -9.18,8.721 l 0,2.753 c 0,2.852 1.41,4.262 4.262,4.262 l 0.656,0 c 2.819,0 4.196,-1.41 4.196,-4.196 l 0,-1.967 -2.557,0 0,2.065 c 0,1.181 -0.557,1.738 -1.738,1.738 l -0.459,0 c -1.18,0 -1.737,-0.557 -1.737,-1.738 l 0,-2.885 c 0,-1.147 0.426,-1.639 1.18,-2.196 L -2.196,4.262 C -0.525,3.049 0,1.967 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4950" />
</g>
<g
id="g4952"
transform="matrix(1.25,0,0,-1.25,439.23338,89.75597)"
style="fill:#000000">
<path
d="m 0,0 0,20.523 -3.442,0 0,2.426 9.507,0 0,-2.426 -3.442,0 L 2.623,0 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4954" />
</g>
<g
id="g4956"
transform="matrix(1.25,0,0,-1.25,459.74488,84.674345)"
style="fill:#000000">
<path
d="m 0,0 c 0,-2.852 -1.41,-4.262 -4.262,-4.262 l -0.82,0 c -2.852,0 -4.262,1.41 -4.262,4.262 l 0,18.884 2.623,0 0,-19.015 c 0,-1.181 0.557,-1.738 1.738,-1.738 l 0.623,0 c 1.18,0 1.737,0.557 1.737,1.738 l 0,19.015 2.623,0 L 0,0 Z"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4958" />
</g>
<g
id="g4960"
transform="matrix(1.25,0,0,-1.25,465.11401,86.76422)"
style="fill:#000000">
<path
d="m 0,0 1.574,0 c 1.77,0 2.59,0.885 2.59,2.655 l 0,12.852 c 0,1.77 -0.82,2.655 -2.59,2.655 L 0,18.162 0,0 Z m -2.623,20.555 4.328,0 c 3.442,0 5.081,-1.639 5.081,-5.081 l 0,-12.786 c 0,-3.442 -1.639,-5.081 -5.081,-5.081 l -4.328,0 0,22.948 z"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4962" />
</g>
<path
d="m 478.84851,89.75622 -3.27875,0 0,-28.68625 3.27875,0 0,28.68625 z"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4964" />
<g
id="g4966"
transform="matrix(1.25,0,0,-1.25,487.25476,63.81547)"
style="fill:#000000">
<path
d="m 0,0 -0.787,0 c -1.18,0 -1.737,-0.558 -1.737,-1.738 l 0,-15.08 c 0,-1.181 0.557,-1.738 1.737,-1.738 l 0.787,0 c 1.18,0 1.737,0.557 1.737,1.738 l 0,15.08 C 1.737,-0.558 1.18,0 0,0 m 0.098,-20.949 -0.983,0 c -2.852,0 -4.262,1.409 -4.262,4.262 l 0,14.818 c 0,2.852 1.41,4.262 4.262,4.262 l 0.983,0 c 2.853,0 4.262,-1.41 4.262,-4.262 l 0,-14.818 c 0,-2.853 -1.409,-4.262 -4.262,-4.262"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4968" />
</g>
<g
id="g4970"
transform="matrix(1.25,0,0,-1.25,505.62513,80.494595)"
style="fill:#000000">
<path
d="m 0,0 0,-3.344 c 0,-2.852 -1.41,-4.262 -4.262,-4.262 l -0.721,0 c -2.82,0 -4.197,1.41 -4.197,4.197 l 0,3.196 2.557,0 0,-3.295 c 0,-1.18 0.558,-1.737 1.738,-1.737 l 0.524,0 c 1.181,0 1.738,0.557 1.738,1.737 l 0,3.443 c 0,1.147 -0.393,1.639 -1.148,2.196 L -6.983,4.459 C -8.688,5.672 -9.18,6.852 -9.18,8.721 l 0,2.753 c 0,2.852 1.41,4.262 4.262,4.262 l 0.656,0 c 2.819,0 4.197,-1.41 4.197,-4.196 l 0,-1.967 -2.558,0 0,2.065 c 0,1.181 -0.557,1.738 -1.738,1.738 l -0.459,0 c -1.18,0 -1.737,-0.557 -1.737,-1.738 l 0,-2.885 c 0,-1.147 0.426,-1.639 1.18,-2.196 L -2.196,4.262 C -0.525,3.049 0,1.967 0,0"
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4972" />
</g>
<path
d="m 330.73851,95.00497 87.0275,0 0,-39.2 -87.0275,0 0,39.2 z"
style="fill:#e50b14;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4974" />
<g
id="g4976"
transform="matrix(1.25,0,0,-1.25,404.49326,66.292595)">
<path
d="m 0,0 -3.716,0 0,-5.184 3.716,0 0,-4.19 -3.716,0 0,-5.262 3.716,0 0,-4.128 -7.825,0 0,20.8 -3.299,-20.8 -4.827,-0.013 c 0,0 -2.462,14.73 -2.466,14.761 l 0,-0.001 c 0.398,-2.38 -1.098,-4.866 -2.421,-5.847 l 2.612,-8.9 -0.004,0 -0.007,0 0.002,-0.005 -0.007,0 -4.047,0 -0.004,0 -1.992,7.595 -0.96,-0.141 0,-7.449 -0.007,0 -0.005,0 0,-0.005 -0.004,0 -7.847,0.005 -0.482,3.53 -3.218,0 -0.484,-3.53 -7.991,0 0,11.061 -1.859,-11.061 -2.203,0 -1.886,11.061 0,-11.061 -4.146,0 0,22.948 5.264,0 1.848,-11.856 1.897,11.856 5.261,0 0,-21.104 3.165,21.107 5.498,-0.003 3.061,-20.372 0.016,20.372 c 0,0 4.177,0.002 4.202,0 3.783,0 5.501,-2.775 5.986,-3.731 l -0.47,3.731 4.197,0 1.894,-13.976 1.916,13.976 L 0,4.184 0,0 Z"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4978" />
</g>
<g
id="g4980"
transform="matrix(1.25,0,0,-1.25,372.96213,66.16747)"
style="fill:#e50b14;fill-opacity:1">
<path
d="m 0,0 c -0.009,0 -0.016,0 -0.02,0 l 0,-7.38 c 0.324,0 0.655,0.077 0.974,0.23 0.967,0.471 1.79,1.643 1.79,3.5 C 2.744,-0.096 0.324,0.003 0,0"
style="fill:#e50b14;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4982" />
</g>
<g
id="g4984"
transform="matrix(1.25,0,0,-1.25,359.09314,80.76747)"
style="fill:#e50b14;fill-opacity:1">
<path
d="M 0,0 2.319,0 1.138,9.812 0,0 Z"
style="fill:#e50b14;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4986" />
</g>
<g
id="g4988"
transform="matrix(1.25,0,0,-1.25,414.93101,89.741345)">
<path
d="m 0,0 -7.634,0 0,22.947 4.111,0 0,-18.82 L 0,4.127 0,0 Z"
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path4990" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.2 KiB

@@ -0,0 +1,173 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:version="1.0rc1 (09960d6, 2020-04-09)"
sodipodi:docname="spa_logo.svg"
version="1.1"
viewBox="0 0 2512.6757 462.04123"
height="216.83351"
width="1000.3969"
data-name="Layer 1"
id="Layer_1">
<metadata
id="metadata63">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>spa_logo</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
inkscape:current-layer="Layer_1"
inkscape:window-maximized="0"
inkscape:window-y="23"
inkscape:window-x="0"
inkscape:cy="-148.00537"
inkscape:cx="857.64552"
inkscape:zoom="0.45419998"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
showgrid="false"
id="namedview61"
inkscape:window-height="655"
inkscape:window-width="1503"
inkscape:pageshadow="2"
inkscape:pageopacity="0"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
bordercolor="#666666"
pagecolor="#ffffff" />
<defs
id="defs12">
<style
id="style10">.cls-1{fill:#4197cb;}.cls-2{fill:#6bc4e8;}</style>
</defs>
<title
id="title14">spa_logo</title>
<g
transform="matrix(3.6510835,0,0,3.6510835,0,-41.26692)"
data-name="ANIMATION 7688C"
id="ANIMATION_7688C">
<path
inkscape:connector-curvature="0"
id="path16"
d="M 142.52,98.82 V 65.39 H 176.8 V 148 H 148.57 L 128.63,132.27 V 148 H 94.87 V 64 Z"
class="cls-1" />
<path
inkscape:connector-curvature="0"
id="path18"
d="M 650.68,98.82 V 65.39 H 685 V 148 H 656.73 L 636.79,132.27 V 148 H 603 V 64 Z"
class="cls-1" />
<path
inkscape:connector-curvature="0"
id="path20"
d="M 185.2,148 V 65.39 H 219 V 148 Z"
class="cls-1" />
<path
inkscape:connector-curvature="0"
id="path22"
d="m 227.61,64 45,34.87 45,-34.87 v 84 H 284 v -17.39 l -11.33,7.69 -11.33,-7.57 V 148 h -33.73 z"
class="cls-1" />
<path
inkscape:connector-curvature="0"
id="path24"
d="m 468.87,65.39 -0.11,24.72 H 449.51 V 148 H 415.75 V 90.11 H 396 l 0.11,-24.72 z"
class="cls-1" />
<path
inkscape:connector-curvature="0"
id="path26"
d="M 474.54,148 V 65.39 H 508.3 V 148 Z"
class="cls-1" />
<path
inkscape:connector-curvature="0"
id="path28"
d="M 556,64.22 A 42.47,42.47 0 1 0 598.47,106.69 42.47,42.47 0 0 0 556,64.22 Z m -0.12,51.05 a 8.42,8.42 0 0 1 -8.23,-8.46 8.35,8.35 0 1 1 8.23,8.46 z"
class="cls-1" />
<polygon
id="polygon30"
points="46.33,134.44 54.02,147.99 92.66,147.99 46.33,63.95 0,147.99 38.63,147.99 "
class="cls-1" />
<polygon
id="polygon32"
points="366.35,134.44 374.05,147.99 412.69,147.99 366.35,63.95 320.02,147.99 358.66,147.99 "
class="cls-1" />
</g>
<g
transform="matrix(3.6510835,0,0,3.6510835,0,-41.26692)"
id="SONY_297C">
<path
inkscape:connector-curvature="0"
id="path35"
d="m 8.21,31.35 c 0.25,0.13 5.48,4.18 10,4.18 2.44,0 4.22,-1.53 4.22,-3.67 0,-2.57 -2.14,-4.53 -6.3,-6.18 C 10.86,23.6 4.25,19.51 4.25,12.17 4.25,6.12 9,0 18.38,0 c 7,0 12.11,4 13.94,5.51 -0.52,0.8 -3.66,5.66 -4.66,7.17 -0.55,-0.31 -6,-4.3 -9.77,-4.3 -2.2,0 -3.89,1.47 -3.89,3.12 0,2.26 1.83,4 6.66,5.93 4.83,1.93 12.36,5.62 12.36,13.94 0,6.3 -5.45,12.66 -14.44,12.66 C 9.93,44 5.38,40 4,38.6 4.39,37.9 7.93,31.79 8.21,31.35 Z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path37"
d="m 663.36,31.35 c 0.25,0.13 5.48,4.18 10,4.18 2.45,0 4.22,-1.53 4.22,-3.67 0,-2.57 -2.14,-4.53 -6.29,-6.18 C 666,23.6 659.4,19.51 659.4,12.17 659.4,6.17 664.11,0 673.53,0 c 7,0 12.11,4 13.94,5.51 -0.52,0.8 -3.66,5.66 -4.66,7.17 -0.55,-0.31 -6,-4.3 -9.77,-4.3 -2.2,0 -3.85,1.47 -3.85,3.12 0,2.26 1.83,4 6.66,5.93 4.83,1.93 12.35,5.62 12.35,13.94 0,6.3 -5.44,12.66 -14.43,12.66 -8.7,0 -13.24,-4 -14.65,-5.43 0.42,-0.7 3.96,-6.81 4.24,-7.25 z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path39"
d="M 78,0 A 22,22 0 1 1 78,44 21.81,21.81 0 0 1 56,22.08 21.92,21.92 0 0 1 78,0 Z m 0,34.24 A 12.23,12.23 0 1 0 65.79,22.08 12.25,12.25 0 0 0 78,34.24 Z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path41"
d="m 126.1,0 h 2.69 l 24.4,23.48 h 0.06 V 0.61 h 9.66 V 44 h -2.64 L 135.82,19.45 h -0.06 v 24 h -9.6 z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path43"
d="M 200.21,22.81 185.42,0.61 h 10.86 l 8.82,13.09 8.82,-13.09 h 10.86 l -15,22.14 v 20.67 h -8.44 c 0,0 -1.16,0.61 -1.16,0 z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path45"
d="M 281.15,1.77 V 0.61 h 15.9 a 13.68,13.68 0 0 1 13.7,13.52 13.75,13.75 0 0 1 -13.64,13.75 h -6.42 v 15.54 h -9.54 V 1.77 Z M 296.5,19 a 4.8,4.8 0 0 0 4.83,-4.83 4.67,4.67 0 0 0 -4.83,-4.57 h -5.81 V 19 Z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path47"
d="m 335.27,0.61 h 9.66 v 42.81 h -9.66 z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path49"
d="m 393,0 a 21.13,21.13 0 0 1 15.71,6.47 L 402.44,13 a 13.42,13.42 0 0 0 -9.11,-3.73 c -6.91,0 -12,5.75 -12,12.6 a 12.11,12.11 0 0 0 12.05,12.41 14.25,14.25 0 0 0 9.16,-3.58 c 0.46,0.52 0.26,0.28 0.62,0.71 l 4.77,5.08 c 0.43,0.42 0.28,0.29 0.85,0.91 C 403.43,42.41 398.46,44 393,44 a 22,22 0 1 1 0,-44 z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path51"
d="m 440.76,9.6 h -9.91 v -9 h 29.47 v 9 h -9.9 v 33.82 h -9.66 z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path53"
d="m 484.21,0.61 h 9.84 v 25.93 a 7.59,7.59 0 1 0 15.17,0 V 0.61 h 9.84 V 27 a 17.43,17.43 0 0 1 -34.85,0 z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path55"
d="M 547.6,1.77 V 0.61 h 19.45 a 13.3,13.3 0 0 1 13.33,13.21 c 0,5.63 -3.73,10.15 -9,12.29 L 581,43.42 h -10.81 l -8.77,-16.76 h -4.22 v 16.76 h -9.6 z M 566.25,18.9 A 4.91,4.91 0 0 0 570.9,14 4.68,4.68 0 0 0 566.25,9.36 h -9 v 9.54 z"
class="cls-2" />
<path
inkscape:connector-curvature="0"
id="path57"
d="M 607.12,1.77 V 0.61 h 27.64 v 9 h -18.1 v 7.58 h 14.47 v 9 h -14.47 v 8.26 h 18.1 v 9 h -27.64 z"
class="cls-2" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

@@ -0,0 +1,84 @@
using ImageMagick;
using PosterMaker.Interfaces.Services;
using PosterMaker.Models;
namespace PosterMaker.Services;
public class CollectionPosterMakerService : ICollectionPosterMakerService
{
private static readonly string RefDir = Path.Combine("Resources", "Collections");
private static readonly string RefDirectory = Path.Combine(Directory.GetCurrentDirectory(), RefDir);
private static readonly string TitleFont = Path.Combine(RefDirectory, "Arial Bold.ttf");
private static readonly string CollectionFont = Path.Combine(RefDirectory, "MyriadRegular.ttf");
private static readonly string Gradient = Path.Combine(RefDirectory, "gradient.png");
private static readonly string Frame = Path.Combine(RefDirectory, "frame.png");
private const string FontColor = "white";
private const float FontSize = 1.0F;
public CollectionPosterMakerService()
{
}
public byte[] CreatePoster(string file, ImageProperties imageProperties)
{
using var image = new MagickImage(file);
var resizeGeometry = new MagickGeometry(1892, 2892)
{
FillArea = true
};
image.Resize(resizeGeometry);
image.Extent(2000, 3000, Gravity.Center);
ApplyGradient(image);
using var frame = new MagickImage(Frame);
frame.BackgroundColor = new MagickColor("transparent");
image.Composite(frame, Gravity.Center, CompositeOperator.Over);
//AddLogo(image, imageProperties.Logo, imageProperties.LogoOption);
AddTitle(image, imageProperties);
image.Resize(new Percentage(50));
return image.ToByteArray();
}
private static void ApplyGradient(MagickImage image)
{
using var gradient = new MagickImage(Gradient);
image.Composite(gradient, Gravity.Center, CompositeOperator.Multiply);
}
private void AddTitle(MagickImage image, ImageProperties properties)
{
if (string.IsNullOrEmpty(properties.Title))
return;
var readSettings = new MagickReadSettings
{
BackgroundColor = MagickColors.Transparent,
FillColor = new MagickColor(FontColor),
Font = TitleFont,
FontPointsize = 180 * FontSize,
TextGravity = Gravity.Center,
TextKerning = 2
};
var labelImages = new MagickImageCollection();
if (!string.IsNullOrEmpty(properties.Title))
{
labelImages.Add(new MagickImage($"label:{properties.Title.ToUpper()}", readSettings));
}
if (!string.IsNullOrEmpty(properties.Title2))
{
labelImages.Add(new MagickImage($"label:{properties.Title2.ToUpper()}", readSettings));
}
readSettings.FontPointsize = 70;
readSettings.TextKerning = 50;
readSettings.Font = CollectionFont;
labelImages.Add(new MagickImage($"label:COLLECTION", readSettings));
using var labels = labelImages.SmushVertical(44);
image.Composite(labels, Gravity.South, 0, 266, CompositeOperator.Atop);
}
}
@@ -0,0 +1,115 @@
using ImageMagick;
using PosterMaker.Interfaces.Services;
using PosterMaker.Models.Enums;
namespace PosterMaker.Services;
public class MovieLogoService : IMovieLogoService
{
private static readonly string LogoDir = Path.Combine("Resources", "Logos");
private static readonly string StudioDir = Path.Combine(LogoDir, "Studio");
private static readonly string NetworkDir = Path.Combine(LogoDir, "Network");
public byte[]? GetMovieLogo(MovieLogoEnum? logo)
{
if (logo == null) return null;
var logoPath = Path.Combine(StudioDir, GetFileForLogo(logo));
return File.ReadAllBytes(logoPath);;
}
public byte[]? GetNetworkLogo(NetworkLogoEnum? logo)
{
if (logo == null) return null;
var logoPath = Path.Combine(NetworkDir, GetFileForNetworkLogo(logo));
return File.ReadAllBytes(logoPath);
}
public Gravity GetLogoGravity(MovieLogoEnum? imagePropertiesLogo)
{
return imagePropertiesLogo switch
{
MovieLogoEnum.Disney => Gravity.North,
MovieLogoEnum.DC => Gravity.North,
MovieLogoEnum.SonyPicturesAnimation => Gravity.North,
MovieLogoEnum.MarvelStudios => Gravity.North,
MovieLogoEnum.A24 => Gravity.Northwest,
MovieLogoEnum.Dreamworks => Gravity.North,
MovieLogoEnum.DisneyPixar => Gravity.North,
_ => throw new ArgumentOutOfRangeException(nameof(imagePropertiesLogo), imagePropertiesLogo, null)
};
}
public MagickGeometry GetLogoGeometry(MovieLogoEnum? logoEnum)
{
var defaultGeometry = new MagickGeometry(200, 100);
return logoEnum switch
{
MovieLogoEnum.Disney => defaultGeometry,
MovieLogoEnum.DC => defaultGeometry,
MovieLogoEnum.SonyPicturesAnimation => defaultGeometry,
MovieLogoEnum.MarvelStudios => defaultGeometry,
MovieLogoEnum.A24 => defaultGeometry,
MovieLogoEnum.Dreamworks => defaultGeometry,
MovieLogoEnum.DisneyPixar => new MagickGeometry(520, 100),
_ => throw new ArgumentOutOfRangeException(nameof(logoEnum), logoEnum, null)
};
}
public int GetNetworkLogoHeight(NetworkLogoEnum? logo)
{
return logo switch
{
NetworkLogoEnum.Hulu => 150,
NetworkLogoEnum.Netflix => 200,
NetworkLogoEnum.ParamountPlus => 200,
_ => 150
};
}
private string GetFileForLogo(MovieLogoEnum? logo)
{
return logo switch
{
MovieLogoEnum.Disney => "Disney.svg",
MovieLogoEnum.DC => "DC.svg",
MovieLogoEnum.SonyPicturesAnimation => "Sony_Pictures_Animation.svg",
MovieLogoEnum.MarvelStudios => "Marvel_Studios.svg",
MovieLogoEnum.A24 => "A24.svg",
MovieLogoEnum.Dreamworks => "Dreamworks.svg",
MovieLogoEnum.DisneyPixar => "DisneyPixar.svg",
_ => throw new ArgumentOutOfRangeException(nameof(logo), logo, null)
};
}
private string GetFileForNetworkLogo(NetworkLogoEnum? logo)
{
return logo switch
{
NetworkLogoEnum.Netflix => "Netflix.svg",
NetworkLogoEnum.DisneyPlus => "DisneyPlus.svg",
NetworkLogoEnum.AppleTv => "AppleTv.png",
NetworkLogoEnum.Hbo => "HBO.svg",
NetworkLogoEnum.Fxx => "FXX.svg",
NetworkLogoEnum.Cbs => "CBS.svg",
NetworkLogoEnum.Peacock => "Peacock.svg",
NetworkLogoEnum.AmazonPrimeVideo => "AmazonPrimeVideo.png",
NetworkLogoEnum.Nbc => "NBC.svg",
NetworkLogoEnum.Amc => "AMC.svg",
NetworkLogoEnum.Starz => "Starz.svg",
NetworkLogoEnum.Hulu => "Hulu.svg",
NetworkLogoEnum.Cw => "CW.svg",
NetworkLogoEnum.ParamountPlus => "ParamountPlus.svg",
NetworkLogoEnum.ComedyCentral => "ComedyCentral.svg",
NetworkLogoEnum.Abc => "ABC.svg",
NetworkLogoEnum.Bbc => "BBC.svg",
NetworkLogoEnum.Usa => "USA.svg",
NetworkLogoEnum.Tbs => "TBS.svg",
NetworkLogoEnum.Fx => "FX.svg",
NetworkLogoEnum.AdultSwim => "AdultSwim.svg",
NetworkLogoEnum.Max => "Max.svg",
NetworkLogoEnum.Mtv => "MTV.svg",
NetworkLogoEnum.ChannelFour => "ChannelFour.png",
_ => throw new ArgumentOutOfRangeException(nameof(logo), logo, null)
};
}
}
@@ -0,0 +1,154 @@
using ImageMagick;
using PosterMaker.Interfaces.Services;
using PosterMaker.Models;
using PosterMaker.Models.Enums;
namespace PosterMaker.Services;
public class MoviePosterMakerService : IMoviePosterMakerService
{
private static readonly string RefDir = Path.Combine("Resources", "Movies");
private static readonly string RefDirectory = Path.Combine(Directory.GetCurrentDirectory(), RefDir);
private static readonly string Font = Path.Combine(RefDirectory, "Arial Bold.ttf");
private static readonly string Frame = Path.Combine(RefDirectory, "frame.png");
private static readonly string Gradient = Path.Combine(RefDirectory, "gradient.png");
private const string FontColor = "white";
private const float FontSize = 1.0F;
private const string IndexFontColor = "rgb(154,154,154)";
private readonly IMovieLogoService _movieLogoService;
public MoviePosterMakerService(IMovieLogoService movieLogoService)
{
_movieLogoService = movieLogoService;
}
public byte[] CreatePoster(string file, ImageProperties imageProperties)
{
using var image = new MagickImage(file);
var resizeGeometry = new MagickGeometry(1892, 2892)
{
FillArea = true
};
image.Resize(resizeGeometry);
image.Extent(2000, 3000, Gravity.Center);
ApplyGradient(image);
using var frame = new MagickImage(Frame);
frame.BackgroundColor = new MagickColor("transparent");
image.Composite(frame, Gravity.Center, CompositeOperator.Over);
AddLogo(image, imageProperties.Logo, imageProperties.LogoOption);
AddIndex(image, imageProperties.Index);
AddTitle(image, imageProperties);
return image.ToByteArray();
}
private static void ApplyGradient(MagickImage image)
{
using var gradient = new MagickImage(Gradient);
image.Composite(gradient, Gravity.Center, CompositeOperator.Multiply);
}
private static void AddIndex(MagickImage image, string? input)
{
if (string.IsNullOrEmpty(input)) return;
var readSettings = new MagickReadSettings
{
Font = Font,
FillColor = new MagickColor(IndexFontColor),
FontPointsize = 598,
TextGravity = Gravity.Center,
BackgroundColor = MagickColors.Transparent,
};
var index = new MagickImage($"label:{(input)}", readSettings);
image.Composite(index, Gravity.South, 0, 50, CompositeOperator.Atop);
}
private void AddLogo(MagickImage image, MovieLogoEnum? logo, LogoOptionEnum? logoOptionEnum)
{
if (logo == null) return;
var logoFile = _movieLogoService.GetMovieLogo(logo);
var gravity = _movieLogoService.GetLogoGravity(logo);
var readSettings = new MagickReadSettings
{
TextGravity = Gravity.Center,
BackgroundColor = MagickColors.Transparent
};
using var logoImage = new MagickImage(logoFile, readSettings);
logoImage.Resize(_movieLogoService.GetLogoGeometry(logo));
if (logoOptionEnum == LogoOptionEnum.White)
{
logoImage.Colorize(MagickColors.White, new Percentage(100));
}
if (logoOptionEnum == LogoOptionEnum.Black)
{
logoImage.Colorize(MagickColors.Black, new Percentage(100));
}
var shadow = new MagickImage(logoImage);
shadow.Shadow(3, 3,3, new Percentage(80));
var offset = gravity == Gravity.Northwest ? 100 : 0;
image.Composite(shadow, gravity, offset, 100, CompositeOperator.Atop);
image.Composite(logoImage, gravity, offset, 100, CompositeOperator.Atop);
}
private void AddTitle(MagickImage image, ImageProperties properties)
{
if (string.IsNullOrEmpty(properties.TopSubtitle) && string.IsNullOrEmpty(properties.Title) && string.IsNullOrEmpty(properties.Subtitle))
return;
var readSettings = new MagickReadSettings
{
BackgroundColor = MagickColors.Transparent,
FillColor = new MagickColor(FontColor),
Font = Font,
Debug = true
};
var labelImages = new MagickImageCollection();
if (!string.IsNullOrEmpty(properties.TopSubtitle))
{
readSettings.FontPointsize = 95 * FontSize;
readSettings.TextGravity = Gravity.Center;
labelImages.Add(new MagickImage($"label:{properties.TopSubtitle.ToUpper()}", readSettings));
}
if (!string.IsNullOrEmpty(properties.Title))
{
readSettings.FontPointsize = 190 * FontSize;
readSettings.TextKerning = 0.7;
readSettings.TextInterlineSpacing = -44.5;
readSettings.TextInterwordSpacing = 55;
readSettings.TextGravity = Gravity.Center;
labelImages.Add(new MagickImage($"label:{properties.Title.ToUpper()}", readSettings));
}
if (!string.IsNullOrEmpty(properties.Title2))
{
readSettings.FontPointsize = 190 * FontSize;
readSettings.TextKerning = 0.7;
readSettings.TextInterlineSpacing = -44.5;
readSettings.TextInterwordSpacing = 55;
readSettings.TextGravity = Gravity.Center;
labelImages.Add(new MagickImage($"label:{properties.Title2.ToUpper()}", readSettings));
}
if (!string.IsNullOrEmpty(properties.Subtitle))
{
readSettings.FontPointsize = 95 * FontSize;
readSettings.TextInterwordSpacing = 18;
readSettings.TextKerning = 0.5;
readSettings.TextGravity = Gravity.Center;
labelImages.Add(new MagickImage($"label:{properties.Subtitle.ToUpper()}", readSettings));
}
using var labels = labelImages.SmushVertical(30);
var titleHeight = !string.IsNullOrEmpty(properties.Subtitle) ? 182 : 262;
image.Composite(labels, Gravity.South, 0, titleHeight, CompositeOperator.Atop);
}
}
@@ -0,0 +1,215 @@
using ImageMagick;
using PosterMaker.Interfaces.Services;
using PosterMaker.Models;
using PosterMaker.Models.Enums;
namespace PosterMaker.Services;
public class SeriesPosterMakerService : ISeriesPosterMakerService
{
private static readonly string RefDir = Path.Combine("Resources", "Series");
private static readonly string RefDirectory = Path.Combine(Directory.GetCurrentDirectory(), RefDir);
private static readonly string Font = Path.Combine(RefDirectory, "Arial Bold.ttf");
private static readonly string SeasonFont = Path.Combine(RefDirectory, "Proxima Nova Semibold.ttf");
private static readonly string Frame = Path.Combine(RefDirectory, "frame.png");
private static readonly string Gradient = Path.Combine(RefDirectory, "gradient.png");
private const string FontColor = "white";
private const float FontSize = 1.0F;
private readonly IMovieLogoService _movieLogoService;
public SeriesPosterMakerService(IMovieLogoService movieLogoService)
{
_movieLogoService = movieLogoService;
}
public byte[] CreatePoster(string file, ImageProperties imageProperties)
{
using var image = new MagickImage(file);
var resizeGeometry = new MagickGeometry(1892, 2892)
{
FillArea = true
};
image.Resize(resizeGeometry);
image.Extent(2000, 3000, Gravity.Center);
ApplyGradient(image);
using var frame = new MagickImage(Frame);
frame.BackgroundColor = new MagickColor("transparent");
image.Composite(frame, Gravity.Center, CompositeOperator.Over);
AddStudioLogo(image, imageProperties.Logo, imageProperties.LogoOption);
AddNetworkLogo(image, imageProperties.NetworkLogo, imageProperties.LogoOption);
AddTitle(image, imageProperties);
return image.ToByteArray();
}
private static void ApplyGradient(MagickImage image)
{
using var gradient = new MagickImage(Gradient);
image.Composite(gradient, Gravity.Center, CompositeOperator.Multiply);
}
private void AddStudioLogo(MagickImage image, MovieLogoEnum? logo, LogoOptionEnum? logoOptionEnum)
{
if (logo == null) return;
var logoFile = _movieLogoService.GetMovieLogo(logo);
var gravity = _movieLogoService.GetLogoGravity(logo);
var readSettings = new MagickReadSettings
{
TextGravity = Gravity.Center,
BackgroundColor = MagickColors.Transparent
};
using var logoImage = new MagickImage(logoFile, readSettings);
logoImage.Resize(new MagickGeometry(500, 250));
switch (logoOptionEnum)
{
case LogoOptionEnum.White:
logoImage.Colorize(MagickColors.White, new Percentage(100));
break;
case LogoOptionEnum.Black:
logoImage.Colorize(MagickColors.Black, new Percentage(100));
break;
}
var offset = gravity == Gravity.Northwest ? 100 : 0;
image.Composite(logoImage, gravity, offset, 100, CompositeOperator.Atop);
}
private void AddNetworkLogo(MagickImage image, NetworkLogoEnum? logo, LogoOptionEnum? logoOptionEnum)
{
if (logo == null) return;
var logoFile = _movieLogoService.GetNetworkLogo(logo);
var readSettings = new MagickReadSettings
{
TextGravity = Gravity.Center,
BackgroundColor = MagickColors.Transparent
};
using var logoImage = new MagickImage(logoFile, readSettings);
var networkLogoHeight = _movieLogoService.GetNetworkLogoHeight(logo);
logoImage.Resize(new MagickGeometry(networkLogoHeight * 2, networkLogoHeight));
switch (logoOptionEnum)
{
case LogoOptionEnum.White:
logoImage.Colorize(MagickColors.White, new Percentage(100));
break;
case LogoOptionEnum.Black:
logoImage.Colorize(MagickColors.Black, new Percentage(100));
break;
}
var shadow = new MagickImage(logoImage);
shadow.Shadow(2, 2,3, new Percentage(80));
switch (logoOptionEnum)
{
case LogoOptionEnum.White:
shadow.Colorize(MagickColors.Black, new Percentage(100));
break;
case LogoOptionEnum.Black:
shadow.Colorize(MagickColors.White, new Percentage(100));
break;
}
image.Composite(shadow, Gravity.Northwest, 100, 100, CompositeOperator.Atop);
image.Composite(logoImage, Gravity.Northwest, 100, 100, CompositeOperator.Atop);
}
private void AddTitle(MagickImage image, ImageProperties properties)
{
if (string.IsNullOrEmpty(properties.TopSubtitle) && string.IsNullOrEmpty(properties.Title) &&
string.IsNullOrEmpty(properties.Subtitle) && string.IsNullOrEmpty(properties.Season))
return;
var readSettings = new MagickReadSettings
{
BackgroundColor = MagickColors.Transparent,
FillColor = new MagickColor(FontColor),
Font = Font,
Debug = true
};
var labelImages = new MagickImageCollection();
if (!string.IsNullOrEmpty(properties.TopSubtitle))
{
readSettings.FontPointsize = 95 * FontSize;
readSettings.TextGravity = Gravity.Center;
labelImages.Add(new MagickImage($"label:{properties.TopSubtitle.ToUpper()}", readSettings));
}
if (!string.IsNullOrEmpty(properties.Title))
{
readSettings.FontPointsize = 190 * FontSize;
readSettings.TextKerning = 0.7;
readSettings.TextInterlineSpacing = -44.5;
readSettings.TextInterwordSpacing = 55;
readSettings.TextGravity = Gravity.Center;
labelImages.Add(new MagickImage($"label:{properties.Title.ToUpper()}", readSettings));
}
if (!string.IsNullOrEmpty(properties.Title2))
{
readSettings.FontPointsize = 190 * FontSize;
readSettings.TextKerning = 0.7;
readSettings.TextInterlineSpacing = -44.5;
readSettings.TextInterwordSpacing = 55;
readSettings.TextGravity = Gravity.Center;
labelImages.Add(new MagickImage($"label:{properties.Title2.ToUpper()}", readSettings));
}
if (!string.IsNullOrEmpty(properties.Subtitle))
{
readSettings.FontPointsize = 95 * FontSize;
readSettings.TextInterwordSpacing = 18;
readSettings.TextKerning = 0.5;
readSettings.TextGravity = Gravity.Center;
labelImages.Add(new MagickImage($"label:{properties.Subtitle.ToUpper()}", readSettings));
}
using var labels = labelImages.SmushVertical(30);
var seasonImages = new MagickImageCollection();
var image2 = new MagickImage();
if (!string.IsNullOrEmpty(properties.Season) && ((properties.LimitedSeries != null && properties.LimitedSeries != true) || properties.LimitedSeries == null))
{
seasonImages.Add(labels);
readSettings.TextInterlineSpacing = 150;
readSettings.FontPointsize = 66 * FontSize;
readSettings.TextGravity = Gravity.Center;
readSettings.TextKerning = 50;
readSettings.TextInterwordSpacing = 20;
readSettings.Font = SeasonFont;
var seasonImage = new MagickImage($"label:SEASON {properties.Season.ToUpper()}", readSettings);
seasonImages.Add(seasonImage);
var offset = string.IsNullOrEmpty(properties.Subtitle) ? 150 : 75;
using var imageWithSeason = seasonImages.SmushVertical(offset);
image2 = new MagickImage(imageWithSeason);
}
if (properties.LimitedSeries == true)
{
seasonImages.Add(labels);
readSettings.TextInterlineSpacing = 150;
readSettings.FontPointsize = 66 * FontSize;
readSettings.TextGravity = Gravity.Center;
readSettings.TextKerning = 50;
readSettings.TextInterwordSpacing = 20;
readSettings.Font = SeasonFont;
var seasonImage = new MagickImage($"label:LIMITED SERIES", readSettings);
seasonImages.Add(seasonImage);
using var imageWithSeason = seasonImages.SmushVertical(150);
image2 = new MagickImage(imageWithSeason);
}
var titleHeight = !string.IsNullOrEmpty(properties.Season) || properties.LimitedSeries == true ? 85 : 262;
if (!string.IsNullOrEmpty(properties.Subtitle) && properties.LimitedSeries is not true && string.IsNullOrWhiteSpace(properties.Season))
{
titleHeight = 200;
}
image.Composite(string.IsNullOrEmpty(properties.Season) && properties.LimitedSeries != true ? labels : image2, Gravity.South, 0, titleHeight, CompositeOperator.Atop);
}
}
@@ -0,0 +1,8 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}
+15
View File
@@ -0,0 +1,15 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"Serilog": {
"Using": [ "Serilog.Sinks.Seq" ],
"MinimumLevel": {
"Default": "Information"
}
}
}
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ImageMagick")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ImageMagick")]
[assembly: System.Reflection.AssemblyTitleAttribute("ImageMagick")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
b2f83d90c15ea01b7ea8240c12d46cf015aa5f06
@@ -0,0 +1,17 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = ImageMagick
build_property.RootNamespace = ImageMagick
build_property.ProjectDir = C:\Projects\ImageMagick\ImageMagick\
build_property.RazorLangVersion = 7.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Projects\ImageMagick\ImageMagick
build_property._RazorSourceGeneratorDebug =
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
2a1610f8da560500750f3f06f5d0616aa414a7a7abdd43f93b025a6f2a2c72be
@@ -0,0 +1,19 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = PosterMaker
build_property.RootNamespace = PosterMaker
build_property.ProjectDir = C:\Projects\PosterMaker\PosterMaker.Core\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 7.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Projects\PosterMaker\PosterMaker.Core
build_property._RazorSourceGeneratorDebug =
@@ -0,0 +1,110 @@
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\appsettings.Development.json
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\appsettings.json
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\PosterMaker.Core.exe
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\PosterMaker.Core.deps.json
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\PosterMaker.Core.runtimeconfig.json
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\PosterMaker.Core.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\PosterMaker.Core.pdb
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Magick.NET-Q8-AnyCPU.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Magick.NET.Core.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Microsoft.OpenApi.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.AspNetCore.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.Extensions.Logging.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.Formatting.Compact.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.Settings.Configuration.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.Sinks.Console.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.Sinks.Debug.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.Sinks.File.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Serilog.Sinks.Seq.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\runtimes\linux-arm64\native\Magick.Native-Q8-arm64.dll.so
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\runtimes\linux-musl-x64\native\Magick.Native-Q8-x64.dll.so
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\runtimes\linux-x64\native\Magick.Native-Q8-x64.dll.so
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\runtimes\osx-arm64\native\Magick.Native-Q8-arm64.dll.dylib
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\runtimes\osx-x64\native\Magick.Native-Q8-x64.dll.dylib
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\runtimes\win-arm64\native\Magick.Native-Q8-arm64.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\runtimes\win-x64\native\Magick.Native-Q8-x64.dll
C:\Projects\ImageMagick\PosterMaker.Core\bin\Debug\net7.0\runtimes\win-x86\native\Magick.Native-Q8-x86.dll
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.csproj.AssemblyReference.cache
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.GeneratedMSBuildEditorConfig.editorconfig
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.AssemblyInfoInputs.cache
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.AssemblyInfo.cs
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.csproj.CoreCompileInputs.cache
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.MvcApplicationPartsAssemblyInfo.cs
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.MvcApplicationPartsAssemblyInfo.cache
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\staticwebassets\msbuild.PosterMaker.Core.Microsoft.AspNetCore.StaticWebAssets.props
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\staticwebassets\msbuild.build.PosterMaker.Core.props
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.PosterMaker.Core.props
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.PosterMaker.Core.props
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\staticwebassets.pack.json
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\staticwebassets.build.json
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\staticwebassets.development.json
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\scopedcss\bundle\PosterMaker.Core.styles.css
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.csproj.CopyComplete
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.dll
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\refint\PosterMaker.Core.dll
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.pdb
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.genruntimeconfig.cache
C:\Projects\ImageMagick\PosterMaker.Core\obj\Debug\net7.0\ref\PosterMaker.Core.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\appsettings.Development.json
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\appsettings.json
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\PosterMaker.Core.exe
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\PosterMaker.Core.deps.json
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\PosterMaker.Core.runtimeconfig.json
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\PosterMaker.Core.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\PosterMaker.Core.pdb
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Magick.NET-Q8-AnyCPU.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Magick.NET.Core.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Microsoft.OpenApi.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.AspNetCore.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.Extensions.Logging.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.Formatting.Compact.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.Settings.Configuration.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.Sinks.Console.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.Sinks.Debug.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.Sinks.File.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Serilog.Sinks.Seq.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\runtimes\linux-arm64\native\Magick.Native-Q8-arm64.dll.so
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\runtimes\linux-musl-x64\native\Magick.Native-Q8-x64.dll.so
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\runtimes\linux-x64\native\Magick.Native-Q8-x64.dll.so
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\runtimes\osx-arm64\native\Magick.Native-Q8-arm64.dll.dylib
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\runtimes\osx-x64\native\Magick.Native-Q8-x64.dll.dylib
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\runtimes\win-arm64\native\Magick.Native-Q8-arm64.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\runtimes\win-x64\native\Magick.Native-Q8-x64.dll
C:\Projects\PosterMaker\PosterMaker.Core\bin\Debug\net7.0\runtimes\win-x86\native\Magick.Native-Q8-x86.dll
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.csproj.AssemblyReference.cache
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.GeneratedMSBuildEditorConfig.editorconfig
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.AssemblyInfoInputs.cache
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.AssemblyInfo.cs
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.csproj.CoreCompileInputs.cache
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.MvcApplicationPartsAssemblyInfo.cs
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.MvcApplicationPartsAssemblyInfo.cache
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\staticwebassets.build.json
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\staticwebassets.development.json
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\staticwebassets\msbuild.PosterMaker.Core.Microsoft.AspNetCore.StaticWebAssets.props
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\staticwebassets\msbuild.build.PosterMaker.Core.props
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.PosterMaker.Core.props
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.PosterMaker.Core.props
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\staticwebassets.pack.json
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\scopedcss\bundle\PosterMaker.Core.styles.css
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.csproj.CopyComplete
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.dll
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\refint\PosterMaker.Core.dll
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.pdb
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\PosterMaker.Core.genruntimeconfig.cache
C:\Projects\PosterMaker\PosterMaker.Core\obj\Debug\net7.0\ref\PosterMaker.Core.dll
Binary file not shown.
@@ -0,0 +1,11 @@
{
"Version": 1,
"Hash": "1/ilGUxjwHdeBx3AY2ebJTX4dksAukNKb32w0ycjCe4=",
"Source": "PosterMaker.Core",
"BasePath": "_content/PosterMaker.Core",
"Mode": "Default",
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [],
"DiscoveryPatterns": [],
"Assets": []
}
@@ -0,0 +1,3 @@
<Project>
<Import Project="..\buildMultiTargeting\ImageMagick.props" />
</Project>
@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("PosterMaker.Core")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("PosterMaker.Core")]
[assembly: System.Reflection.AssemblyTitleAttribute("PosterMaker.Core")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
2a1610f8da560500750f3f06f5d0616aa414a7a7abdd43f93b025a6f2a2c72be
@@ -0,0 +1,19 @@
is_global = true
build_property.TargetFramework = net8.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = PosterMaker
build_property.RootNamespace = PosterMaker
build_property.ProjectDir = C:\Projects\PosterMaker\PosterMaker.Core\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 8.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Projects\PosterMaker\PosterMaker.Core
build_property._RazorSourceGeneratorDebug =
@@ -0,0 +1,17 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")]
[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
b7b67fad782a3c4cdbdc38c9bb4c8a65d81aac4631af9d1576ae816eea28797f
@@ -0,0 +1 @@
8f4daa013dc0bf04ced90a6a25d408504232911687a8da2a6703d2664895d8a5
Binary file not shown.
@@ -0,0 +1,11 @@
{
"Version": 1,
"Hash": "1/ilGUxjwHdeBx3AY2ebJTX4dksAukNKb32w0ycjCe4=",
"Source": "PosterMaker.Core",
"BasePath": "_content/PosterMaker.Core",
"Mode": "Default",
"ManifestType": "Build",
"ReferencedProjectsConfiguration": [],
"DiscoveryPatterns": [],
"Assets": []
}
@@ -0,0 +1,3 @@
<Project>
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="..\build\PosterMaker.Core.props" />
</Project>
@@ -0,0 +1,3 @@
<Project>
<Import Project="..\buildMultiTargeting\PosterMaker.Core.props" />
</Project>
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\JanisKa\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.6.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\JanisKa\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.props')" />
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\6.5.0\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\6.5.0\build\Swashbuckle.AspNetCore.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\JanisKa\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5</PkgMicrosoft_Extensions_ApiDescription_Server>
</PropertyGroup>
</Project>

Some files were not shown because too many files have changed in this diff Show More